/* =====================================================
   DOMINIK PANZIÓ - MODERN MINIMAL DESIGN
   Színpaletta: Téglavörös + Arany + Semleges
   ===================================================== */

:root {
    /* Színpaletta */
    --primary-color: #8B4513;      /* Sötét tégla/barna */
    --primary-light: #A0522D;      /* Világosabb tégla */
    --accent-gold: #C9A227;        /* Arany - gombok */
    --accent-gold-hover: #B8860B;  /* Sötétebb arany hover */
    --terracotta: #B7553D;         /* Terrakotta - header */
    --terracotta-dark: #9E4530;    /* Sötétebb terrakotta - nav */
    
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #888888;
    
    --bg-white: rgba(255,255,255,0.92);
    --bg-cream: rgba(253,251,247,0.92);  /* Krém háttér */
    --bg-light: rgba(245,243,239,0.92);  /* Világos szürke-bézs */
    
    /* Design System */
    --radius: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Tipográfia - 1 font, 3 méret */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-large: clamp(2rem, 5vw, 3.5rem);
    --font-medium: clamp(1.25rem, 2.5vw, 1.75rem);
    --font-body: 1rem;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 100px;
}

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: var(--font-body);
    background-color: #fff;
    background-image: url('media/background/dominik_background_texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

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

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

.section-title {
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-body);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* Görgethető szövegdoboz - hosszabb tartalmakhoz (max-height felülírható inline) */
.scrollable-content-box {
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) var(--bg-light);
}
.scrollable-content-box::-webkit-scrollbar { width: 6px; }
.scrollable-content-box::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 3px; }
.scrollable-content-box::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

/* =====================================================
   BUTTONS - Arany stílus
   ===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-body);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-body);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* =====================================================
   HEADER - Terracotta strip, centered logo
   ===================================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: var(--transition);
    margin: 0;
    padding: 0;
    border: none;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Felső sáv - terrakotta háttér, logó középen */
.header-top {
    background: var(--terracotta, #B7553D);
    padding: 4px 0;
    margin: 0;
    border: none;
    width: 100%;
}

.header-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-top-left {
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
}

.header-top-left .lang-switcher .lang-btn {
    color: rgba(255,255,255,0.7) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.header-top-left .lang-switcher .lang-btn.active {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.header-top-left .lang-switcher .lang-btn:hover:not(.active) {
    color: #fff !important;
    border-color: rgba(255,255,255,0.6) !important;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.header-logo-text-img {
    height: 13px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.header-top-right {
    position: absolute;
    right: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-phone i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-book-now:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Alsó sáv - navigáció, terrakotta háttér sötétebb */
.header-nav {
    background: var(--terracotta-dark, #9E4530);
    padding: 0;
    margin: 0;
    border: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-nav li {
    text-align: center;
}

.header-nav a {
    display: inline-block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.82rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 5px 14px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 60%;
}

/* Mobile menu button in nav bar */
.header-nav .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    padding: 10px 14px;
    -webkit-tap-highlight-color: rgba(255,255,255,0.2);
    touch-action: manipulation;
}

/* Language Switcher */
.lang-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-left: var(--space-xs);
    visibility: visible !important;
    opacity: 1 !important;
}

.lang-switcher .lang-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: none;
    border: 1px solid #F5F3EF !important;
    padding: 6px 10px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #888888 !important;
    border-radius: 0 !important;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    position: static !important;
    float: none !important;
    margin: 0 !important;
}

.lang-switcher .lang-btn:first-child {
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
}

.lang-switcher .lang-btn:nth-child(2) {
    border-right: none !important;
    border-radius: 0 !important;
}

.lang-switcher .lang-btn:last-child {
    border-radius: 0 8px 8px 0 !important;
}

.lang-switcher .lang-btn.active {
    background: #C9A227 !important;
    color: white !important;
    border-color: #C9A227 !important;
}

.lang-switcher .lang-btn:hover:not(.active) {
    border-color: #C9A227 !important;
    color: #C9A227 !important;
}

/* Mobile Language Switcher - hidden on desktop */
.header-nav .mobile-lang-switcher {
    display: none;
}

/* Legacy mobile menu button override */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* =====================================================
   HERO SECTION - 16:9 Video Player
   ===================================================== */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}

.hero-video-container {
    position: relative;
    width: 100%;
    background: var(--bg-cream);
}

.hero-video-container video {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* Hide native video controls / play button on mobile */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
video::-webkit-media-controls-panel {
    display: none !important;
}
video::-webkit-media-controls-play-button {
    display: none !important;
}
video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/* =====================================================
   ABOUT SECTION - Bemutatkozás
   ===================================================== */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--accent-gold);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 600;
}

.about-content h2 {
    font-size: var(--font-medium);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-medium);
}

.about-feature i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* =====================================================
   ROOMS SECTION - Szobák
   ===================================================== */
.rooms-section {
    background: var(--bg-cream);
}

.room-scroller {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-md) var(--space-xs);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-light);
    padding-bottom: var(--space-md);
    touch-action: pan-x;
}

.room-scroller::-webkit-scrollbar {
    height: 8px;
}

.room-scroller::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.room-scroller::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.room-scroller::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

.room-card {
    flex: 0 0 340px;
    scroll-snap-align: center;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-card-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--accent-gold);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.room-card-badge-premium {
    background: var(--terracotta);
}

.room-card-info {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.room-card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.room-detail i {
    width: 16px;
    text-align: center;
    color: var(--terracotta);
    font-size: 0.85rem;
}

.room-equip {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.scroll-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

/* =====================================================
   ROOM MODAL - Képnézegető
   ===================================================== */
.room-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.room-modal-overlay.active {
    display: flex;
}

.room-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.room-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: rgba(0,0,0,.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s;
}

.room-modal-close:hover {
    background: rgba(0,0,0,.8);
}

.room-modal-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: #111;
    overflow: hidden;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.room-modal-info {
    padding: var(--space-md);
    max-height: 200px;
    overflow-y: auto;
}

.room-modal-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.room-modal-info .room-detail {
    margin-bottom: 6px;
}

/* Modal responsive */
@media (max-width: 768px) {
    .room-card {
        flex: 0 0 280px;
    }
    .room-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .carousel-prev { left: 6px; }
    .carousel-next { right: 6px; }
    .room-modal-info {
        padding: var(--space-sm);
    }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* =====================================================
   FACILITIES SECTION - Szolgáltatások
   ===================================================== */
.facilities-section {
    background: var(--terracotta);
}

.facilities-title {
    color: #fff !important;
}
.facilities-title::after {
    background: rgba(255,255,255,.4) !important;
}

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

.facility-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: var(--transition);
}

.facility-item:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.facility-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.facility-item span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .facility-item {
        padding: 14px 16px;
    }
}

/* =====================================================
   HOUSE RULES SECTION - Házirend
   ===================================================== */
.house-rules-section {
    background: var(--bg-white);
}

.house-rules-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.house-rules-scroll {
    max-height: 480px;
    overflow-y: auto;
    padding: var(--space-md) var(--space-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) var(--bg-light);
}

.house-rules-scroll::-webkit-scrollbar {
    width: 6px;
}
.house-rules-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
}
.house-rules-scroll::-webkit-scrollbar-thumb {
    background: var(--terracotta);
    border-radius: 3px;
}

.rule-block {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.rule-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rule-block h3 {
    font-size: 1.05rem;
    color: var(--terracotta);
    margin-bottom: 8px;
    font-weight: 700;
}

.rule-block p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.65;
}

@media (max-width: 576px) {
    .house-rules-scroll {
        padding: var(--space-sm) var(--space-md);
        max-height: 400px;
    }
}

/* =====================================================
   REVIEWS SECTION - Értékelések (horizontally scrollable)
   ===================================================== */
.reviews-section {
    background: var(--bg-cream);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 360px;
    background: var(--bg-white);
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: auto;
    padding-bottom: var(--space-sm);
    font-size: 0.92rem;
    line-height: 1.65;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-top: 1px solid var(--bg-light);
    padding-top: var(--space-sm);
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.review-author-source {
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 500;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.reviews-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: var(--bg-white);
    border: 1px solid var(--bg-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.reviews-btn:hover {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
}

.reviews-prev { left: 0; }
.reviews-next { right: 0; }

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 40px;
    }
    .review-card {
        flex: 0 0 300px;
    }
    .reviews-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .reviews-carousel {
        padding: 0 36px;
    }
    .review-card {
        flex: 0 0 260px;
    }
}

/* =====================================================
   LOCATION SECTION - Megközelítés
   ===================================================== */
.location-section {
    background: var(--bg-white);
}

.location-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: stretch;
    margin-bottom: var(--space-lg);
}

.location-address h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--terracotta);
}

.location-address h3 i {
    margin-right: 8px;
}

.address-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 300px;
}

.location-description {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--terracotta) var(--bg-light);
}

.location-description::-webkit-scrollbar { width: 6px; }
.location-description::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 3px; }
.location-description::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

.location-description p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: center;
}

/* Transport */
.location-transport {
    margin-bottom: var(--space-lg);
}

.location-transport h3,
.location-nearby h3 {
    font-size: 1.15rem;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.location-transport h3 i,
.location-nearby h3 i {
    margin-right: 8px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-cream);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.transport-item i {
    color: var(--terracotta);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* Nearby */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.nearby-item {
    background: var(--bg-cream);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--terracotta);
}

.nearby-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.nearby-time {
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 700;
    white-space: nowrap;
}

.nearby-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .location-top {
        grid-template-columns: 1fr;
    }
    .nearby-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GALLERY SECTION - Galéria
   ===================================================== */
.gallery-section {
    background: var(--bg-cream);
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.gallery-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-track img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: calc(100vw * 2 / 3);
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,.85);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.gallery-btn:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

@media (max-width: 768px) {
    .gallery-track img {
        height: calc(100vw * 2 / 3);
    }
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
}

/* =====================================================
   CONTACT SECTION - Elérhetőség
   ===================================================== */
.contact-section {
    background: var(--primary-color);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: var(--accent-gold);
}

.contact-info-block {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.contact-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    color: #fff;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    text-align: left;
}

.contact-detail i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}

.contact-detail p {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.contact-detail a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--accent-gold);
}

.booking-cta {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
}

.booking-cta h3 {
    font-size: var(--font-medium);
    margin-bottom: var(--space-sm);
}

.booking-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   POPUP - Kupon
   ===================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.popup-icon i {
    font-size: 2rem;
    color: white;
}

.popup-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.popup-content p {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.coupon-code {
    background: var(--bg-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    display: inline-block;
    border: 2px dashed var(--accent-gold);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: var(--space-md) 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

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

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Stagger animation delay */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* =====================================================
   GALLERY PAGE SPECIFIC
   ===================================================== */
.gallery-hero {
    height: 40vh;
    min-height: 300px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 135px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav li {
        min-width: auto;
    }
}

@media (max-width: 992px) {
    .header-contact .contact-link span {
        display: none;
    }
    
    .header-contact .contact-link i {
        font-size: 1.1rem;
    }
    
    .header-nav ul {
        gap: 0;
    }
    
    .header-nav a {
        font-size: 0.8rem;
        padding: 10px 10px;
    }

    .header-phone {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Header mobile */
    .header-top-left {
        display: none;
    }

    .logo {
        gap: 2px;
    }

    .header-logo-img {
        height: 24px;
        width: auto;
    }

    .header-logo-text-img {
        height: 10px;
    }

    .header-phone {
        display: none;
    }

    .btn-book-now {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .header-nav {
        position: relative;
        flex-direction: column;
        align-items: stretch;
        min-height: 44px;
    }

    .header-nav .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        order: -1;
        z-index: 101;
        font-size: 1.4rem;
        padding: 10px 16px;
        min-width: 48px;
        min-height: 44px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255,255,255,0.2);
        touch-action: manipulation;
    }

    .header-nav > .group-booking-link {
        display: none !important;
    }

    .header-nav > ul {
        display: none !important;
    }

    .header-nav.active > ul {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--space-xs) 0;
        background: var(--terracotta-dark, #9E4530);
        width: 100%;
        margin: 0;
        list-style: none;
    }

    .header-nav.active > .group-booking-link {
        display: block !important;
        width: 100%;
        background: var(--terracotta-dark, #9E4530);
    }

    .header-nav a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    .header-nav .mobile-lang-switcher {
        display: none !important;
    }

    /* Show lang-switcher in mobile menu */
    .header-nav.active .mobile-lang-switcher {
        display: flex !important;
        justify-content: center;
        padding: var(--space-sm) 0;
        border-top: 1px solid rgba(255,255,255,0.15);
        background: var(--terracotta-dark, #9E4530);
    }

    .header-nav .mobile-lang-switcher .lang-switcher .lang-btn {
        color: rgba(255,255,255,0.7) !important;
        border-color: rgba(255,255,255,0.3) !important;
    }

    .header-nav .mobile-lang-switcher .lang-switcher .lang-btn.active {
        background: rgba(255,255,255,0.2) !important;
        color: #fff !important;
        border-color: rgba(255,255,255,0.5) !important;
    }
    
    /* Hero video: full viewport width on mobile, reduce vertical gaps */
    .hero-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        /* CHANGED: Push the section down so it starts below the fixed mobile header */
        margin-top: 88px !important; /* Adjust this to your mobile header height */
        margin-bottom: 0 !important;
        padding: 0 !important;
    }

    .hero-video-container {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Reduce gap between hero video and next section on mobile */
    .hero-section + .section-padding,
    .hero-section + .rooms-section {
        padding-top: var(--space-md) !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .room-card {
        flex: 0 0 300px;
        max-height: 420px;
    }
    
    .room-card-image {
        height: 180px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: var(--space-lg) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .popup-content {
        padding: var(--space-md);
    }
    
    .coupon-code {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #fff;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 200px;
    color: #ddd;
}

.cookie-link {
    color: #C9A227;
    text-decoration: underline;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #e0b930;
}

.cookie-btn {
    display: inline-block;
    background: #C9A227;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
    user-select: none;
}

.cookie-btn:hover {
    background: #8B4513;
    transform: scale(1.05);
}

/* =====================================================
   GROUP BOOKING LINK (header nav)
   ===================================================== */
.group-booking-link {
    display: block;
    width: 100%;
    color: #C9A227;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 2px 0 3px 0;
    margin-top: 0;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.group-booking-link:hover,
.group-booking-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
    text-decoration: none;
}

.group-booking-link::after {
    display: none !important;
}

/* =====================================================
   GROUP BOOKING PAGE
   ===================================================== */
.group-booking-content {
    max-width: 700px;
    margin: 0 auto;
}

.group-booking-card {
    background: #fff;
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.group-booking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A227, #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: #fff;
}

.group-booking-card h2 {
    color: var(--text-dark, #2d2d2d);
    margin-bottom: var(--space-md);
    font-size: 1.6rem;
}

.group-booking-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium, #666);
    margin-bottom: var(--space-lg);
}

.group-booking-email {
    margin: var(--space-lg) 0;
}

.group-booking-subtext {
    font-size: 0.95rem;
    color: var(--text-medium, #666);
    line-height: 1.6;
    margin-top: var(--space-md);
    font-style: italic;
}

.group-booking-phone {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid #eee;
}

.group-booking-phone p {
    margin-bottom: var(--space-sm);
    color: var(--text-medium, #666);
}

.group-booking-phone .contact-link {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .group-booking-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .group-booking-card h2 {
        font-size: 1.3rem;
    }
    
    .group-booking-text {
        font-size: 1rem;
    }
    
    .group-booking-link {
        font-size: 0.75rem;
    }
}

/* =====================================================
   GHL FORM MODAL
   ===================================================== */
.ghl-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: var(--space-sm);
}

.ghl-modal-overlay.show {
    display: flex;
}

.ghl-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ghl-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 1;
}

.ghl-modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.ghl-modal-title {
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    padding-right: 40px;
}

.ghl-modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.ghl-form-wrapper {
    min-height: 200px;
}

@media (max-width: 600px) {
    .ghl-modal-content {
        padding: var(--space-sm);
        max-height: 95vh;
        border-radius: var(--radius-sm);
    }

    .ghl-modal-title {
        font-size: 1.3rem;
    }
}

/* =====================================================
   BOOKING NATIVE FORM
   ===================================================== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-label-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking-label-row label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.booking-req {
    color: #c65b27;
    font-weight: 600;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form .booking-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ACACAC;
    border-radius: 5px;
    font-size: 0.875rem;
    font-family: var(--font-family);
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-form .booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus,
.booking-form .booking-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.booking-form input::placeholder {
    color: #8c8c8c;
}

.booking-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.booking-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-dark);
    cursor: pointer;
    min-width: 50px;
}

.booking-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.booking-gdpr-field {
    padding-top: 8px;
}

.booking-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-medium);
    cursor: pointer;
    line-height: 1.4;
}

.booking-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.booking-privacy-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

.booking-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #c65b27;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
}

.booking-submit-btn:hover {
    background: #b54f20;
}

.booking-submit-btn:active {
    transform: scale(0.98);
}

.booking-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}