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


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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    /* Space for fixed CTA bar at bottom */
    padding-bottom: 65px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

input,
select,
textarea {
    font-family: var(--font-body);
    font-size: var(--text-base);
}


/* ====================================================================
 * SECTION 2 — LAYOUT FRAMEWORK
 * ====================================================================
 *
 * HOW TO USE
 *
 * Standard section:
 * <section class="section section--primary section-pad">
 *     <div class="container">
 *         content here
 *     </div>
 * </section>
 *
 * Hero section with layers:
 * <section class="section section--hero">
 *     <div class="layer-bg"> background image or video </div>
 *     <div class="layer-overlay"></div>
 *     <div class="layer-content">
 *         <div class="container">
 *             content here
 *         </div>
 *     </div>
 * </section>
 *
 * Two column layout:
 * <div class="grid">
 *     <div class="col-1-2"> left content </div>
 *     <div class="col-1-2"> right content </div>
 * </div>
 *
 * ====================================================================
 */

/* --- SECTION --- */

.section {
    width: 100%;
    position: relative;
}

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

.section--secondary {
    background-color: var(--bg-secondary);
}

.section--hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-pad {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}


/* --- CONTAINER --- */
/* Centers content horizontally with max-width.
 * Handles side padding on mobile and desktop automatically. */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container--md {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container--sm {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .container,
    .container--md,
    .container--sm {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
}


/* --- LAYER SYSTEM --- */
/* Used inside hero sections to stack background, overlay and content. */

.layer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.layer-bg img,
.layer-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.layer-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


/* --- GRID & COLUMNS --- */
/* Mobile first — all columns stack on mobile, side by side on desktop. */

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: stretch;
}

.grid--center {
    justify-content: center;
    align-items: center;
}

.grid--gap-sm { gap: var(--space-sm); }
.grid--gap-md { gap: var(--space-md); }
.grid--gap-lg { gap: var(--space-lg); }
.grid--gap-xl { gap: var(--space-xl); }

.col-1-1  { width: 100%; }
.col-1-2,
.col-1-3,
.col-1-4,
.col-2-3,
.col-3-4 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-1-2  { width: calc(50% - var(--space-lg) / 2); }
    .col-1-3  { width: calc(33.333% - var(--space-lg) * 2 / 3); }
    .col-1-4  { width: calc(25% - var(--space-lg) * 3 / 4); }
    .col-2-3  { width: calc(66.666% - var(--space-lg) / 3); }
    .col-3-4  { width: calc(75% - var(--space-lg) / 4); }
}


/* ====================================================================
 * SECTION 3 — TYPOGRAPHY
 * ====================================================================
 * These are the default section heading styles.
 * They can be overridden inside specific sections without
 * affecting other sections.
 * ====================================================================
 */

/* Small label shown above section heading */
.section-label {
    display: block;
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-weight: var(--font-weight-normal);
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

/* Main section heading */
.section-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-sm);
}

/* Subtitle below section heading */
.section-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--line-height-normal);
    margin-bottom: 0;
}

/* Section header block — centers label, heading and subtitle */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header--left {
    align-items: flex-start;
    text-align: left;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: var(--text-hero);
    }
}


/* ====================================================================
 * SECTION 4 — BUTTONS
 * ====================================================================
 * Define once — use anywhere.
 * To change button styles — change here only.
 * All buttons across the site will update automatically.
 *
 * HOW TO USE
 * <a class="btn btn-primary">Book a Table</a>
 * <a class="btn btn-primary btn-lg">Book a Table</a>
 * <button class="btn btn-whatsapp btn-md">WhatsApp Us</button>
 * ====================================================================
 */

/* --- BASE BUTTON --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

/* --- BUTTON SIZES --- */

.btn-sm {
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-md);
}

.btn-md {
    font-size: var(--text-base);
    padding: var(--space-sm) var(--space-lg);
}

.btn-lg {
    font-size: var(--text-md);
    padding: var(--space-md) var(--space-xl);
}

/* --- BUTTON TYPES --- */

/* Primary — gold brand button */
.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border-color: var(--btn-bg);
}

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

/* Secondary — outlined button */
.btn-secondary {
    background-color: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

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

/* WhatsApp — green button */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    border-color: #1ebe57;
}

/* Ghost — transparent with light border */
.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* Full width button */
.btn-full {
    width: 100%;
}


/* ====================================================================
 * SECTION 5 — ANIMATIONS
 * ====================================================================
 * Define animation classes here.
 * JS adds .is-visible when element enters the viewport.
 * Use these classes on any element you want to animate.
 *
 * HOW TO USE
 * <div class="fade-in"> content </div>
 * <div class="slide-up fade-in-delay-1"> content </div>
 * ====================================================================
 */

/* --- BASE STATE — hidden before animation --- */

.fade-in,
.slide-up,
.slide-left,
.slide-right {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* --- VISIBLE STATE — JS adds this class --- */

.fade-in.is-visible {
    opacity: 1;
}

.slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- INITIAL POSITIONS --- */

.slide-up    { transform: translateY(40px); }
.slide-left  { transform: translateX(-40px); }
.slide-right { transform: translateX(40px); }

/* --- DELAYS --- */

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* --- INITIAL POSITIONS --- */

.slide-up    { transform: translateY(40px); }
.slide-left  { transform: translateX(-40px); }
.slide-right { transform: translateX(40px); }

/* --- DELAYS --- */

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* --- SCALE IN --- */

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* --- BLUR IN --- */

.blur-in {
    opacity: 0;
    filter: blur(8px);
    transition: opacity var(--transition-slow), filter var(--transition-slow);
}

.blur-in.is-visible {
    opacity: 1;
    filter: blur(0);
}

/* --- IMAGE FADE --- */

.img-fade {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.img-fade.is-visible {
    opacity: 1;
    transform: scale(1);
}


/* ====================================================================
 * SECTION 6 — 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;
    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;
}

.site-header.is-visible {
    opacity: 1;
    pointer-events: all;
}


/* ====================================================================
 * SECTION 7 — 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 8 — 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;
    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);
}

.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 9 — DESKTOP HEADER & NAV
 * ====================================================================
 */

@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 10 — 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 {
    display: flex;
    align-items: stretch;
    height: 65px;
}

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

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

.cta-bar-item:last-child .cta-bar-link {
    border-right: none;
}

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

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

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

/* WhatsApp slot highlight */
.cta-bar-link--whatsapp {
    color: #25D366;
}

.cta-bar-link--whatsapp:hover {
    color: #1ebe57;
}


/* ====================================================================
 * SECTION 11 — 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);
}

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

.footer-copyright p {
    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);
    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);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    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 12 — HERO
 * ====================================================================
 */

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

/* Crossfade slideshow */
.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-md);
    gap: var(--space-md);
}

.hero-logo {
    margin-bottom: var(--space-sm);
}

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

.hero-heading-1 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    line-height: var(--line-height-tight);
}

.hero-heading-2 {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--line-height-normal);
}

.hero-scroll {
    position: absolute;
    bottom: 6em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

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

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

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

@media (min-width: 768px) {

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

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

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

}


/* ====================================================================
 * SECTION 13 — ABOUT
 * ====================================================================
 */

.about-section {
    background-color: var(--bg-secondary);
}

.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-md);
    font-weight: var(--font-weight-medium);
    color: var(--text-on-dark);
    line-height: var(--line-height-loose);
}

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

.about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

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

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

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

@media (min-width: 768px) {

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

    .about-text {
        flex: 1;
    }

    .about-image-wrap {
        flex: 1;
        min-height: 500px;
    }

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

}


/* ====================================================================
 * SECTION 14 — DJS / ARTISTS
 * ====================================================================
 */

.djs-section {
    background-color: var(--bg-primary);
}

.djs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

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

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

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

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

.dj-tagline {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--brand-primary);
}

.dj-bio {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-normal);
}

.dj-socials {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.dj-social-link {
    color: var(--text-muted);
    font-size: var(--text-lg);
    transition: var(--transition-fast);
}

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

@media (min-width: 768px) {

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

}


/* ====================================================================
 * SECTION 15 — EVENTS & PROMOTIONS
 * ====================================================================
 */

.events-section {
    background-color: var(--bg-secondary);
}

/* Space between event rows */
.events-section .grid {
    margin-bottom: var(--space-lg);
}

.events-section .happy-hour-banner {
    margin-bottom: var(--space-lg);
}

.events-section .events-carousel-wrap {
    margin-top: var(--space-lg);
}

/* Equal height cards in grid rows */
.events-section .grid {
    align-items: stretch;
}

.events-section .grid .col-1-2,
.events-section .grid .col-1-3,
.events-section .grid .col-1-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.events-section .grid .col-1-2 > .event-card,
.events-section .grid .col-1-3 > .event-card,
.events-section .grid .col-1-1 > .event-card {
    flex: 1;
}

@media (min-width: 768px) {
    .events-section .grid .col-1-2 { width: calc(50% - var(--space-lg) / 2); }
    .events-section .grid .col-1-3 { width: calc(33.333% - var(--space-lg) * 2 / 3); }
}

.events-section .grid .event-card {
    display: flex;
    flex-direction: column;
}

.events-section .grid .event-card .event-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-xs);
}

/* Happy Hour Banner */
.happy-hour-banner {
    background-color: var(--brand-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.happy-hour-icon {
    font-size: var(--text-2xl);
    color: var(--bg-primary);
}

.happy-hour-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--bg-primary);
    line-height: var(--line-height-tight);
}

.happy-hour-time {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--bg-primary);
}

.happy-hour-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--bg-primary);
    opacity: 0.8;
}

.happy-hour-terms {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--bg-primary);
    opacity: 0.6;
    font-style: italic;
}

/* Events Carousel */
.events-carousel-wrap {
    position: relative;
}

.events-carousel-wrap {
    padding: 0 var(--space-lg);
}

.events-carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
    overflow-x: auto;
    overflow-y: visible;
}

.events-carousel .event-card {
    min-width: 280px;
    max-width: 320px;
}

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

.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: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    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);
}

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

/* Event Card */
.event-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

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

.event-card--active {
    border-color: var(--brand-primary);
}

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

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

.event-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);
}

.event-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--text-heading);
    line-height: var(--line-height-tight);
}

.event-card-offer {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.event-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px var(--space-sm);
    background-color: var(--brand-secondary);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* Single active special event — full width */
.events-single-card {
    width: 100%;
}

/* ====================================================================
 * SECTION 16 — MENU PREVIEW
 * ====================================================================
 */

.menu-section {
    background-color: var(--bg-primary);
}

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

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

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

.menu-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

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

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

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

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

.menu-section-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {

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

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

    .menu-card-name {
        font-size: var(--text-md);
    }

}


/* ====================================================================
 * SECTION 17 — GALLERY
 * ====================================================================
 */

.gallery-section {
    background-color: var(--bg-secondary);
}

.gallery-carousel-wrap {
    position: relative;
    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);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.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);
    margin-top: var(--space-md);
}

.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-slide-img {
        height: 500px;
    }

}


/* ====================================================================
 * SECTION 18 — SOCIAL
 * ====================================================================
 */

.social-section {
    background-color: var(--bg-primary);
}

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

.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);
    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);
}

/* Platform hover colors */
.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--youtube:hover i    { color: #ff0000; }
.social-link--youtube:hover      { border-color: #ff0000; }
.social-link--x:hover i          { color: #ffffff; }
.social-link--x:hover            { border-color: #ffffff; }
.social-link--whatsapp:hover i   { color: #25D366; }
.social-link--whatsapp:hover     { border-color: #25D366; }

@media (min-width: 768px) {

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

}


/* ====================================================================
 * SECTION 19 — CONTACT
 * ====================================================================
 */

.contact-section {
    background-color: var(--bg-secondary);
}

.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 {
    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 {
    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-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-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;
    }

}


/* ====================================================================
 * SECTION 20 — INNER PAGE HERO
 * ====================================================================
 */

.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
}

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

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

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

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

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

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

@media (min-width: 768px) {

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

}

/* Half height hero — used on menu and booking pages */
.page-hero--half {
    height: 50vh;
    min-height: 300px;
}


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

.full-menu-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.full-menu-settings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    width: fit-content;
    margin: 0 auto;
}

.full-menu-currency-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.full-menu-currency-value {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--brand-primary);
    font-weight: var(--font-weight-bold);
}

.full-menu-cat-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.full-menu-cat-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.full-menu-cat-unit {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-style: italic;
    flex-shrink: 0;
    padding-top: 6px;
}

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

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

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

.full-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.full-menu-item:first-child {
    border-top: 1px solid var(--border-color);
}

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

.full-menu-item-note {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--brand-secondary);
    font-style: italic;
    flex-shrink: 0;
}

.full-menu-item-dots {
    display: none;
}

.full-menu-item-price {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--brand-primary);
    flex-shrink: 0;
    text-align: right;
}


/* ====================================================================
 * SECTION 22 — BOOKING PAGE
 * ====================================================================
 */

.booking-wrap {
    padding: var(--space-2xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.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-field-label {
    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%;
    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 Success */
.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);
    display: none;
}

.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);
}

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

@media (min-width: 768px) {

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

    .booking-field {
        flex: 1;
    }

}


/* ====================================================================
 * SECTION 23 — SCROLL MARGIN
 * Prevents sticky header from hiding section content on nav click.
 * ====================================================================
 */

section[id] {
    scroll-margin-top: 60px;
}

@media (min-width: 768px) {
    section[id] {
        scroll-margin-top: 120px;
    }
}