/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Header Logo Image */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img { height: 34px; }
}

.nav-reserve-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.highlight {
    color: #D4AF37;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Language switch (flags to be provided as background images via CSS or left blank for custom icons) */
.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.lang-switch a {
    display: inline-block;
    width: 22px;
    height: 16px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    text-indent: -9999px;
}
.lang-switch a[hreflang="cs"] { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="640" height="480"><path fill="%23fff" d="M0 0h640v240H0z"/><path fill="%23d7141a" d="M0 240h640v240H0z"/><path d="M0 0l320 240L0 480z" fill="%2311457e"/></svg>'); }
.lang-switch a[hreflang="de"] { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="3"><rect width="5" height="1" y="0" fill="%23000000"/><rect width="5" height="1" y="1" fill="%23DD0000"/><rect width="5" height="1" y="2" fill="%23FFCE00"/></svg>'); }
.lang-switch a[hreflang="en"] { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="a"><path d="M0,0 v30 h60 v-30 z"/></clipPath><clipPath id="b"><path d="M30,15 h30 v15 z v-30 z h-30 z h-30 z v30 z z"/></clipPath><g clip-path="url(%23a)"><path d="M0,0 v30 h60 v-30 z" fill="%2301247D"/><path d="M0,0 L60,30 M60,0 L0,30" stroke="%23fff" stroke-width="6"/><path d="M0,0 L60,30 M60,0 L0,30" stroke="%23C8102E" stroke-width="4" clip-path="url(%23b)"/><path d="M30,0 v30 M0,15 h60" stroke="%23fff" stroke-width="10"/><path d="M30,0 v30 M0,15 h60" stroke="%23C8102E" stroke-width="6"/></g></svg>'); }

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8B4513;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CD853F;
    transition: width 0.3s ease;
}

.nav-menu a:hover:before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

 /* Hero Section */
.hero {
    min-height: 100vh;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(139, 69, 19, 0.7) 100%), url('../images/BU8A8847.webp');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed;  Removed to prevent rendering issues on some browsers/mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
 }

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    /* Ensure the subtitle block itself is horizontally centered when constrained by max-width */
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #8B4513;
    color: white;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.btn-primary:hover {
    background: #A0522D;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B4513;
}

/* White button for high contrast */
.btn-white {
    background: #ffffff;
    color: #8B4513;
    border: 2px solid #8B4513;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-white:hover {
    background: #8B4513;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Make the header reservation button fully brown for better prominence */
.header .nav-reserve-btn {
    background: #8B4513;
    color: #ffffff;
    border: 2px solid #8B4513;
}

.header .nav-reserve-btn:hover {
    background: #A0522D;
    color: #ffffff;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: white;
    margin-top: 10px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #CD853F;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Section inline CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.section-cta .btn {
    padding: 0.9rem 1.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #FDF5E6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature .icon-svg {
    width: 24px;
    height: 24px;
    color: #8B4513;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    will-change: transform;
    transform: translateZ(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.2s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.gallery-item.large img {
    height: 100%;
    min-height: 400px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i { display: none; }

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: #FDF5E6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.amenity-card-icon {
    width: 40px;
    height: 40px;
    color: #8B4513;
    margin: 0 auto 1rem;
    display: block;
}

.amenity-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Legacy Equipments Section - keeping for compatibility */
.Equipments {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAF0E6 0%, #F5DEB3 100%);
}

.Equipments-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Equipments icons grid */
.Equipments-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.75rem;
    margin: 2rem auto 0;
    max-width: 900px;
}
.amenity-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.45);
    border: 1px solid #F5DEB3;
    border-radius: 10px;
    color: #2c3e50;
}
.amenity-icon .ai-svg { width: 20px; height: 20px; color: #8B4513; flex-shrink: 0; }
.amenity-icon small { color: #555; }

.Equipments-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Equipments-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #F5DEB3;
    font-size: 1.1rem;
    color: #2c3e50;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-left: 0 !important;
}

.amenity-icon-inline {
    width: 20px;
    height: 20px;
    color: #8B4513;
    flex-shrink: 0;
}

.Equipments-column li:before {
    display: none;
}

.Equipments-column li:last-child {
    border-bottom: none;
}



/* Important Note */
.important-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.important-note p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: #FDF5E6;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #F5DEB3;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #F5DEB3;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.highlight {
    background: #8B4513;
    color: white;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

.price-row.highlight .price-label {
    color: white;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    font-family: 'Playfair Display', serif;
}

.price-row.highlight .price-value {
    color: white;
}

.pricing-note {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 1.5rem;
    background: #FAF0E6;
    border-radius: 8px;
    border: 1px solid #F5DEB3;
}

.pricing-note p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Dominant Reservation Section */
.reservation {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(160, 82, 45, 0.9)), url('../images/BU8A8847.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

/* Stay details */
.stay-details { background: #fff; padding: 3rem 0; }
.details-grid { display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 1rem; max-width: 600px; margin: 0 auto; margin-top: 3rem; }
.detail-card { display: flex; align-items: center; gap: 0.8rem; background: #FDF5E6; border: 1px solid #F5DEB3; border-radius: 12px; padding: 0.9rem 1.1rem; }
.detail-card h4 { margin: 0; font-size: 1rem; color: #2c3e50; }
.detail-card p { margin: 0; color: #666; }
.detail-icon { width: 22px; height: 22px; color: #8B4513; display: inline-flex; }

.reservation .section-header h2 {
    color: #ffffff;
}

.reservation .section-header p {
    color: rgba(255, 255, 255, 0.9);
}





/* Footer - compact bar */
.footer {
    background: #8B4513;
    color: white;
    padding: 1.8rem 0 1.2rem; /* ~3x current height */
}
.footer-cta {
    text-align: center;
    margin-bottom: 1.2rem;
}

.footer-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0 0 0.4rem;
}

.footer-cta p {
    margin: 0 0 0.8rem;
    color: rgba(255,255,255,0.9);
}

.btn-cta {
    background: white;
    color: #8B4513;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta:hover { transform: translateY(-2px); }
.btn-arrow { transition: transform 0.2s ease; }
.btn-cta:hover .btn-arrow { transform: translateX(3px); }

.footer-bar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem 1.5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }
.footer-links .dot { opacity: 0.6; }

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social .social-icon {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

/* Clickable links inside footer bar reuse .footer-links styles */

/* CTA block removed from markup; keep style placeholder if needed later */

.cta-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.btn-cta {
    background: white;
    color: #8B4513;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(3px);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 9999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: #f8f9fa;
        color: #8B4513;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
    }

    .gallery-item img {
        height: 150px;
        object-fit: cover;
    }

    .Equipments-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        align-items: center;
        row-gap: 0.5rem;
    }

    .footer-cta {
        padding: 0.9rem 1rem;
        margin-bottom: 0.75rem;
    }

    .nav-reserve-btn {
        display: none;
    }
    
    .nav-reserve-btn-mobile {
        display: block !important;
        margin: 1rem auto 0;
        width: fit-content;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pricing-table,
    .pricing-note {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover .gallery-overlay {
        opacity: 0;
    }
    
    .gallery-overlay {
        opacity: 0.8;
        transition: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #CD853F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B4513;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.cookie-buttons .btn-secondary:hover {
    background: #e9ecef;
    color: #343a40;
    border-color: #adb5bd;
}

.btn-link {
    background: none;
    color: #8B4513;
    text-decoration: underline;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
}

.btn-link:hover {
    color: #A0522D;
    background: rgba(139, 69, 19, 0.1);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8B4513;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Video Section Styles */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Lite YouTube placeholder (reduces layout thrashing) */
.lite-youtube {
    position: absolute;
    inset: 0;
    display: block;
    cursor: pointer;
}
.lite-youtube picture,
.lite-youtube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lite-youtube .lite-youtube-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.lite-youtube .lite-youtube-play:after {
    content: '';
    position: absolute;
    left: 28px;
    top: 14px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #8B4513;
}

.video-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.video-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.video-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Photo Gallery Styles */
.photo-gallery {
    padding: 5rem 0;
    background: #fff;
}

.photo-gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.photo-gallery .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.photo-gallery .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.photo-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem 1.5rem; /* smaller vertical gap to remove large space */
    margin-top: 1.5rem;
}

.photo-gallery .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    will-change: transform;
    contain: layout paint;
    transform: translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-gallery .gallery-item:hover {
    transform: translateY(-6px);
}

.photo-gallery .gallery-item.large {
    grid-column: span 2;
    /* Match height roughly to two stacked 4/3 tiles → ~4/3 overall */
    aspect-ratio: 4/3;
}

.photo-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Ensure large tile image doesn't force extra height */
.photo-gallery .gallery-item.large img {
    min-height: 0;
}

.photo-gallery .gallery-item:hover img {
    transform: scale(1.03);
}

.photo-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    color: white;
}

.photo-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.photo-gallery .gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #8B4513;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-nav button:hover {
    background: rgba(139, 69, 19, 0.8);
}

/* Updated Footer Contact with Icons */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Reviews */
.reviews { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 5rem 0; }
.reviews-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.review-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #f1e6d6;
  border-radius: 16px;
  padding: 1.5rem 1.75rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: -14px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(139, 69, 19, 0.15);
  pointer-events: none;
}
.review-text {
  margin-top: 0.5rem;
  color: #2c3e50;
  font-size: clamp(1rem, 1.6vw, 1.05rem);
  line-height: 1.9;
  font-style: italic;
}
.review-author {
  margin-top: auto;
  font-weight: 600;
  color: #8B4513;
  text-align: right;
}
.review-author::before {
  content: '\2014\00A0'; /* —  */
  color: #b07a4f;
}

/* Contact */
.contact { background: #ffffff; padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.contact-list p { margin-bottom: 0.6rem; }
.contact-list a { color: #8B4513; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-map iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .lang-switch { margin-left: auto; }
  
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .amenity-card {
    padding: 1.2rem;
  }
  
  .amenity-card-icon {
    width: 35px;
    height: 35px;
  }
  
  .amenity-card h4 {
    font-size: 1rem;
  }
  
  .amenity-card p {
    font-size: 0.85rem;
  }
}

.footer-contact .contact-item i {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.footer-contact .contact-item div {
    flex: 1;
}

.footer-contact .contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.footer-contact .contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact .social-icons .social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.footer-contact .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-contact .social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.18);
}

.footer-contact .social-links a i {
    font-size: 0.9rem;
    color: white;
    margin: 0;
    min-width: auto;
}

.footer-contact .social-links a[title="Facebook"]:hover {
    background: #1877f2;
}

.footer-contact .social-links a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #e1306c, #f56040);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        gap: 2rem;
    }
    
    .video-description h3 {
        font-size: 1.5rem;
    }
    
    .photo-gallery .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    
    .photo-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-contact .contact-item i {
        margin-top: 0;
    }
    
    .lightbox-nav {
        width: calc(100% + 60px);
        left: -30px;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 