:root {
    --navy: #0A192F;
    --sand: #E6D5B8;
    --gold: #C5A059;
    --gold-hover: #b08d48;
    --white: #FFFFFF;
    --beige: #F5F1E7;
    --text-dark: #333333;
    --text-light: #F5F1E7;
    --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-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

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

.section {
    position: relative;
}

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

.center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

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


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

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

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

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

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


.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.bg-navy .section-title {
    color: var(--white);
}

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


.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-body);
}

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

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

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

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

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

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

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

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

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

.btn-text {
    background: transparent;
    color: var(--navy);
    padding: 0;
    border: none;
    font-weight: 700;
}

.btn-text:hover {
    color: var(--gold);
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(5px);
}


#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

#main-header.scrolled,
#main-header.solid-header {
    background-color: var(--navy);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.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);
}

.logo span {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--white);
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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


#hero {
    height: 100vh;
    min-height: 600px;
    background: url('../img/hero.jpeg') no-repeat center center/cover;
    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: rgba(10, 25, 47, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.page-hero {
    height: 40vh;
    min-height: 300px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding-top: 80px;
}

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


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

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

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

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


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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow);
}


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

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

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    height: 70px;
}

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

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


.amenities-grid {
    text-align: center;
    gap: 40px 30px;
    margin-bottom: 50px;
}

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

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

.casino-mention {
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #888;
}


.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-half {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 10%;
}

.split-half.dark-bg {
    background-color: var(--navy);
    color: var(--text-light);
}

.split-half.dark-bg .section-title {
    color: var(--gold);
}

.split-half.img-bg {
    padding: 0;
    background-size: cover;
    background-position: center;
}

.restaurant-img {
    background-image: url('../img/restaurant.jpeg');
}

.spa-img {
    background-image: url('../img/spa.jpeg');
}

.split-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}


.booking-form {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
    box-shadow: var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.booking-form .form-group {
    margin-bottom: 0;
}

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

.bg-navy .form-group label {
    color: var(--navy);
}

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

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

.form-message {
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
}

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

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.hidden {
    display: none !important;
}


.contact-form-block {
    padding: 40px;
}

.contact-form-block h3 {
    margin-bottom: 20px;
    color: var(--navy);
}

.detail-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--sand);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
}

.map-placeholder {
    height: 250px;
    background: url(',,://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center center/cover;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}


.main-footer {
    background-color: #050d1a;
    color: var(--text-light);
    padding-top: 80px;
}

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

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

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

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

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

.footer-col ul li a {
    color: #bbb;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    color: #bbb;
}

.contact-list li i {
    margin-top: 5px;
    margin-right: 15px;
    color: var(--gold);
}

.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: #030811;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
    color: #888;
    font-size: 0.9rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

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

.cookie-buttons .btn-text {
    color: var(--gold);
}


.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.modal-header {
    padding: 20px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

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

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-info h4 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 1.1rem;
}

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


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-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(--gold);
}

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

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

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

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

.slider.disabled {
    cursor: not-allowed;
    background-color: var(--navy);
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}


@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-half {
        padding: 60px 20px;
    }

    .split-half.img-bg {
        min-height: 300px;
    }
}

@media (max-width: 768px) {

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

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


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

    #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: -1;
    }

    #navbar.show {
        transform: translateY(0);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

.policy-content p {
    margin-bottom: 1.2rem;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--gold);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--navy);
}