@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary-red: #D20A0A;
    --dark-red: #8a0000;
    --bg-black: #0a0a0a;
    --bg-dark-gray: #111111;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #999);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-red {
    color: var(--primary-red);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(210, 10, 10, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 10, 10, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Common */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Sticky Promo Banner */
.promo-banner {
    background: var(--primary-red);
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Navbar */
nav {
    position: absolute;
    top: 40px;
    /* Below banner initially */
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
}

nav.scrolled {
    position: fixed;
    top: 35px;
    /* Offset for the banner so it doesn't cover it */
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 60px;
    scroll-margin-top: 100px;
    /* For anchor links */
}

html {
    scroll-padding-top: 100px;
}

/* Nav Legibility Enhancement */
nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s;
}

nav.scrolled::after {
    opacity: 0;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Mobile Navigation & Hero Fixes */
@media (max-width: 900px) {

    /* Navbar Adjustment - Sticky for smooth flow */
    nav {
        background: rgba(10, 10, 10, 0.95);
        padding: 15px 0;
        position: -webkit-sticky;
        /* Safari */
        position: sticky;
        top: 0;
        z-index: 1001;
        margin-top: 0;
    }

    /* Override JS scrolled behavior for mobile */
    nav.scrolled {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        padding: 15px 0;
    }

    .promo-banner {
        position: relative;
        /* Scrolls away naturally */
        z-index: 1002;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1003;
    }

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 3px;
        transition: var(--transition);
    }

    /* Active State for Hamburger */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Nav Links Dropdown */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        /* Hidden by default */
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        /* Slide down */
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .btn-join-nav {
        display: none;
        /* Hide header Join button on mobile, use Hero one */
    }

    /* Hero Section Fixes */
    .hero {
        padding-top: 60px;
        /* Reset, nav is now sticky/in-flow */
        height: auto;
        min-height: 100vh;
        background-position: center;
        align-items: center;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Desktop Toggle Hide */
@media (min-width: 901px) {
    .menu-toggle {
        display: none;
    }
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    height: 500px;
    /* Fixed height for consistency */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Hours Section */
.hours {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark-gray) 50%, var(--bg-black) 100%);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.hours-card {
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hours-card h3 i {
    color: var(--primary-red);
}

.hours-table {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row span:first-child {
    color: var(--text-gray);
}

.hours-row span:last-child {
    font-weight: 600;
}

.women-accent {
    border-top: 3px solid var(--primary-red);
}

.men-accent {
    border-top: 3px solid #333;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
}

/* Packages Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Gold Package Special Styles */
.pricing-card.gold {
    border-top-color: #FFD700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0));
}

.pricing-card.standard {
    border-top-color: var(--primary-red);
}

.pricing-card.silver {
    border-top-color: #C0C0C0;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Package Image Styles */
.card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.package-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin: 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    margin-bottom: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--primary-red);
}

/* Contact Section */
.contact {
    background: linear-gradient(to top, #000, #111);
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    /* Keep height */
    border-radius: 12px;
    overflow: hidden;
    /* Removed filter for clearer view */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    /* For button overlay */
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.google-map-btn {
    position: absolute;
    bottom: 25px;
    left: 10px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    /* Standard Maps radius */
    font-family: 'Roboto', Arial, sans-serif;
    /* Google Maps font */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.google-map-btn:hover {
    background: #f1f1f1;
    color: #000;
}

.google-map-btn i {
    color: #F4B400;
    /* Google Maps Yellow Pegman Color */
    font-size: 18px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background: black;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-red);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .contact-container,
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }
}