/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Color Palette - Dark & Luxurious */
    --bg-color: #0f1014;
    --surface-color: #1a1c23;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-color: #dfc699; /* Rose Gold / Champagne */
    --accent-hover: #c5a059;
    --border-color: rgba(223, 198, 153, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --glass-bg: rgba(26, 28, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    scroll-margin-top: 85px;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(223, 198, 153, 0.2);
}

.btn-primary-small {
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.8rem;
}

.btn-primary-small:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.link-btn {
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-btn i {
    transition: transform 0.3s ease;
}

.link-btn:hover i {
    transform: translateX(5px);
}

.accent-text { color: var(--accent-color); }
.accent-link { color: var(--accent-color); border-bottom: 1px solid transparent; }
.accent-link:hover { border-bottom-color: var(--accent-color); }

/* ==========================================================================
   Glassmorphism Utilities
   ========================================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
    background: rgba(15, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-style: italic;
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(223, 198, 153, 0.08);
    border: 1px solid rgba(223, 198, 153, 0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge .stars {
    color: #ffb800;
    font-size: 0.82rem;
    display: flex;
    gap: 2px;
}

.hero-badge strong {
    color: var(--accent-color);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25d366;
    color: #ffffff !important;
    border: 1px solid #25d366;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-hero i {
    font-size: 1.25rem;
}

.cta-microcopy {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-microcopy i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    max-width: 360px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    justify-content: space-between;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
    height: 8px;
}
.services-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.services-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.service-card {
    flex: 1 1 320px;
    max-width: 360px;
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-color);
}

.card-image {
    aspect-ratio: 3/4;
    width: 100%;
    overflow: hidden;
    background: #0d0d11;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.services-dots {
    display: none;
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-category {
    padding: 2.5rem;
    border-top: 3px solid var(--accent-color);
}

.category-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px dashed rgba(223, 198, 153, 0.3);
    padding-bottom: 1rem;
}

.category-title span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    display: block;
    margin-top: 0.5rem;
}

.menu-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.item-name {
    font-weight: 300;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    opacity: 0.7;
}

.item-price {
    color: var(--accent-color);
    font-weight: 500;
}

/* ==========================================================================
   Academy Section
   ========================================================================== */
.academy {
    background-color: var(--surface-color);
}

.academy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.academy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.academy-text h3 {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.academy-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}

.features-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.academy-image {
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.academy-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* ==========================================================================
   Footer & Contact Section
   ========================================================================== */
.footer {
    background-color: #08080a;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--surface-color);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.footer-contact h3, .footer-form h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-booking {
    padding: 2.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
    border: 1px solid var(--border-color);
}

.footer-booking h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-style: italic;
    margin: 0;
}

.footer-booking p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #25d366;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Map Section in Footer */
.footer-map-wrapper {
    margin-bottom: 3.5rem;
    padding: 1.8rem;
    border-radius: 12px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.map-header h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}

.map-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.map-responsive {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.map-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .academy-container, .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .services-grid {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        max-height: 400px;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
    }
    
    .nav-links .btn-primary-small {
        margin: 1rem;
        display: inline-block;
        width: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta-wrapper {
        align-items: center;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 260px;
        margin: 2rem auto 0;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }
    
    .section {
        padding: 4.5rem 0 3rem;
        scroll-margin-top: 75px;
    }

    .section-title {
        margin-bottom: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }

    .card-image {
        aspect-ratio: 3/4;
        width: 100%;
        height: auto;
    }

    .card-content {
        padding: 1.5rem;
    }

    /* Mobile Carousel Pagination Dots */
    .services-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .service-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.5);
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .service-dot.active {
        width: 24px;
        border-radius: 12px;
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

    .academy-image {
        max-width: 320px;
        padding: 0.5rem;
    }

    .academy-image img {
        width: 100%;
        height: auto;
    }
}
