@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;500;700&display=swap');

:root {
    --primary: #111111;
    --secondary: #f5f5f5;
    --accent: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: var(--primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.content-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.nav-dot:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dot:not(.active):hover:after {
    opacity: 1;
    transform: scale(1);
}

.dot-label {
    position: absolute;
    right: 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
}

.nav-dot:hover .dot-label {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .nav-dots {
        right: 1rem;
        gap: 1.2rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%) brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.gallery-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 1;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 2;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    filter: none !important;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.dancer-card {
    position: relative;
    overflow: hidden;
    background: #000;
}

.dancer-card img {
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    mix-blend-mode: luminosity;
    opacity: 0.8;
}

.dancer-card:hover img {
    filter: grayscale(30%) brightness(1);
    transform: scale(1.05);
    opacity: 0.4;
}

.dancer-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .dancer-info {
        padding: 10px;
    }
    .dancer-info h4 {
        font-size: 1rem;
    }
    .dancer-info p {
        font-size: 0.7rem;
    }
    .dancer-quote {
        font-size: 0.6rem;
        max-width: 90%;
    }
}

.dancer-card:hover .dancer-info {
    opacity: 1;
}

.dancer-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 1rem;
    max-width: 80%;
    opacity: 0.8;
}

.hero-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-stroke {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
}

#mobile-menu-button {
    z-index: 70;
    /* Valor maior que o menu */
}

@media (max-width: 768px) {
    .nav-dots {
        right: 1rem;
    }

    #mobile-menu {
        z-index: 60;
        /* Garante que fique acima do header (z-index: 50) */
    }

    #mobile-menu-button {
        z-index: 70;
        /* Garante que o botão fique acima do menu */
        position: relative;
        /* Necessário para z-index funcionar */
    }


    .content-section {
        padding: 100px 1rem 60px;
    }

    #mobile-menu nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    #close-menu-button {
        transition: transform 0.2s ease;
    }

    #close-menu-button:hover {
        transform: rotate(90deg);
    }
}

/* Animation classes */
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}
.avatar-img {
    border-radius: 50%;
    transition: all 0.5s ease;
    filter: grayscale(30%) contrast(110%) brightness(0.9);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 8px solid white;
    max-width: 100%;
    height: auto;
}
.avatar-container:hover .avatar-img {
    filter: grayscale(0%) contrast(120%) brightness(1);
}

.social-link {
    text-decoration: none;
}

.social-link:hover {
    text-decoration: none;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}