:root {

    --color-brown: #2c1e16;
    --color-dark: #1a1512;
    --color-gold: #c5a059;
    --color-gold-hover: #e0b86a;
    --color-sand: #f4ecd8;
    --color-beige: #e6dfcc;
    --color-white: #ffffff;
    --color-text-main: #4a4a4a;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.3s ease;
    --radius: 8px;
    --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(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

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

.text-gold {
    color: var(--color-gold) !important;
}

.text-light {
    color: var(--color-white) !important;
}

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

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

.w-100 {
    width: 100%;
}


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

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}


.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

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

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

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

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


.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(26, 21, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.site-header.sticky {
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 700;
}

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

.nav-links a {
    color: var(--color-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
}


.hero-section {
    height: 100vh;
    background-image: url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.page-hero {
    height: 40vh;
    background-color: var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-top: 70px;
}

.page-hero h1 {
    color: var(--color-gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 21, 18, 0.7), rgba(44, 30, 22, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}


.room-card {
    padding: 0;
    overflow: hidden;
}

.room-img-placeholder {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.room-details {
    padding: 25px;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #777;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-beige);
}

.room-meta i {
    color: var(--color-gold);
    margin-right: 5px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brown);
}


.feature-list {
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--color-brown);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
}

.gold-icons i {
    color: var(--color-gold);
}

.image-placeholder {
    height: 500px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}


.amenities-grid {
    gap: 20px;
}

.amenity-item {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--color-beige);
    font-weight: 600;
    color: var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.amenity-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.amenity-item:hover {
    background: var(--color-sand);
    border-color: var(--color-gold);
}


.booking-form {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 150px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-beige);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #faf9f6;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}


.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.map-placeholder {
    height: 400px;
    background: var(--color-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-brown);
    gap: 15px;
}


.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


.site-footer {
    background-color: var(--color-dark);
    color: #ccc;
    padding-top: 80px;
}

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

.footer-logo {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

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

.footer-contact i {
    color: var(--color-gold);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

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

.newsletter-form button {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.footer-bottom {
    background-color: #110d0b;
    padding: 20px 0;
    font-size: 0.9rem;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

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

.cookie-text {
    flex: 1;
    min-width: 250px;
    color: var(--color-brown);
}

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


.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.cookie-modal {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
}

.cookie-modal h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-beige);
    padding-bottom: 10px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: 600;
    color: var(--color-brown);
}

.cookie-option p {
    font-size: 0.85rem;
    color: #666;
}


.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;
    border-radius: 24px;
}

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

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

input:disabled+.slider {
    background-color: var(--color-gold);
    opacity: 0.6;
    cursor: not-allowed;
}

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

.modal-actions {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}


@media (max-width: 992px) {

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

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

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

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-dark);
        padding: 20px;
        text-align: center;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-content .last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-beige);
    padding-bottom: 15px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--color-brown);
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--color-gold);
    font-family: var(--font-body);
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
}