/**
 * --------------------------------------------------------------------
 * Author   : Manoj Mathangadeera / Aivotandra
 * Website  : https://aivotandra.com
 * --------------------------------------------------------------------
 * Company  : Adeon Bridge Technologies LLC
 * Website  : https://adeon.ae
 * --------------------------------------------------------------------
 * Contact  : manoj@aivotandra.com
 * --------------------------------------------------------------------
 * Version  : 1.0
 * Updated  : May 2026
 * Project  : 7Dragon Bar & Lounge
 * --------------------------------------------------------------------
 */

/* === SECTION 1 — RESET & BASE === */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding-bottom: 65px;
}

/* Scroll offset for sticky header */
#about,
#djs,
#events,
#menu,
#gallery,
#social,
#contact {
    scroll-margin-top: 60px;
}

@media (min-width: 768px) {
    #about,
    #djs,
    #events,
    #menu,
    #gallery,
    #social,
    #contact {
        scroll-margin-top: 120px;
    }
}

/* === SECTION 2 — HEADER === */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    transition: var(--transition-normal);
    z-index: 1000;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: var(--space-sm);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-img--hidden {
    display: none;
}

.logo-fallback-text {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
}

.logo-fallback-text--hidden {
    display: none;
}

.site-header.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.site-header.is-visible {
    opacity: 1;
    pointer-events: all;
    transition: opacity var(--transition-normal);
}

/* === SECTION 3 — HAMBURGER === */

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--brand-primary);
    transition: var(--transition-normal);
    transform-origin: center;
}

.hamburger-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* === SECTION 4 — MOBILE NAV === */

.main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transform: translateY(-110%);
    transition: var(--transition-normal);
    z-index: 999;
    visibility: hidden;
}

.main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-md);
    color: var(--text-nav);
    text-decoration: none;
    padding: var(--space-sm) 0;
    display: block;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-nav-active);
    border-bottom-color: var(--brand-primary);
}

/* === SECTION 5 — MOBILE CTA BUTTONS === */

.nav-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: var(--space-sm) 0;
}

.nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-cta-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.nav-cta-whatsapp:hover {
    background-color: #1ebe57;
}

.nav-cta-book {
    background-color: var(--btn-bg);
    color: var(--btn-text);
}

.nav-cta-book:hover {
    background-color: var(--btn-hover);
}

/* === SECTION 6 — DESKTOP HEADER === */

@media (min-width: 768px) {

    .site-header {
        height: 120px;
        flex-direction: column;
        justify-content: center;
        padding: var(--space-md) var(--space-xl);
        gap: var(--space-sm);
    }

    .header-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 80px;
    }

    .hamburger-btn {
        display: none;
    }

    .main-nav {
        position: static;
        top: auto;
        transform: none;
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        flex-direction: row;
        justify-content: center;
        visibility: visible;
    }

    .nav-links {
        flex-direction: row;
        gap: var(--space-xl);
    }

    .nav-mobile-cta {
        display: none;
    }

}

/* === SECTION 7 — FOOTER === */

.site-footer {
    background-color: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-social-link {
    color: var(--text-secondary);
    font-size: var(--text-xl);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-copyright p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: var(--container-width);
}

.footer-credits-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-credit-link {
    color: var(--brand-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-credit-link:hover {
    color: var(--btn-hover);
}

.footer-credits-divider {
    color: var(--border-color);
}

.back-to-top-btn {
    position: absolute;
    right: 0;
    background-color: var(--brand-primary);
    color: var(--btn-text);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: var(--text-base);
}

.back-to-top-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

/* === SECTION 8 — CTA STICKY BAR === */

.cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-sticky-bar);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
}

.cta-bar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

.cta-bar-item {
    flex: 1;
}

.cta-bar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 0;
    text-decoration: none;
    color: var(--text-secondary);
    gap: 4px;
    transition: var(--transition-fast);
    width: 100%;
    height: 100%;
}

.cta-bar-link:hover {
    color: var(--brand-primary);
}

.cta-bar-icon {
    font-size: var(--text-lg);
    line-height: 1;
}

.cta-bar-label {
    font-size: var(--text-xs);
    font-family: var(--font-body);
    font-weight: var(--font-weight-medium);
    line-height: 1;
}

.cta-bar-item:last-child .cta-bar-link {
    color: #25D366;
}

.cta-bar-item:last-child .cta-bar-link:hover {
    color: #1ebe57;
}

@media (min-width: 768px) {

    .cta-bar-list {
        max-width: var(--container-width);
        margin: 0 auto;
    }

}

/* === SECTION 9 — HERO === */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 27s infinite;
}

.hero-slide--1 {
    background-image: url('../../assets/img/hero-1.jpg');
    animation-delay: 0s;
}

.hero-slide--2 {
    background-image: url('../../assets/img/hero-2.jpg');
    animation-delay: 9s;
}

.hero-slide--3 {
    background-image: url('../../assets/img/hero-3.jpg');
    animation-delay: 18s;
}

@keyframes heroFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    33%  { opacity: 1; }
    38%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--bg-overlay);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-c1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: var(--container-width);
}

.hero-c2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
}

.hero-c3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    margin-top: 150px;
    white-space: nowrap;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(var(--shadow-lg));
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-on-dark);
    margin: 0;
    line-height: var(--line-height-tight);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
}

.hero-h2 {
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: var(--font-weight-normal);
    color: var(--brand-primary);
    margin: 0;
    line-height: var(--line-height-normal);
    text-align: center;
    width: 100%;
}

.hero-scroll-text {
    font-size: var(--text-xs);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-icon {
    font-size: var(--text-lg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

@media (min-width: 768px) {

    .hero-logo-img {
        height: 180px;
    }

    .hero-h1 {
        font-size: var(--text-hero);
    }

    .hero-h2 {
        font-size: var(--text-xl);
    }

}

@media (min-width: 1200px) {

    .hero-logo-img {
        height: 220px;
    }

    .hero-content {
        padding: var(--space-2xl) var(--space-xl);
    }

}

/* === SECTION 10 — ABOUT === */

.about-section {
    background-color: var(--bg-primary);
    padding: var(--space-2xl) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.about-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-lead {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--text-on-dark);
    margin: 0;
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-medium);
}

.about-para {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--line-height-loose);
}

.about-image {
    width: 100%;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-color);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
    padding: var(--space-md);
}

.about-stat i {
    font-size: var(--text-xl);
    color: var(--brand-primary);
}

.about-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    color: var(--text-on-dark);
    font-weight: var(--font-weight-bold);
}

.about-stat-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

@media (min-width: 768px) {

    .about-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .about-heading {
        font-size: var(--text-hero);
    }

    .about-body {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .about-img {
        height: 450px;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* === SECTION 11 — DJ SECTION === */

.dj-section {
    background-color: var(--bg-secondary);
    padding: var(--space-2xl) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    width: 100%;
}

.dj-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.dj-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dj-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.dj-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.dj-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.dj-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.dj-photo-wrap {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.dj-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.dj-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-heading);
    margin: 0;
}

.dj-role {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--brand-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dj-bio {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--line-height-loose);
}

.dj-social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-nav);
    text-decoration: none;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dj-social:hover {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

@media (min-width: 768px) {

    .dj-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dj-heading {
        font-size: var(--text-hero);
    }

}

/* === SECTION 12 — EVENTS === */

.events-section {
    background-color: var(--bg-primary);
    padding: var(--space-2xl) var(--space-md);
    width: 100%;
}

.events-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.events-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.events-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.events-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.events-sub {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Happy Hour Banner */
.events-happy-hour {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.events-happy-hour-inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.events-happy-icon {
    font-size: var(--text-2xl);
    color: var(--btn-text);
    flex-shrink: 0;
}

.events-happy-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.events-happy-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--btn-text);
}

.events-happy-offer {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--btn-text);
}

.events-happy-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--btn-text);
    opacity: 0.85;
}

/* Featured Row */
.events-featured {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

/* Event Cards */
.events-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.events-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.events-card--today {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.events-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background-color: var(--brand-primary);
    color: var(--btn-text);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 1;
}

.events-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.events-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.events-card-day {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-bold);
}

.events-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-on-dark);
    margin: 0;
    line-height: var(--line-height-tight);
}

.events-card-offer {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.events-card-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: var(--line-height-loose);
}

.events-special-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--brand-primary);
    color: var(--btn-text);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.events-special-btn:hover {
    background-color: var(--btn-hover);
}

/* Carousel */
.events-carousel-wrap {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.events-carousel {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
}

.events-carousel::-webkit-scrollbar {
    display: none;
}

.events-carousel-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
}

.events-carousel-item:hover {
    border-color: var(--brand-primary);
}

.events-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--brand-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: var(--transition-fast);
    z-index: 2;
}

.events-carousel-btn:hover {
    background-color: var(--brand-primary);
    color: var(--btn-text);
    border-color: var(--brand-primary);
}

.events-carousel-btn--prev {
    left: calc(-1 * var(--space-xl));
}

.events-carousel-btn--next {
    right: calc(-1 * var(--space-xl));
}

@media (min-width: 768px) {

    .events-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .events-heading {
        font-size: var(--text-hero);
    }

    .events-featured {
        flex-direction: row;
    }

    .events-card--featured {
        flex: 1.5;
    }

    .events-card--offer {
        flex: 1;
    }

    .events-card-img {
        height: 260px;
    }

    .events-carousel-item {
        flex: 0 0 300px;
    }

    .events-carousel {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

}

/* === SECTION 13 — MENU PREVIEW === */

.menu-section {
    background-color: var(--bg-secondary);
    padding: var(--space-2xl) var(--space-md);
    width: 100%;
}

.menu-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.menu-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.menu-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.menu-sub {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.menu-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.menu-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.menu-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.06);
}

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
}

.menu-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}

.menu-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.menu-card-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--line-height-normal);
}

.menu-card-price {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    font-weight: var(--font-weight-bold);
    margin-top: auto;
    padding-top: var(--space-xs);
}

.menu-cta {
    display: flex;
    justify-content: center;
}

.menu-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background-color: var(--btn-bg);
    color: var(--btn-text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.menu-cta-btn:hover {
    background-color: var(--btn-hover);
}

@media (min-width: 768px) {

    .menu-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .menu-heading {
        font-size: var(--text-hero);
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-card-img {
        height: 200px;
    }

}

@media (min-width: 1200px) {

    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* === SECTION 14 — FULL MENU PAGE === */

.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../../assets/img/menu-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-overlay);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md);
}

.page-hero-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.page-hero-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.page-hero-sub {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.full-menu-wrap {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.full-menu-category {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.full-menu-cat-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.full-menu-cat-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-heading);
    margin: 0;
}

.full-menu-cat-note {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.full-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.full-menu-item {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.full-menu-item-name {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    white-space: nowrap;
}

.full-menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border-color);
    margin-bottom: 4px;
}

.full-menu-item-price {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

@media (min-width: 768px) {

    .page-hero {
        padding: var(--space-2xl) var(--space-xl);
    }

    .page-hero-heading {
        font-size: var(--text-hero);
    }

    .full-menu-wrap {
        padding: var(--space-2xl) var(--space-xl);
    }

    .full-menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm) var(--space-2xl);
    }

}

/* === SECTION 15 — GALLERY === */

.gallery-section {
    background-color: var(--bg-primary);
    padding: var(--space-2xl) var(--space-md);
    width: 100%;
}

.gallery-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.gallery-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.gallery-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.gallery-carousel-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.gallery-track {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.gallery-track-inner {
    display: flex;
    transition: transform 0.6s ease;
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.gallery-slide-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--brand-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: var(--transition-fast);
    flex-shrink: 0;
    z-index: 2;
}

.gallery-btn:hover {
    background-color: var(--brand-primary);
    color: var(--btn-text);
    border-color: var(--brand-primary);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.gallery-dot.active {
    background-color: var(--brand-primary);
    width: 24px;
}

@media (min-width: 768px) {

    .gallery-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .gallery-heading {
        font-size: var(--text-hero);
    }

    .gallery-slide-img {
        height: 500px;
    }

}

/* === SECTION 16 — SOCIAL === */

.social-section {
    background-color: var(--bg-secondary);
    padding: var(--space-2xl) var(--space-md);
    width: 100%;
}

.social-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    text-align: center;
}

.social-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.social-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.social-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.social-sub {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
    max-width: 600px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link-name {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--text-on-dark);
}

.social-link-handle {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.social-link--instagram:hover i { color: #e1306c; }
.social-link--instagram:hover { border-color: #e1306c; }

.social-link--tiktok:hover i { color: #69c9d0; }
.social-link--tiktok:hover { border-color: #69c9d0; }

.social-link--facebook:hover i { color: #1877f2; }
.social-link--facebook:hover { border-color: #1877f2; }

.social-link--linkedin:hover i { color: #0a66c2; }
.social-link--linkedin:hover { border-color: #0a66c2; }

.social-link--whatsapp:hover i { color: #25D366; }
.social-link--whatsapp:hover { border-color: #25D366; }

@media (min-width: 768px) {

    .social-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .social-heading {
        font-size: var(--text-hero);
    }

    .social-links {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }

}

/* === SECTION 17 — CONTACT === */

.contact-section {
    background-color: var(--bg-primary);
    padding: var(--space-2xl) var(--space-md);
    width: 100%;
}

.contact-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.contact-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.contact-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: var(--space-xs);
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-info-value {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: var(--line-height-normal);
}

.contact-info-link {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.contact-info-link:hover {
    color: var(--brand-primary);
}

.contact-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition-fast);
    flex: 1;
    justify-content: center;
}

.contact-cta--directions {
    background-color: var(--btn-bg);
    color: var(--btn-text);
}

.contact-cta--directions:hover {
    background-color: var(--btn-hover);
}

.contact-cta--whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.contact-cta--whatsapp:hover {
    background-color: #1ebe57;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 320px;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    display: block;
}

@media (min-width: 768px) {

    .contact-section {
        padding: var(--space-2xl) var(--space-xl);
    }

    .contact-heading {
        font-size: var(--text-hero);
    }

    .contact-body {
        flex-direction: row;
        align-items: stretch;
        gap: var(--space-2xl);
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
        min-height: 460px;
    }

    .contact-map-frame {
        min-height: 460px;
    }

    .contact-cta {
        flex: none;
    }

}

/* === SECTION 18 — BOOK A TABLE PAGE === */

.page-hero--book {
    background-image: url('../../assets/img/book-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero--book::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-overlay);
}

.page-hero-scroll {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    margin-top: var(--space-xl);
    animation: bounce 2s infinite;
}

.page-hero-scroll-text {
    font-size: var(--text-xs);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-hero-scroll-icon {
    font-size: var(--text-lg);
}

.booking-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.booking-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.booking-label {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.booking-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
    line-height: var(--line-height-tight);
}

.booking-sub {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.booking-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.booking-label-field {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

.booking-required {
    color: var(--brand-secondary);
}

.booking-input {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    padding: var(--space-md);
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.booking-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px var(--shadow-color);
}

.booking-input::placeholder {
    color: var(--text-muted);
}

.booking-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-2xl);
}

.booking-select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.booking-textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background-color: #25D366;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.booking-submit:hover {
    background-color: #1ebe57;
}

.booking-success {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: var(--space-2xl) var(--space-xl);
}

.booking-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.booking-success-icon {
    font-size: 4rem;
    color: #25D366;
}

.booking-success-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-heading);
    margin: 0;
}

.booking-success-msg {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--line-height-loose);
    max-width: 400px;
}

.booking-success-btn {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background-color: var(--btn-bg);
    color: var(--btn-text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.booking-success-btn:hover {
    background-color: var(--btn-hover);
}

@media (min-width: 768px) {

    .booking-wrap {
        padding: var(--space-2xl) var(--space-xl);
    }

    .booking-heading {
        font-size: var(--text-hero);
    }

    .booking-row {
        flex-direction: row;
    }

    .booking-field {
        flex: 1;
    }

}

