/* ================================================================
   SüdtirolGuide — Clean, Modern, Apple-inspired Design
   Colors: Mountain green, Sky blue, Warm sunset, White
   ================================================================ */

:root {
    --green: #2D6A4F;
    --green-light: #40916C;
    --blue: #48CAE4;
    --blue-light: #90E0EF;
    --sunset: #F4845F;
    --sunset-light: #F8961E;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey-light: #E9ECEF;
    --grey: #6C757D;
    --dark: #212529;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ================================================================
   SPLASH SCREEN
   ================================================================ */

.splash-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    color: var(--dark);
    animation: splashIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-greeting {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
}

.splash-sub {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.6s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ================================================================
   NAVBAR
   ================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 0;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    position: absolute;
    left: 210px;
    font-size: 1.3rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-icon-img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.lang-switcher {
    display: flex;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    overflow: hidden;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--grey);
}

.lang-btn.active {
    background: var(--green);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--dark);
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/seiseralm/chiemseherin-seiser-alm-8123284_1920.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.7) 0%, rgba(45,106,79,0.5) 40%, rgba(72,202,228,0.3) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 1;
    color: white;
    margin-bottom: 24px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Search Toggle */
.search-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.toggle-btn {
    flex: 1;
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: white;
    color: var(--dark);
    font-weight: 600;
}

.toggle-btn:hover:not(.active) {
    color: white;
}

/* Booking Search */
.hero-search-booking {
    max-width: 680px;
    margin: 0 auto 24px;
    height: 56px;
}

.booking-bar-v2 {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    overflow: visible;
    box-shadow: none;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.25);
    height: 100%;
}

.bv2-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    min-width: 0;
    transition: background 0.2s;
}

.bv2-dest { flex: 2; }
.bv2-dates { flex: 2; }
.bv2-guests { flex: 1; }

.bv2-field:hover {
    background: rgba(0,0,0,0.03);
}

.bv2-field:active {
    background: rgba(0,0,0,0.05);
}

.bv2-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    opacity: 0.7;
}

.bv2-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.bv2-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bv2-input {
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-family: inherit;
    color: white;
    outline: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.bv2-input::placeholder {
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.bv2-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
}

.bv2-select {
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-family: inherit;
    color: white;
    outline: none;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
    color-scheme: dark;
}

.bv2-date-input {
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-family: inherit;
    color: white;
    outline: none;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.bv2-date-input::placeholder {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Flatpickr overrides */
.flatpickr-calendar {
    border-radius: 16px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
    border: 1px solid #eee !important;
    padding: 16px !important;
    font-family: 'Inter', sans-serif !important;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
    display: none !important;
}

.flatpickr-months {
    margin-bottom: 8px !important;
}

.flatpickr-months .flatpickr-month {
    height: 40px !important;
}

.flatpickr-current-month {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.flatpickr-weekdays {
    margin-bottom: 4px !important;
}

span.flatpickr-weekday {
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    color: #888 !important;
}

.flatpickr-day {
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    height: 38px !important;
    line-height: 38px !important;
}

.flatpickr-day:hover {
    background: #f0f0f0 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.endRange {
    background: #40916C !important;
    border-color: #40916C !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.flatpickr-day.inRange {
    background: rgba(45,106,79,0.12) !important;
    border-color: transparent !important;
    box-shadow: -5px 0 0 rgba(45,106,79,0.12), 5px 0 0 rgba(45,106,79,0.12) !important;
}

.flatpickr-day.today {
    border-color: var(--green) !important;
}

.flatpickr-day.today:hover {
    background: var(--green) !important;
    color: white !important;
}

/* Dark green when both dates selected */
.flatpickr-calendar.confirmed .flatpickr-day.selected,
.flatpickr-calendar.confirmed .flatpickr-day.startRange,
.flatpickr-calendar.confirmed .flatpickr-day.endRange {
    background: var(--green, #2D6A4F) !important;
    border-color: var(--green, #2D6A4F) !important;
}

.flatpickr-calendar.confirmed .flatpickr-day.inRange {
    background: rgba(45,106,79,0.2) !important;
    box-shadow: -5px 0 0 rgba(45,106,79,0.2), 5px 0 0 rgba(45,106,79,0.2) !important;
}

/* Calendar footer */
.flatpickr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px 4px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.nights-counter {
    font-size: 0.82rem;
    color: #666;
}

.flatpickr-ok-btn {
    background: var(--green, #2D6A4F);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.flatpickr-ok-btn:hover {
    background: #245a3a;
}

.bv2-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.bv2-search {
    background: white;
    color: var(--green);
    border: none;
    padding: 0 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    border-radius: 50px;
    margin: 6px;
    font-family: inherit;
}

.bv2-search:hover {
    background: #f0f0f0;
}

.booking-ad {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.hero-search {
    display: flex;
    max-width: 680px;
    margin: 0 auto 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    height: 56px;
    align-items: center;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 24px;
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-btn {
    background: white;
    color: var(--green);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

.tag:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ================================================================
   SECTIONS
   ================================================================ */

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section-desc {
    text-align: center;
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ================================================================
   CATEGORY GRID
   ================================================================ */

.categories {
    padding: 80px 0;
    background: var(--off-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    border-radius: var(--radius);
    padding: 32px;
    text-decoration: none;
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    pointer-events: none;
}

.cat-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cat-text {
    position: relative;
    z-index: 2;
}

.category-card h3 {
    position: relative;
    z-index: 2;
    color: white;
}

.category-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.9);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-light);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card-icon-letter {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.category-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ================================================================
   FEATURED / PLACE CARDS
   ================================================================ */

.featured {
    padding: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
}

.place-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
}

.place-slideshow {
    position: relative;
}

.place-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.place-slide.active {
    opacity: 1;
}

.place-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
    z-index: 10;
}

.place-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
}

.place-badge {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.place-rating {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.place-info {
    padding: 20px;
}

.place-category {
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.place-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 6px 0 8px;
}

.place-desc {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.place-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--grey);
}

/* ================================================================
   WEATHER
   ================================================================ */

.weather-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #E0F7FA 100%);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.weather-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

.weather-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.95);
}

.weather-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.weather-desc {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ================================================================
   ABOUT
   ================================================================ */

.about-section {
    padding: 80px 0;
    background: url('../images/mountainsnow/duernsteiner-south-tirol-4819318_1920.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.75) 0%, rgba(45,106,79,0.6) 100%);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.about-content p {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ================================================================
   NEWSLETTER
   ================================================================ */

.newsletter-section {
    padding: 80px 0;
    background: var(--off-white);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--green) 0%, #1B4332 100%);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    color: white;
}

.newsletter-box h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    opacity: 0.85;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .newsletter-input {
    width: 100%;
    border-radius: 12px;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 12px !important;
}

.newsletter-btn {
    background: var(--sunset);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--sunset-light);
    transform: scale(1.05);
}

.newsletter-box small {
    display: block;
    margin-top: 12px;
    opacity: 0.6;
    font-size: 0.8rem;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
    background: var(--dark);
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .category-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 0;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 8px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        color: var(--dark);
        border-bottom: 1px solid #f0f0f0;
    }

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

    .lang-switcher {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
    }

    .navbar {
        position: relative;
    }

    .nav-container {
        justify-content: center;
    }

    .logo {
        position: static;
        left: auto;
    }

    .booking-fields {
        flex-direction: column;
        border-radius: 12px;
    }

    .booking-search-btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .search-btn {
        border-radius: var(--radius);
    }

    .contact-form {
        max-width: 100%;
    }

    /* Booking bar mobile */
    .booking-bar-v2 {
        flex-direction: column;
        border-radius: 16px;
        height: auto;
        text-align: center;
    }

    .hero-search-booking {
        height: auto;
        max-width: 320px;
    }

    .bv2-field {
        padding: 10px 16px;
        justify-content: center;
    }

    .bv2-text {
        align-items: center;
    }

    .bv2-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .bv2-search {
        border-radius: 50px;
        margin: 8px 16px 12px;
        padding: 12px;
        width: calc(100% - 32px);
        text-align: center;
    }

    .bv2-label {
        font-size: 0.65rem;
    }

    .bv2-input, .bv2-date-input, .bv2-select {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 100px 16px 40px;
    }

    .hero-search {
        height: auto;
        max-width: 320px;
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }

    .hero-search .search-input {
        text-align: center;
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .hero-search .search-btn {
        border-radius: 50px;
        width: 100%;
        margin-top: 4px;
    }

    .hero-tags {
        gap: 6px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .search-toggle {
        max-width: 220px;
    }

    .toggle-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    /* Flatpickr mobile */
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 320px !important;
    }
}
