﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
:root {
    --primary-color: #1C2846;
    --secondary-color: #16273B;
    --accent-color: #C99952;
    --accent-dark: #BF7417;
    --text-primary: #0D0D0D;
    --text-secondary: #555555;
    --bg-light: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1200px;
    --section-padding: 6rem 2rem;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000 !important;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex !important;
    opacity: 1;
}
.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
}
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}
.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f9f9f9;
}
.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.cookie-label {
    flex: 1;
    padding-right: 1rem;
}
.cookie-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}
.cookie-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked+.slider {
    background-color: var(--accent-color);
}
input:checked+.slider:before {
    transform: translateX(24px);
}
.cookie-toggle.disabled .slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.7;
}
.cookie-toggle.disabled input:checked+.slider {
    background-color: var(--accent-color);
    opacity: 0.5;
}
.modal-footer {
    padding: 1.5rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.cookie-settings-link {
    color: inherit;
    text-decoration: underline;
    margin-left: 10px;
    cursor: pointer;
    font-size: 0.8rem;
}
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
serif {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition) 0.3s;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.text-center {
    text-align: center;
}
.text-gold {
    color: var(--accent-color);
}
.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}
.logo span {
    font-family: var(--font-body);
    font-size: 0.5rem;
    letter-spacing: 3px;
    margin-top: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-actions {
    display: flex;
    align-items: center;
}
.hamburger {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-left: 0;
    transition: transform 0.3s;
    position: relative;
    z-index: 3000;
}
.hamburger:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.nav-links li {
    margin-bottom: 1.5rem;
    width: auto;
    list-style: none;
}
.nav-links a {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s;
    border-bottom: none !important;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-logo-mobile a::after {
    content: none !important;
    display: none !important;
}
@media (min-width: 99999px) {
    .hamburger {
        display: none;
    }
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        gap: 2rem;
    }
    .nav-links li {
        margin-bottom: 0;
    }
    .nav-logo-mobile {
        display: none;
    }
    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        color: var(--primary-color);
        padding-bottom: 2px;
    }
}
.nav-login {
    border: 1px solid var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}
.nav-login:hover {
    background: var(--text-primary);
    color: #fff !important;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.blog-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.blog-img {
    height: 200px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-content {
    padding: 1.5rem;
}
.blog-date {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}
.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.btn-link {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}
.btn-link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.lang-content a:hover {
    color: var(--primary-color);
    background: #f9f9f9;
}
.hero {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    background: #000 !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hero-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}
.slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
}
.slide.active {
    opacity: 1;
}
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
.slider-bullets {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}
.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.bullet.active {
    background: white;
}
@media (max-width: 900px) {
    .slider-bullets {
        bottom: 2rem;
    }
}
.wa-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent-color) !important;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    line-height: 1;
}
.wa-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary-color) !important;
}
.wa-float img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1);
}
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}
.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}
.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}
.sub-footer-links a {
    color: #888;
    margin-right: 1.5rem;
    transition: color 0.3s;
}
.sub-footer-links a:hover {
    color: var(--accent-color);
}
@media (max-width: 768px) {
    .sub-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .wa-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 1.5rem;
        left: 1.5rem;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    .wa-float span {
        display: none;
    }
    .wa-float img {
        margin: 0;
    }
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2070&auto=format&fit=crop') center/cover;
    filter: brightness(0.5);
    z-index: 1;
}
.hero-content {
    position: relative !important;
    z-index: 5 !important;
    text-align: center !important;
    color: white !important;
    max-width: 900px !important;
    padding: 2rem !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    display: inline-block;
    color: white;
    border-top: 1px solid rgba(187, 152, 91, 0.8);
    border-bottom: 1px solid rgba(187, 152, 91, 0.8);
    padding: 14px 28px;
    font-weight: 600;
    backdrop-filter: blur(0);
    text-align: center;
    position: relative;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    color: white;
}
.hero-cta-btn {
    background: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
    padding: 1.2rem 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}
.hero-cta-btn:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.hero-cta-btn:hover::before {
    left: 0;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    color: var(--text-secondary);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.room-img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
}
.room-info {
    text-align: center;
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-header-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 10px;
}
.room-header-toggle .room-type {
    margin-bottom: 0;
}
.toggle-icon {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.room-card.expanded .toggle-icon {
    transform: rotate(45deg);
}
.room-details-collapse {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
    text-align: left;
}
.room-card.expanded .room-details-collapse {
    max-height: 600px;
    opacity: 1;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.editorial-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
}
.editorial-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    padding: 0;
    border: none;
}
.editorial-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}
.specs-row {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}
.editorial-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center;
}
.share-action-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.icon-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}
.icon-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}
.icon-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}
@media (max-width: 768px) {
    .editorial-layout {
        gap: 1.5rem;
    }
}
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background: var(--bg-secondary);
}
.video-section {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    background: #000;
}
.video-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.hero-sm {
    height: 50vh;
    min-height: 400px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}
.form-control:focus {
    background: white;
    border-color: var(--accent-color);
    outline: none;
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.guide-card {
    background: white;
    border: 1px solid #eee;
    transition: transform 0.3s;
}
.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.guide-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.guide-content {
    padding: 1.5rem;
}
.guide-date {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}
.guide-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--accent-color);
}
@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.split-content {
    padding: 4rem;
}
.split-img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 6rem;
    padding-bottom: 3rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 5rem auto;
    padding: 0 3rem;
    align-items: start;
}
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s, transform 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}
.newsletter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 8px;
    margin-top: 2rem;
}
.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 5px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-right: 1rem;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}
.newsletter-input:focus {
    outline: none;
}
.newsletter-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    white-space: nowrap;
}
.newsletter-btn:hover {
    color: white;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-icons a {
    color: white;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
}
.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}
.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-weight: 500;
}
.sub-footer-links {
    display: flex;
    gap: 3rem;
}
.sub-footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}
.sub-footer-links a:hover {
    color: var(--accent-color);
    letter-spacing: 3px;
}
.sub-footer>div:last-child {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.sub-footer>div:last-child a {
    opacity: 0.4;
    font-size: 0.65rem;
    margin-top: 0 !important;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: inherit;
    display: inline-block;
}
.sub-footer>div:last-child a:hover {
    opacity: 0.8;
    color: var(--accent-color);
    letter-spacing: 2px;
    transform: translateX(2px);
}
@media(max-width: 900px) {
    .booking-widget {
        bottom: 0;
        width: 100%;
        flex-direction: column;
        position: relative;
        transform: none;
        box-shadow: none;
        border-top: 1px solid #eee;
    }
    .hero-title {
        font-size: 3rem;
    }
    .rooms-grid,
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-content {
        padding: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    .sub-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
        padding-bottom: 7rem;
    }
    .sub-footer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }
    .sub-footer>div:last-child {
        order: 2;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .sub-footer-links a {
        margin: 0;
        font-size: 0.7rem;
    }
    .sub-footer-links a:hover {
        letter-spacing: 2px;
    }
    .footer-col:nth-child(2) {
        display: none;
    }
    .footer-content .footer-col:first-child,
    .footer-content .footer-col:last-child {
        grid-column: auto;
    }
    .social-icons {
        justify-content: center;
    }
    #cookie-banner {
        width: 90%;
        left: 5%;
        bottom: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-buttons {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 340px;
    background: white;
    color: var(--primary-color);
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    border-radius: 12px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
#cookie-banner.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.cookie-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.room-type {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.btn-gold:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 40, 70, 0.2);
}
.nav-logo-mobile {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}
.nav-logo-mobile a {
    font-family: var(--font-heading) !important;
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    opacity: 0.3;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-bottom: none !important;
    transition: opacity 0.3s;
}
.nav-logo-mobile a:hover {
    opacity: 1;
}
.nav-logo-mobile span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-top: 5px;
    display: block;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
.footer-col .logo img {
    height: 115px;
    margin-bottom: 0;
}
.footer-col .logo a,
.footer-col .logo a:hover,
.footer-col .logo a::after,
.footer-col .logo a:hover::after {
    text-decoration: none;
    border-bottom: none;
    background: none;
    content: none;
}
.nav-logo-mobile img {
    height: 120px;
    width: auto;
    opacity: 1;
}
.room-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}
.room-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.room-slide {
    min-width: 100%;
    box-sizing: border-box;
}
.room-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.room-nav-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
    font-weight: 700;
}
.room-nav-btn:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}
.hero-slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.slider-bullets {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}
.bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.bullet.active {
    background: var(--accent-color);
    transform: scale(1.2);
}
.bullet:hover {
    background: white;
}
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}
.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-out;
}
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}
.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: 100%;
}
.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.testimonial-author {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}
.testimonial-bullets {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}
.testimonial-bullets .bullet {
    background: rgba(0, 0, 0, 0.2);
    width: 12px;
    height: 12px;
}
.testimonial-bullets .bullet.active {
    background: var(--accent-color);
    transform: scale(1.2);
}
.testimonial-bullets .bullet:hover {
    background: var(--accent-color);
}
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-top: 80px;
    }
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 1.5rem !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: 1.75rem !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 1rem auto !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .hero-subtitle {
        font-size: 0.65rem !important;
        text-align: center !important;
        max-width: 85% !important;
        line-height: 1.5 !important;
        display: inline-block !important;
        letter-spacing: 2px !important;
        padding: 6px 12px !important;
        margin: 0 auto 1.5rem auto !important;
    }
    .split-section {
        flex-direction: column;
    }
    .split-content {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    .split-img {
        height: 300px;
        min-height: 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-col .logo {
        display: flex;
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .newsletter-form {
        justify-content: center;
    }
    .room-nav-controls {
        justify-content: center;
        gap: 2rem;
    }
}
.menu-container {
    background: transparent;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}
.menu-header {
    text-align: center;
    padding: 0 0 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.menu-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}
.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.menu-section {
    border: none;
    padding: 0;
}
.menu-section-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}
.menu-section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
}
.menu-section-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.menu-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}
.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 4rem;
}
.menu-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.menu-item-row {
    display: flex;
    align-items: baseline;
    width: 100%;
    margin-bottom: 0.4rem;
}
.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}
.menu-item-dots {
    flex-grow: 1;
    margin: 0 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
    position: relative;
    top: -5px;
}
.menu-price {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}
.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    padding-right: 2rem;
}
.menu-footer {
    text-align: center;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .menu-container {
        padding: 1rem 0;
    }
    .menu-header {
        padding: 0 0 2rem;
        margin-bottom: 2rem;
    }
    .menu-header h2 {
        font-size: 2.2rem;
    }
    .menu-sections {
        gap: 3rem;
    }
    .menu-section-header {
        margin-bottom: 1.5rem;
    }
    .menu-section-header h3 {
        font-size: 1.8rem;
    }
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    .menu-item-dots {
        display: none;
    }
    .menu-item-title {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
    }
    .menu-price {
        font-size: 1.1rem;
        color: var(--primary-color);
        font-weight: 700;
        margin-top: 0.2rem;
    }
    .menu-item-desc {
        padding-right: 0;
        font-size: 0.9rem;
    }
}
.share-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: all 0.3s ease;
}
.share-icon:hover {
    transform: translateY(-2px);
}
.share-icon img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.share-icon:hover img {
    transform: scale(1.1);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}
.social-icons a img {
    width: 18px;
    height: 18px;
}
.social-icons a:hover img {
    filter: brightness(0) invert(1);
}
.full-width-gallery {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}
.full-width-gallery img:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .full-width-gallery>div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}
.guide-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.guide-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.guide-card:hover .guide-img {
    transform: scale(1.05);
}
.guide-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.guide-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: block;
}
.guide-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.guide-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.read-more:hover::after {
    width: 100%;
}
.read-more:hover {
    color: var(--accent-color);
}
.guide-card .share-icons {
    opacity: 0.8;
    transition: opacity 0.3s;
}
.guide-card:hover .share-icons {
    opacity: 1;
}
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .hero {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
    }
    .hero-content {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        left: auto !important;
        transform: none !important;
    }
    .hero-title {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    .hero-subtitle {
        display: inline-block !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 1rem !important;
    }
    .booking-widget {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 85% !important;
        max-width: 340px !important;
        margin: 3rem auto 3rem auto !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 2.5rem 2rem !important;
        background: #ffffff !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
        border-radius: 4px !important;
        z-index: 20 !important;
    }
    .widget-group {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        position: relative;
        display: flex !important;
        flex-direction: column !important;
    }
    .widget-group:not(:last-of-type)::after {
        display: none !important;
    }
    .widget-label {
        font-size: 0.8rem !important;
        letter-spacing: 0.15em !important;
        color: #333 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        width: 100% !important;
        font-weight: 700 !important;
        display: block !important;
    }
    .widget-input {
        text-align: center !important;
        font-size: 1.4rem !important;
        padding: 0.5rem 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        color: var(--primary-color) !important;
        width: 100% !important;
    }
    select.widget-input {
        text-align-last: center !important;
        padding-right: 0 !important;
        appearance: none;
    }
    .booking-widget .btn-gold {
        width: 100% !important;
        margin-top: 1.5rem !important;
        padding: 1rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 0.2em !important;
    }
    .hero {
        min-height: 80vh !important;
        padding-top: 100px !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        position: relative;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        height: auto !important;
    }
    .hero-content {
        margin-top: 10vh !important;
        margin-bottom: 2rem !important;
        width: 90% !important;
    }
    .video-hero {
        height: auto !important;
        min-height: 250px;
        margin-left: 0 !important;
        width: 100% !important;
    }
    .video-hero video {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    .video-hero .video-content {
        display: none;
    }
}
.room-card {
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}
.room-names-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}
.room-name-chip {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    display: inline-block;
    border-radius: 0;
}
.room-name-chip:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}
.room-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 4px 0;
}
.feature-icon-svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    opacity: 0.9;
    flex-shrink: 0;
}
.video-hero {
    position: relative;
    width: 100vw;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
}
.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
}
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}
.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f9f9f9;
}
.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.cookie-label {
    flex: 1;
    padding-right: 1rem;
}
.cookie-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}
.cookie-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked+.slider {
    background-color: var(--accent-color);
}
input:checked+.slider:before {
    transform: translateX(24px);
}
.cookie-toggle.disabled .slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.7;
}
.cookie-toggle.disabled input:checked+.slider {
    background-color: var(--accent-color);
    opacity: 0.5;
}
.modal-footer {
    padding: 1.5rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.cookie-settings-link {
    color: inherit;
    text-decoration: underline;
    margin-left: 10px;
    cursor: pointer;
    font-size: 0.8rem;
}
.hero-break {
    display: none;
}
@media (max-width: 768px) {
    .hero-break {
        display: inline;
    }
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar {
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    padding: 10px;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected,
.flatpickr-day.prevMonthDay.startRange,
.flatpickr-day.nextMonthDay.startRange,
.flatpickr-day.prevMonthDay.endRange,
.flatpickr-day.nextMonthDay.endRange {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
}
.flatpickr-day.inRange {
    background: rgba(201, 153, 82, 0.15) !important;
    box-shadow: -5px 0 0 rgba(201, 153, 82, 0.15), 5px 0 0 rgba(201, 153, 82, 0.15) !important;
}
.flatpickr-months .flatpickr-month {
    color: var(--primary-color);
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600;
}
.flatpickr-day.today {
    border-color: var(--accent-color);
}
.flatpickr-day.today:hover {
    background: var(--accent-color);
    color: #fff;
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
    border-bottom-color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    padding: 12px 24px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}
.btn-gold {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: var(--accent-dark);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-btn {
    background: transparent;
    border: 1px solid rgba(201, 153, 82, 0.4);
    color: var(--primary-color);
    padding: 0 16px;
    height: 38px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-btn span {
    line-height: 1;
}
.lang-btn .chevron {
    transition: transform 0.3s ease;
}
.lang-btn:hover {
    border-color: var(--accent-color);
    background: rgba(201, 153, 82, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 153, 82, 0.1);
}
.lang-btn:active {
    transform: translateY(0);
}
.nav-reserve-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0 16px;
    height: 38px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-reserve-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 153, 82, 0.3);
}
.nav-reserve-btn:active {
    transform: translateY(0);
}
.lang-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 40, 70, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lang-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lang-modal-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lang-modal-overlay.active .lang-modal-content {
    transform: scale(1) translateY(0);
}
.lang-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.lang-modal-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}
.lang-modal-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}
.lang-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.lang-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    position: relative;
    overflow: hidden;
}
.lang-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lang-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(201, 153, 82, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.lang-option:hover::before {
    opacity: 1;
}
.lang-option.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 10px 25px rgba(201, 153, 82, 0.4);
}
.lang-option.active .lang-code {
    transform: scale(1.1);
}
.lang-code {
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}
.lang-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    font-family: var(--font-body);
}
@media (max-width: 600px) {
    .lang-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .lang-modal-content {
        padding: 3rem 2rem;
    }
}
body .map-section {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    background: var(--bg-light);
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
}
body .map-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 518px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #f0f0f0;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: none !important;
}
body .map-container iframe {
    width: 100% !important;
    height: 518px !important;
    border: 0 !important;
    border-radius: 0 !important;
    filter: contrast(95%) brightness(95%) !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}
@media (max-width: 768px) {
    body .map-container,
    body .map-container iframe {
        height: 403px !important;
    }
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 2rem 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.breadcrumbs-container {
    position: relative;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0b0b0;
    opacity: 0.8;
}
.breadcrumb-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-link:hover {
    color: var(--accent-color);
}
.breadcrumb-separator {
    color: #e0e0e0;
    margin: 0 0.5rem;
    font-size: 0.6rem;
}
.breadcrumb-current {
    color: #888888;
    font-weight: 400;
}
@media (max-width: 768px) {
    .breadcrumbs-container {
        padding-top: 1rem;
    }
    .breadcrumbs {
        font-size: 0.6rem;
    }
    .breadcrumb-separator {
        margin: 0 0.3rem;
    }
}
.breadcrumbs-container {
    position: relative;
    padding: 2rem 1rem 0 1rem;
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}
.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-link:hover {
    color: var(--accent-color);
}
.breadcrumb-separator {
    color: #ccc;
    margin: 0 0.8rem;
    font-size: 0.7rem;
}
.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}
@media (max-width: 768px) {
    .breadcrumbs-container {
        padding-top: 1.5rem;
    }
    .breadcrumbs {
        font-size: 0.65rem;
    }
    .breadcrumb-separator {
        margin: 0 0.5rem;
    }
}