 
:root {
    --primary: #1A362D; 
    --secondary: #C5A880; 
    --bg-light: #F5F2EB; 
    --white: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}
 
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px auto;
}
 
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #b0936b;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
} 
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled, .header.bg-solid {
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: var(--transition);
}

.header.scrolled .nav-container, .header.bg-solid .nav-container {
    padding: 10px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.burger-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}
 
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary); 
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 54, 45, 0.6), rgba(26, 54, 45, 0.4)), url('../img/hero.jpeg') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: var(--font-body);
}

.image-placeholder img {
    width: 100%;
}

 
.grid {
    display: grid;
    gap: 30px;
}

.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-img-placeholder {
    height: 250px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.card-img-placeholder img {
    width: 100%;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.room-footer .price {
    font-weight: 600;
    color: var(--primary);
}
 
.amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}

.amenity-item {
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.amenity-item h4 {
    font-size: 1.2rem;
}
 
.split-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.split-content p {
    color: var(--text-light);
}

.subtle-notice {
    margin-top: 40px;
    padding: 15px;
    border-left: 3px solid var(--secondary);
    background-color: var(--white);
}

.subtle-notice p {
    font-size: 0.9rem;
    margin: 0;
}

.split-image {
    flex: 1;
}

.image-placeholder.tall {
    height: 600px;
}
 
.booking-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.2);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.hidden {
    display: none;
}
 
.page-hero {
    padding: 150px 0 80px;
    background-color: var(--primary);
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-details .info-list {
    margin-top: 30px;
}

.contact-details .info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details .icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 20px;
    width: 30px;
}

.contact-details .text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details .text p {
    color: var(--text-light);
}

.contact-form-wrapper {
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-placeholder {
    height: 400px;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder i {
    margin-bottom: 15px;
}
 
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary);
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 15px;
    width: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    background-color: #12261f;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ccc;
}

.footer-bottom a:hover {
    color: var(--secondary);
}
 
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-main);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-buttons .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-buttons .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content > p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.category-info h4 {
    color: var(--text-main);
    margin-bottom: 5px;
}

.category-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}


.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: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

#btnSavePreferences {
    margin-top: 20px;
}
 
@media (max-width: 992px) {
    .split-section, .about-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .burger-menu {
        display: block;
    }

    .nav-btn {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}.policy-section {
            background-color: var(--white);
            padding: 80px 0;
        }
        .policy-content {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            padding: 50px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .policy-content h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        .policy-content h3 {
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--text-main);
        }
        .policy-content p {
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }
        .policy-content ul {
            margin-bottom: 25px;
            padding-left: 20px;
            color: var(--text-light);
        }
        .policy-content li {
            margin-bottom: 10px;
            list-style-type: disc;
        }
        .last-updated {
            font-style: italic;
            color: #888;
            margin-bottom: 40px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }.faq-item {
            margin-bottom: 30px;
        }
        .faq-item h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        .faq-item h3 i {
            color: var(--secondary);
            margin-right: 15px;
            margin-top: 4px;
            font-size: 1rem;
        }
        .faq-item p {
            color: var(--text-light);
            line-height: 1.8;
            margin-left: 30px;
        }