/* Podstawowe style i czcionka */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
    /* Ustawiamy body jako elastyczny kontener o wysokości całego ekranu */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Główny kontener strony */
.portfolio-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    /* Nakazujemy temu kontenerowi, by rozciągnął się i zajął całe wolne miejsce */
    flex-grow: 1; 
}

/* Stylizacja lewej kolumny (nawigacji) */
.sidebar {
    width: 250px;
    padding: 40px;
    border-right: 1px solid #ffffff;
    flex-shrink: 0;
}

.artist-name {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
}

.artist-name a {
    text-decoration: none;
    color: inherit;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li.separator {
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.2s;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    color: #000;
    font-weight: 500;
}

/* Stylizacja prawej kolumny (zdjęcia/treści) */
.photo-display {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Zdjęcia wyrównane do góry, by pasowały do menu */
    align-items: flex-start;
    padding: 40px;
    overflow: hidden;
}

/* Style dla Swipera */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Pozostałe style */
.hidden { display: none; }
.about-content { max-width: 700px; line-height: 1.7; }
.about-content h2 { font-size: 28px; margin-bottom: 20px; }

/* Portret na stronie About
.portrait-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-top: 5vh;
    margin-bottom: 20px;
} */

.about-text {;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 90px;
    max-width: 800px;
}

/* Style dla stopki */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #ffffff;
    /* Zapobiega kurczeniu się stopki */
    flex-shrink: 0; 
}


/* ================================================= */
/* === STYLE DLA URZĄDZEŃ MOBILNYCH  === */
/* ================================================= */

@media (max-width: 800px) {
    .portfolio-container {
        padding: 0;
        flex-direction: column;
    }
    .sidebar {
        width: auto;
        border-right: none;
        border-bottom: 1px solid #ffffff;
        padding: 20px;
    }
    .sidebar ul {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .sidebar ul li {
        margin-bottom: 0;
    }
    .photo-display {
        padding: 20px;
        /* Na mobilkach przywracamy centrowanie */
        align-items: center; 
    }
    .swiper-slide img {
        max-height: 65vh;
    }
    footer {
        padding: 20px;
    }
}