:root {
    --primary-color: #C8A97E;
    --primary-dark: #A68A61;
    --secondary-color: #2C4A3B;
    --dark-color: #3E2723;
    --light-color: #F9F6F0;
    --white: #FFFFFF;
    --text-color: #4A4A4A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', 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-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    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;
}

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

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 1.5rem;
}


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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}


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

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

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

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

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

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo,
.header.scrolled .nav-list a,
.header.scrolled .burger-menu i {
    color: var(--dark-color);
}


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

.header.bg-solid .logo,
.header.bg-solid .nav-list a,
.header.bg-solid .burger-menu i {
    color: var(--dark-color);
}

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

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

.nav {
    display: flex;
    align-items: center;
}

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

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}


.hero {
    height: 100vh;
    background: url('../img/hero.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 74, 59, 0.4), rgba(62, 39, 35, 0.6));
}

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

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

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

.hero-buttons .btn {
    margin: 0 10px;
}


.page-hero {
    padding: 150px 0 80px;
    background: url('../img/hero.jpeg') center/cover no-repeat;
    text-align: center;
}

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

.page-hero p {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-images {
    position: relative;
    height: 400px;
}

.img-card {
    position: absolute;
    border-radius: 4px;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}

.img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
    background-image: url('../img/about1.jpeg');
}

.img-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: url('../img/about2.jpeg');
    border: 10px solid var(--white);
}


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

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

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

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

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

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

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


.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.feature-text h2 {
    text-align: left;
}

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

.icon-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

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


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.amenity {
    background: var(--light-color);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

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

.amenity i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.amenity:hover i {
    color: var(--white);
}

.casino-note {
    text-align: center;
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}


.cta {
    background: url('../img/hero.jpeg') center/cover fixed;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 74, 59, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

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


.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.review-card h4 {
    color: var(--primary-dark);
}


.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-top: 20px;
    border-radius: 2px;
    text-align: center;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-card h4 {
    margin-bottom: 5px;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}


.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

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

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 2px 0 0 2px;
    outline: none;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

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

.cookie-modal-content h3 {
    margin-bottom: 10px;
}

.cookie-toggle-group {
    margin: 30px 0;
}

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

.cookie-toggle-row h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cookie-toggle-row p {
    font-size: 0.85rem;
    color: #888;
}


.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: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

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

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

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

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

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

.hidden {
    display: none !important;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid.reverse .feature-text {
        order: 2;
    }

    .feature-grid.reverse .feature-img {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        margin: 0 0 30px 0;
        text-align: center;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .burger-menu {
        display: block;
        z-index: 1001;
    }

    .burger-menu i.active {
        color: var(--white);
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .cookie-buttons button {
        flex: 1;
    }
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 15px;
}

.legal-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

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

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    background: var(--light-color);
    border-radius: 4px;
    overflow: hidden;
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    transition: background-color var(--transition);
}


.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background-color: #f1ebd9;
}


.faq-item summary::after {
    content: '\002B';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 300;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 20px 20px 20px;
}

.faq-content p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-color);
}


.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 10px;
}