/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bronze-background: #8B4513;
    --bronze-light: #A0522D;
    --bronze-dark: #654321;
    --text-white: #FFFFFF;
    --text-black: #000000;
    --accent-color: #E91E63;
    --dark-purple: #1A0E29;
    --medium-purple: #4A148C;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--bronze-background) 0%, var(--bronze-light) 50%, var(--bronze-dark) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Efeito de brilho no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: shimmer 4s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% {
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    }
    100% {
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--text-white);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

.section {
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 3rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bg-dark {
    background: rgba(0,0,0,0.1);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--bronze-background) 0%, var(--bronze-light) 100%);
}

.bg-image {
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('background-pattern.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.btn-glow {
    background: var(--accent-color);
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(0,0,0,0.4), 0 0 40px rgba(0,0,0,0.2);
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0,0,0,0.4), 0 0 40px rgba(0,0,0,0.2);
    }
    to {
        box-shadow: 0 0 30px rgba(0,0,0,0.6), 0 0 60px rgba(0,0,0,0.4);
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: transparent;
}

.btn-primary {
    background: var(--accent-color);
}

.btn-secondary {
    background: var(--text-black);
    color: var(--text-white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content p {
    color: rgba(0,0,0,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

#header.sticky {
    padding: 0.5rem 0;
    background: rgba(0,0,0,0.9);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

#nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}

#nav a:hover::before {
    width: 100%;
}

#nav a:hover {
    color: var(--text-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-black);
}

/* ===== CAROUSEL STYLES ===== */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 2rem;
    position: relative;
    color: var(--text-white);
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(0,0,0,0.5);
}

.about-text h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===== GALLERY SECTION ===== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.3);
    aspect-ratio: 3/4;
}

.gallery-item:hover,
.gallery-item:active {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img,
.gallery-item:active .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:active .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.tag.vip,
.tag.exclusivo,
.tag.premium {
    background: var(--accent-color);
    color: var(--text-white);
}

/* ===== GALLERY MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 1000;
    background: #000;
}

.gallery-modal .modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
}

.gallery-modal .gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
    padding: 1rem;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-modal .gallery-overlay h3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.5rem;
    flex-grow: 1;
}

.gallery-modal .gallery-overlay .tag {
    position: static;
    margin: 0;
}

.gallery-modal:hover .gallery-overlay,
.gallery-modal .gallery-overlay.visible {
    opacity: 1;
}

.close-modal,
.close-video-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--text-white);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close-modal:hover,
.close-video-modal:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
    z-index: 1001;
}

.modal-prev,
.modal-next {
    background: rgba(0,0,0,0.8);
    border: none;
    color: var(--text-white);
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

/* ===== VIDEOS SECTION ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.video-card {
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.play-button i {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-left: 4px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.video-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.video-footer .btn-outline {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.video-footer .views {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.video-footer .views i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* ===== VIDEO MODAL ===== */
.modal video {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== MEMBERSHIP SECTION ===== */
.pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.price-badge {
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.price-card h3 {
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-black);
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features li {
    font-size: 1.1rem;
    color: var(--text-black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.price-card.highlighted {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.payment-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===== SCHEDULING SECTION ===== */
.schedule-content {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,0.1);
}

.schedule-content h2 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
}

.schedule-content p {
    color: rgba(0,0,0,0.8);
    margin-bottom: 1.5rem;
}

.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-black);
    color: var(--text-white);
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-info li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.footer-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-top: 2rem;
}

.copyright p {
    margin-bottom: 0.5rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 80%;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .price-card {
        padding: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .price span {
        font-size: 1.2rem;
    }

    .schedule-content {
        padding: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    #nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.95);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.3);
    }

    #nav.active {
        display: flex;
    }

    #nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    #nav a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .video-thumbnail {
        height: 180px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.8rem;
    }

    .features li {
        font-size: 1rem;
    }

    .schedule-content {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    /* Gallery Modal Adjustments */
    .gallery-modal .modal-content {
        max-height: 70vh;
    }

    .modal-nav {
        width: auto;
        left: 5px;
        right: 5px;
        padding: 0;
    }

    .modal-prev,
    .modal-next {
        font-size: 16px;
        padding: 8px 12px;
    }

    .close-modal {
        top: 5px;
        right: 10px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-thumbnail {
        height: 200px;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    .video-info p {
        font-size: 0.8rem;
    }

    .price-card h3 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

script.js:
document.addEventListener("DOMContentLoaded", function() {
    // Age Verification Modal
    const ageVerifyModal = document.getElementById("ageVerifyModal");
    const enterBtn = document.getElementById("enterBtn");
    const exitBtn = document.getElementById("exitBtn");

    if (!sessionStorage.getItem("ageVerified")) {
        ageVerifyModal.style.display = "flex";
    }

    enterBtn.addEventListener("click", function() {
        sessionStorage.setItem("ageVerified", "true");
        ageVerifyModal.style.display = "none";
    });

    exitBtn.addEventListener("click", function() {
        window.location.href = "https://www.google.com"; // Redirect to a safe page
    });

    // Header Sticky Effect
    const header = document.getElementById("header");
    window.addEventListener("scroll", function() {
        if (window.scrollY > 50) {
            header.classList.add("sticky");
        } else {
            header.classList.remove("sticky");
        }
    });

    // Mobile Menu Toggle
    const menuToggle = document.getElementById("menuToggle");
    const nav = document.getElementById("nav");

    menuToggle.addEventListener("click", function() {
        nav.classList.toggle("active");
        menuToggle.classList.toggle("active");
    });

    // Close mobile menu when a link is clicked
    nav.querySelectorAll("a").forEach(link => {
        link.addEventListener("click", () => {
            nav.classList.remove("active");
            menuToggle.classList.remove("active");
        });
    });

    // Scroll Animation for Sections (with fallback for mobile)
    const sections = document.querySelectorAll(".section");

    const observerOptions = {
        root: null,
        rootMargin: "0px",
        threshold: 0.1
    };

    const observer = new IntersectionObserver((entries, observer) => {
        entries.forEach(entry => {
            if (entry.isIntersecting || window.innerWidth <= 768) {
                entry.target.classList.add("visible");
                observer.unobserve(entry.target);
            }
        });
    }, observerOptions);

    sections.forEach(section => {
        observer.observe(section);
        // Fallback: Show sections immediately on mobile
        if (window.innerWidth <= 768) {
            section.classList.add("visible");
        }
    });

    // Stats Counter Animation
    const stats = document.querySelectorAll(".stat-number");

    stats.forEach(stat => {
        const updateCount = () => {
            const target = +stat.getAttribute("data-count");
            const count = +stat.innerText;
            const speed = 200; // The higher the slower
            const inc = target / 20;

            if (count < target) {
                stat.innerText = Math.ceil(count + inc);
                setTimeout(updateCount, 50);
            } else {
                stat.innerText = target;
            }
        };

        // Trigger animation when stat section is visible
        const statObserver = new IntersectionObserver((entries, observer) => {
            entries.forEach(entry => {
                if (entry.isIntersecting || window.innerWidth <= 768) {
                    updateCount();
                    observer.unobserve(entry.target);
                }
            });
        }, { threshold: 0.5 });

        statObserver.observe(stat);
        if (window.innerWidth <= 768) {
            updateCount();
        }
    });

    // Gallery Modal
    const galleryModal = document.getElementById("galleryModal");
    const modalImage = document.getElementById("modalImage");
    const closeModal = document.querySelector(".close-modal");
    const galleryItems = document.querySelectorAll(".gallery-item");
    const modalPrev = document.querySelector(".modal-prev");
    const modalNext = document.querySelector(".modal-next");
    let currentImageIndex = 0;

    function openGalleryModal(index) {
        currentImageIndex = index;
        const galleryItem = galleryItems[currentImageIndex];
        modalImage.src = galleryItem.querySelector(".gallery-img").src;

        galleryModal.style.display = "block";
        modalImage.style.opacity = "0";

        setTimeout(() => {
            modalImage.style.opacity = "1";
        }, 50);
    }

    function showNextImage() {
        currentImageIndex = (currentImageIndex + 1) % galleryItems.length;
        openGalleryModal(currentImageIndex);
    }

    function showPrevImage() {
        currentImageIndex = (currentImageIndex - 1 + galleryItems.length) % galleryItems.length;
        openGalleryModal(currentImageIndex);
    }

    galleryItems.forEach((item, index) => {
        item.addEventListener("click", () => {
            openGalleryModal(index);
        });
    });

    closeModal.addEventListener("click", () => {
        galleryModal.style.display = "none";
    });

    modalPrev.addEventListener("click", showPrevImage);
    modalNext.addEventListener("click", showNextImage);

    // Close modal on outside click
    window.addEventListener("click", function(event) {
        if (event.target === galleryModal) {
            galleryModal.style.display = "none";
        }
    });

    // Video Modal
    const videoModal = document.getElementById("videoModal");
    const videoPlayer = document.getElementById("videoPlayer");
    const closeVideoModal = document.querySelector(".close-video-modal");

    window.openVideoModal = function(videoSrc) {
        videoPlayer.querySelector("source").src = videoSrc;
        videoPlayer.load();
        videoModal.style.display = "flex";
        videoPlayer.play();
    };

    closeVideoModal.addEventListener("click", function() {
        videoPlayer.pause();
        videoModal.style.display = "none";
        videoPlayer.querySelector("source").src = "";
    });

    // Close video modal on outside click
    window.addEventListener("click", function(event) {
        if (event.target === videoModal) {
            videoPlayer.pause();
            videoModal.style.display = "none";
        }
    });

    // Filter Tabs for Gallery
    const filterButtons = document.querySelectorAll(".filter-btn");
    const gallery = document.querySelector(".gallery");

    function applyFilter(filter) {
        gallery.querySelectorAll(".gallery-item").forEach(item => {
            if (filter === "all" || item.getAttribute("data-category") === filter) {
                item.style.display = "block";
            } else {
                item.style.display = "none";
            }
        });
    }

    filterButtons.forEach(button => {
        button.addEventListener("click", function() {
            filterButtons.forEach(btn => btn.classList.remove("active"));
            this.classList.add("active");
            const filter = this.getAttribute("data-filter");
            applyFilter(filter);
        });
    });

    // Initialize gallery with "all" filter
    const allFilterButton = document.querySelector('.filter-btn[data-filter="all"]');
    if (allFilterButton) {
        allFilterButton.classList.add("active");
        applyFilter("all");
    }

    // Carousel Functionality
    const carouselItems = document.querySelectorAll(".carousel-item");
    const carouselDots = document.querySelectorAll(".carousel-dots .dot");
    let currentSlide = 0;
    let slideInterval;

    function showSlide(index) {
        carouselItems.forEach((item, i) => {
            item.classList.remove("active");
            carouselDots[i].classList.remove("active");
        });
        carouselItems[index].classList.add("active");
        carouselDots[index].classList.add("active");
        currentSlide = index;
    }

    function nextSlide() {
        showSlide((currentSlide + 1) % carouselItems.length);
    }

    function startSlideShow() {
        slideInterval = setInterval(nextSlide, 5000); // Change slide every 5 seconds
    }

    function resetSlideShow() {
        clearInterval(slideInterval);
        startSlideShow();
    }

    carouselDots.forEach(dot => {
        dot.addEventListener("click", function() {
            const slideIndex = parseInt(this.getAttribute("data-slide"));
            showSlide(slideIndex);
            resetSlideShow();
        });
    });

    startSlideShow();
});
