/* ========================================
   CSS VARIABLES - DESIGN SYSTEM
   ======================================== */
:root {
    /* ===== BASE COLORS ===== */
    --bg: #0b1220;
    --bg-alt: #0f172a;
    /* Previously --card */
    --bg-elevated: #0c1428;
    --text: #e6ecff;
    --text-bright: #f0f4ff;
    --text-white: #ffffff;
    --muted: #a9b4d0;
    --accent: #60a5fa;
    --ring: #8b5cf6;

    /* Legacy aliases for backward compatibility */
    --card: var(--bg-alt);

    /* ===== ALPHA VARIANTS - DARK BACKGROUNDS ===== */
    --bg-alpha-40: rgba(15, 23, 42, 0.4);
    --bg-alpha-50: rgba(15, 23, 42, 0.5);
    --bg-alpha-60: rgba(15, 23, 42, 0.6);
    --bg-alpha-70: rgba(15, 23, 42, 0.7);
    --bg-alpha-85: rgba(11, 18, 32, 0.85);
    --bg-alpha-95: rgba(11, 18, 32, 0.95);
    --bg-alpha-98: rgba(15, 23, 42, 0.98);

    /* ===== ALPHA VARIANTS - WHITE ===== */
    --white-alpha-02: rgba(255, 255, 255, 0.02);
    --white-alpha-04: rgba(255, 255, 255, 0.04);
    --white-alpha-06: rgba(255, 255, 255, 0.06);
    --white-alpha-10: rgba(255, 255, 255, 0.1);
    --white-alpha-12: rgba(255, 255, 255, 0.12);
    --white-alpha-15: rgba(255, 255, 255, 0.15);
    --white-alpha-20: rgba(255, 255, 255, 0.2);
    --white-alpha-30: rgba(255, 255, 255, 0.3);
    --white-alpha-35: rgba(255, 255, 255, 0.35);
    --white-alpha-40: rgba(255, 255, 255, 0.4);
    --white-alpha-95: rgba(255, 255, 255, 0.95);

    /* ===== ACCENT ALPHA ===== */
    --accent-alpha-20: rgba(96, 165, 250, 0.2);
    --accent-alpha-30: rgba(96, 165, 250, 0.3);
    --accent-alpha-80: rgba(96, 165, 250, 0.8);

    /* ===== SHADOWS ===== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-green: 0 0 20px rgba(74, 222, 128, 0.4);
    --shadow-orange: 0 0 20px rgba(254, 204, 0, 0.4);

    /* ===== BUTTON COLORS ===== */
    --btn-green-from: #4ade80;
    --btn-green-to: #22c55e;
    --btn-orange-from: #FECC00;
    --btn-orange-to: #FDB813;
    --btn-text-dark: #000;

    /* ===== HERO COLORS ===== */
    --hero-title-from: #fff;
    --hero-title-to: #a5f3fc;
    --hero-overlay: rgba(5, 8, 20, 0.6);

    /* ===== SPACING SCALE (4px base) ===== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* ===== TYPOGRAPHY ===== */
    --text-xs: 14px;
    --text-sm: 15px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 22px;
    --text-2xl: clamp(25px, 9vw, 60px);
    --text-3xl: clamp(40px, 7vw, 56px);

    --leading-tight: 1.1;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;

    /* ===== LAYOUT ===== */
    --nav-height: 88px;

    /* ===== BORDERS ===== */
    --border-subtle: none;
    --border-muted: 1px solid var(--white-alpha-12);
    --border-accent: 1px solid var(--accent-alpha-20);

    /* ===== TRANSITIONS ===== */
    --transition-fast: all 0.2s;
    --transition-smooth: all 0.3s ease;
    --timing-fast: 0.2s;
    --timing-smooth: 0.3s ease;

    /* ===== GRADIENTS ===== */
    --gradient-card: linear-gradient(180deg, var(--bg-alt), var(--bg-elevated));
    --gradient-cta: linear-gradient(135deg, #1a1f2e 0%, #0f1420 100%);
    --gradient-button-orange: linear-gradient(135deg, var(--btn-orange-from), var(--btn-orange-to));
    --gradient-button-green: linear-gradient(135deg, var(--btn-green-from), var(--btn-green-to));
    --gradient-hero-title: linear-gradient(to right, var(--hero-title-from), var(--hero-title-to));

    /* ===== EFFECTS ===== */
    --backdrop-blur: blur(8px);
    --backdrop-blur-mobile: blur(12px);

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-card: 16px;
    --radius-pill: 50px;
    --radius-circle: 50%;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    min-height: 100%
}

body {
    font-family: Outfit, Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #0b1220;
    color: var(--text)
}

/* Prevent flash of untranslated content; fades in after JS applies translations */
.lang-loading body {
    opacity: 0;
}

html {
    transition: opacity 150ms ease;
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px;
    position: relative;
    z-index: 3
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: var(--bg-alpha-85);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    padding: 0 var(--space-6);
    position: relative;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: var(--transition-fast);
    color: #f0f4ff;
    align-self: stretch;
}

.brand:hover {
    opacity: 0.8;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    height: 100%;
    max-height: 80px;
    flex-shrink: 0;
}

.brand-text {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-bright);
}

.brand-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1;
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-bright);
    text-decoration: none;
    padding: 0;
    margin: 0;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--text-white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    width: 32px;
    min-width: 32px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -10px);
}

/* ========================================
   LANGUAGE SELECTOR (DROPDOWN)
   ======================================== */
.lang-selector {
    position: relative;
}

.flag {
    width: 28px;
    height: 20px;
    border: 1px solid var(--white-alpha-35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: .85;
    transition: all .3s;
}

.flag:hover {
    transform: scale(1.05);
    opacity: 1;
}

.flag.active {
    box-shadow: 0 0 0 2px var(--accent-alpha-80);
    opacity: 1;
    border-color: var(--accent-alpha-80);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--bg-alpha-40);
    border: 1px solid var(--white-alpha-20);
    border-radius: var(--radius-md);
    padding: 6px var(--space-2);
    cursor: pointer;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: var(--bg-alpha-70);
    border-color: var(--white-alpha-40);
}

.flag-active {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.chevron {
    color: var(--text);
    transition: transform 0.3s;
    width: 10px;
    height: 10px;
}

.lang-toggle.active .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + var(--space-2));
    right: 0;
    background: var(--bg-alpha-95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--white-alpha-20);
    border-radius: var(--radius-md);
    padding: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown .flag {
    width: 28px;
    height: 20px;
    border: 1px solid var(--white-alpha-35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s;
}

.lang-dropdown .flag:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.1);
}

.lang-dropdown .flag.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-alpha-30);
}

/* ========================================
   BUTTONS
   ======================================== */
/* Book A Button - Green Gradient */
.bokunButton,
.btn-primary {
    background: var(--gradient-button-green);
    color: var(--btn-text-dark);
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    font-family: inherit;
}

.bokunButton:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    opacity: 1;
}

.bokunButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact/CTA Buttons - Orange */
.cta-button {
    background: var(--gradient-button-orange);
    color: var(--btn-text-dark);
    font-weight: 700;
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-pill);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    text-decoration: none;
}

/* ========================================
   CONTACT/SUBMIT BUTTONS
   ======================================== */
/* Used in contact forms and CTAs - orange gradient */
.btn-contact,
button[type="submit"] {
    background: var(--gradient-button-orange);
    color: var(--btn-text-dark);
    border: none;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: 700;
    cursor: pointer;
    padding: var(--space-4) var(--space-8);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-contact:active,
button[type="submit"]:active {
    transform: translateY(0);
}

/* ========================================
   CARDS & CONTENT BLOCKS
   ======================================== */
.card {
    background: #1a1f2e;
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px
}

.text-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--white-alpha-95);
}

.about-story {
    max-width: 900px;
    margin: 0 auto;
}

.about-story h2 {
    max-width: 720px;
    margin: 0 auto 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
/* Hero background image */
.hero-bg-image {
    position: absolute;
    inset: -10% 0 0 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
}

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

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 0 24px;
    margin: 0 auto;
    max-width: 800px;
}

.hero h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin: 0 0 var(--space-5);
    letter-spacing: 0.01em;
    background: var(--gradient-hero-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin: 0;
    font-size: clamp(16px, 4vw, var(--text-xl));
    font-weight: 400;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
    text-shadow: var(--shadow-sm);
    color: var(--text);
}

.hero-intro {
    background: var(--bg-alpha-60);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    border-radius: var(--radius-card);
    max-width: 680px;
    margin: 0 auto;
}

.hero-intro .text-block {
    font-size: 15px;
    margin: 0;
}

/* ========================================
   PAGE HEADER (ABOUT, CONTACT, FAQ)
   ======================================== */
.page-header {
    text-align: center;
    padding: 80px 24px 40px;
}

.page-header h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin: 0 0 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   INTRO SECTION (INDEX)
   ======================================== */
.intro {
    padding: var(--space-12) var(--space-8) var(--space-10);
    background: #1a1f2e;
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-8);
    border-radius: var(--radius-card);
}

.intro-text {
    max-width: 100%;
    margin-bottom: var(--space-8);
    text-align: left;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
}

/* ========================================
   CTA SECTION (INDEX PAGE)
   ======================================== */
.cta-section {
    background: #1a1f2e;
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    padding: var(--space-12) var(--space-8);
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin: 16px 0 0;
    max-width: 600px;
}

/* CTA button styles are now in BUTTONS section above */

/* ========================================
   TEAM SECTION (ABOUT PAGE)
   ======================================== */
.about-story {
    margin-bottom: 64px;
}

.about-gallery {
    margin-bottom: 64px;
}

.team-section {
    margin-top: 0;
    margin-bottom: 64px;
}

.team-section h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
}

.team-card {
    background: #1a1f2e;
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.team-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.team-card-right {
    display: flex;
    align-items: center;
}

.team-card img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 70%;
    margin: 0;
    border: 3px solid var(--border-accent);
}

.team-card-heading h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

.team-card-heading .role {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.team-card .role {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    margin-top: 8px;
}

/* ========================================
   CONTACT FORM (CONTACT PAGE)
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .04);
    border: var(--border-muted);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-fast);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .06);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent);
    color: #0b1220;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #7cb5fb;
}

button:active {
    background: #4a8fd8;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0 32px;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tab {
    padding: 10px 24px;
    background: transparent;
    border: var(--border-muted);
    border-radius: var(--radius-md);
    color: var(--muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab:hover {
    border-color: var(--accent);
    color: var(--text);
}

.tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0b1220;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: var(--bg-alpha-40);
    border: var(--border-muted);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
}

.faq-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition-smooth);
}

.faq-item.open .faq-icon::before {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--timing-smooth), padding var(--timing-smooth);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ========================================
   FOOTER
   ======================================== */
.footer {
    opacity: .9;
    padding: 48px 0 36px;
    color: var(--muted);
    font-size: 14px;
    border-top: var(--border-subtle);
    margin-top: 80px;
}

.footer-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-logos a {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    height: 88px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-logos a:hover .footer-logo {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --nav-height: 76px;
    }

    header {
        padding: 4px 0;
        background: var(--bg-alpha-95);
        backdrop-filter: blur(12px);
    }

    .footer-logos {
        gap: 14px;
        margin-bottom: 14px;
    }

    .footer-logo {
        height: 72px;
        max-width: 360px;
    }

    header.scrolled {
        background: var(--bg);
    }

    .nav {
        padding: 0 12px;
        gap: 10px;
        min-height: 68px;
    }

    .brand {
        gap: 0px;
        max-width: 240px;
        align-self: stretch;
        padding: 0px 0;
    }

    .brand-logo {
        width: auto;
        height: auto;
        max-height: 100%;
        max-width: 75px;
    }

    .brand-text {
        display: none;
    }

    .bokunButton {
        padding: 8px 16px;
        font-size: 15px;
    }

    /* Keep nav-right on the right side */
    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }

    header.scrolled {
        background: var(--bg);
    }

    .hamburger {
        display: flex;
        order: 4;
        margin-left: 8px;
    }

    .hero h1 {
        font-size: clamp(25px, 9vw, 60px);
    }

    .hero p {
        font-size: clamp(16px, 4vw, 22px);
    }

    /* Hide nav-links by default on mobile */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: none;
        z-index: 10;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 16px 24px;
        width: 100%;
        border-bottom: none;
        font-size: 16px;
        color: var(--text);
        display: block;
        text-align: left;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .cta-section {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        max-width: 100%;
    }

    .gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 0 24px;
        /* Add padding to prevent edge-to-edge */
        margin-left: -24px;
        /* Compensate for container padding */
        margin-right: -24px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        scrollbar-width: none;
        /* Hide scrollbar on Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar on IE/Edge */
    }

    .gallery::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar on Chrome/Safari */
    }

    .gallery img {
        flex: 0 0 calc(100vw - 120px);
        /* Full viewport width minus padding and peek */
        max-width: 320px;
        /* Max width to keep images reasonable size */
        aspect-ratio: 4 / 3;
        /* Maintain 4:3 aspect ratio */
        height: auto;
        /* Let aspect-ratio control height */
        scroll-snap-align: center;
    }

    .card {
        padding: 24px;
    }

    .team-card {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .team-card-left {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        margin-bottom: 12px;
    }

    .team-card-right {
        align-items: flex-start;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }

    .tabs {
        gap: 6px;
    }

    .tab {
        padding: 8px 16px;
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }

    /* Flags inside mobile menu - moved to bottom */
    .nav-links .lang {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        gap: 12px;
        border-top: none;
    }
}

/* Remove all body.menu-open styles - using .active class instead */

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(30px, 9.5vw, 52px);
        letter-spacing: 0.01em;
    }
}

/* ========================================
   BÓKUN BOOK NOW BUTTON
   ======================================== */
.bokunButton {
    display: inline-block;
    padding: 10px 20px;
    background: #408C3D;
    border-radius: var(--radius-pill);
    box-shadow: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    flex: none;
    margin-left: auto;
    white-space: nowrap;
}

.bokunButton:hover {
    background: #357336;
}

.bokunButton:active {
    background: #285726;
}