* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f4f4f4;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: #c9a96e;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
    font-style: italic;
    letter-spacing: 0.1em;
}
.beige_color{
    color: #c9a96e; /* elegant soft gold */
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: #c9a96e;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a96e;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Sections */
section {
    padding: 80px 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}
.section-inner{
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e6d3b3; /* elegant soft gold */
    position: relative;
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
    letter-spacing: 0.6rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #bfa76a; /* muted gold underline */
    margin: 1rem auto;
}

/* Home Section */
#home {
    background: linear-gradient(rgba(30,34,45,0.7), rgba(30,34,45,0.7)), url('images/edith-hero.webp'); /* Edith Adetu hero image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll; /* sau fixed, dar pentru parallax JS e mai sigur scroll */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    max-width: 100%;
    transition: background-position 0.5s cubic-bezier(0.4,0,0.2,1); /* smooth parallax */
}

@media (max-width: 1024px) {
    #home {
        background-attachment: scroll; /* Disable parallax on mobile/tablet for compatibility */
        transition: none;
    }
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
}

.hero-content p {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-style: italic;
}

@media (max-width: 600px) {
    .hero-content p {
        font-size: 1.5rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c9a96e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #a8875a;
}

/* Bio Section */
#bio {
    background: linear-gradient(135deg, #232b33 60%, #2d3a4a 100%); /* deep blue-gray gradient */
    color: #f4f4f4;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.bio-image {
    text-align: center;
}

.bio-image img {
    width: 100%;
    max-width: 400px; /* increased size */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bio-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 380px) {
    .bio-text {
        font-size: 1rem;
    }
}

/* Video Section */
#videos {
    background: linear-gradient(135deg, #232b33 60%, #1a2229 100%); /* dark navy gradient */
    color: #f4f4f4;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background: #232b33;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-item iframe {
    width: 100%;
    height: 200px;
}

.video-info {
    padding: 1rem;
}

.video-info p {
    color: #e0e0e0;
}
.video-info h3 {
    color: #e6d3b3;
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
    letter-spacing: 1.9px;
    font-size: 1.4em;
}

/* Gallery Section */
#gallery {
    background: linear-gradient(135deg, #232b33 60%, #2a2e3a 100%); /* blue-black gradient */
    color: #f4f4f4;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
}
.gallery-carousel::-webkit-scrollbar {
    height: 10px;
    background: #13202c;
}
.gallery-carousel::-webkit-scrollbar-thumb {
    background: #5a6d89;
    border-radius: 5px;
}
.gallery-item {
    min-width: 30%;
    max-width: 32%;
    flex: 0 0 32%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
@media (max-width: 900px) {
    .gallery-item {
        min-width: 48%;
        max-width: 48%;
        flex: 0 0 48%;
    }
}
@media (max-width: 600px) {
    .gallery-item {
        min-width: 95%;
        max-width: 95%;
        flex: 0 0 95%;
    }
}
.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 900px) {
    .gallery-item img {
        height: 300px;
    }
}
@media (max-width: 600px) {
    .gallery-item img {
        height: 200px;
    }
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,34,45,0.7);
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.carousel-arrow:hover {
    background: #c9a96e;
    color: #232b33;
}
.carousel-arrow.left { left: 0.5rem; }
.carousel-arrow.right { right: 0.5rem; }
.gallery-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.gallery-lightbox .carousel-arrow {
    position: absolute;
    top: 50%;
    background: rgba(30,34,45,0.8);
    color: #fff;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
}
.gallery-lightbox .carousel-arrow.left { left: 2vw; }
.gallery-lightbox .carousel-arrow.right { right: 2vw; }
.gallery-lightbox .close-lightbox {
    position: absolute;
    top: 2vh;
    right: 3vw;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

/* CV Section */
#cv {
    background: linear-gradient(135deg, #232b33 60%, #2c2e36 100%); /* slate gradient */
    color: #f4f4f4;
}

.cv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cv-section {
    background: linear-gradient(135deg, #2e3a4d 60%, #3a4660 100%); /* mai deschis, elegant */
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 1.5px solid rgba(230, 211, 179, 0.35); /* gold, subtil, elegant */
    backdrop-filter: blur(2px);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.cv-section:hover {
    box-shadow: 0 12px 40px rgba(191,167,106,0.18);
    border-color: #e6d3b3;
}

.cv-section h3, .cv-item h4, .cv-item p, .cv-item .date {
    color: #e0e0e0;
}

/* Elegant bullet for repertoire lists */
#cv ul. , .future-roles ul {
    list-style: none;
    padding-left: 0;
}

#cv ul li, .future-roles ul li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.5em;
}

#cv ul li::before, .future-roles ul li::before {
    content: "\2022";
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    color: #c9a96e; /* elegant gold */
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1;
}

/* Elimină orice stil de bullet implicit */
#cv ul,
#cv ul li,
.future-roles ul,
.future-roles ul li {
    list-style-type: none;
    background: none;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #232b33 60%, #25304a 100%); /* elegant blue gradient */
    color: #f4f4f4;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #1a2229;
    border-radius: 10px;
    color: #e0e0e0;
}

.contact-item i {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #c9a96e;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #a8875a;
}

.operabase-section {
    margin: 2rem 0;
}

.operabase-section a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.operabase-section img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background: #fff;
    padding: 2px;
}

.operabase-section span {
    color: #e6d3b3;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cv-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 1rem;
    }

    .section-inner,
    footer {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    nav {
        padding: 0 1rem;
    }
}

.gallery-caption {
    margin-top: 0.5em;
    color: #e6d3b3;
    font-size: 1.4em;
    text-align: center;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    min-height: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Dancing Script', 'Monotype Corsiva', 'Palatino Linotype', 'Book Antiqua', Palatino, cursive, serif;
    letter-spacing: 1.9px;
    cursor: default;
}

.gallery-lightbox-caption {
    color: #e6d3b3;
    font-size: 1.15em;
    text-align: center;
    margin: 1.2em 0 0.5em 0;
    max-width: 90vw;
    line-height: 1.4;
    min-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}