:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #d4af37;
    --gold-hover: #c59b27;
    --white: #ffffff;
    --beige: #f9f6f0;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}


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

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 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-gold:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

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

.btn-navy:hover {
    background-color: var(--navy-light);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
}

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

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

.btn-text {
    background: transparent;
    color: var(--white);
    text-decoration: underline;
    padding: 10px;
}

.block-btn {
    display: block;
    width: 100%;
    text-align: center;
}

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


.main-header {
    background-color: var(--navy);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    color: var(--white);
    margin: 0 15px;
    font-size: 15px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    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;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.7));
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}


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

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}


.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.feature-card,
.spa-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}


.room-grid {
    display: flex;
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.placeholder-img {
    background-color: #ddd;
    width: 100%;
}

.room-img {
    height: 250px;
    background: url('../img/room1.jpeg') center/cover;
}

.room-card:nth-child(2) .room-img {
    background-image: url('../img/room2.jpeg');
}

.room-card:nth-child(3) .room-img {
    background-image: url('../img/room3.jpeg');
}

.room-details {
    padding: 30px;
}

.room-details h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.room-details p {
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 70px;
}

.room-details .price {
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 20px;
    min-height: auto;
}


.dining-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dining-content {
    flex: 1;
}

.dining-content p {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--text-muted);
}

.dining-img {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    background: url('../img/flavors.jpeg') center/cover;
}

.experience-list {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.experience-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-list i {
    color: var(--gold);
    font-size: 24px;
}

.subtle-text {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 40px;
}


.booking-cta {
    background-color: var(--navy);
    color: var(--white);
}

.booking-cta h2 {
    color: var(--white);
}


.large-footer {
    background-color: var(--navy-light);
    color: var(--white);
    padding: 80px 0 20px 0;
}

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

.brand-col .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-desc {
    color: #aaa;
    margin-top: 15px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col p {
    margin-bottom: 10px;
    color: #aaa;
}

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

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

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

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

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


.page-hero {
    background-color: var(--navy);
    padding: 160px 0 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--gold);
    font-size: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #888;
    font-weight: bold;
    margin-top: 40px;
}

.luxury-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

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


.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--navy);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

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

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

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

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

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

.cookie-toggle p {
    font-size: 13px;
    color: var(--text-muted);
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}


@media (max-width: 992px) {

    .feature-grid,
    .room-grid,
    .dining-container,
    .contact-grid {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .book-btn-header {
        display: none;

    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px;
    }

    .nav-links.active a {
        margin: 10px 0;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.text-container .last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.text-container h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 26px;
    color: var(--navy);
}

.text-container p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.text-container ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.text-container ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    position: relative;
    padding-left: 15px;
}

.text-container ul li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .text-container {
        padding: 30px 20px;
    }
}.faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 10px;
            font-weight: 600;
        }