:root {
    --navy: #0B1D3A;
    --navy-light: #1A3258;
    --gold: #D4AF37;
    --gold-hover: #B5952F;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #F0F0F0;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

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: 80px 0;
}

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

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

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

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

.mb-3 {
    margin-bottom: 1.5rem;
}

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


.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

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

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

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

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

.btn-text {
    background: none;
    color: var(--text-dark);
    text-decoration: underline;
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-list a {
    color: var(--white);
    font-size: 1rem;
}

.nav-list a:hover {
    color: var(--gold);
}

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


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

.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 29, 58, 0.6), rgba(11, 29, 58, 0.8));
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

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


.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 10px;
}

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

.section-header p {
    color: #666;
}

.bg-navy .section-header p {
    color: #ccc;
}


.placeholder-img {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}


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

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

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-image .img-placeholder {
    height: 400px;
    background-color: var(--navy-light);
    border-radius: 8px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

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


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

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

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

.room-img {
    height: 250px;
}

.room-img img {
    width: 100%;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.room-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.room-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.room-price span {
    color: var(--gold);
    font-size: 1.3rem;
}


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

.amenity-item {
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

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

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

.amenity-item h4 {
    font-family: 'Lato', sans-serif;
    color: var(--white);
    margin-bottom: 0;
}


.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mb-large {
    margin-bottom: 80px;
}

.split-section.reverse .split-img {
    order: 2;
}

.split-img img {
    width: 100%;
}

.split-section.reverse .split-text {
    order: 1;
}

.split-img {
    height: 400px;
    border-radius: 8px;
}

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

.split-text p {
    margin-bottom: 25px;
    color: #555;
}


.casino-mention {
    padding: 40px 0;
    background-color: var(--white);
}

.casino-box {
    background-color: var(--cream);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    max-width: 800px;
    margin: 0 auto;
}

.casino-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.casino-box p {
    font-style: italic;
    color: #666;
    margin: 0;
}


.booking-wrapper,
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 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;
}

.hidden {
    display: none !important;
}


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

.test-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.test-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.test-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.test-card h4 {
    font-family: 'Lato', sans-serif;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0;
}


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

.info-block {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    text-align: center;
}

.info-block i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-block h4 {
    font-family: 'Lato', sans-serif;
    color: var(--navy);
    margin-bottom: 5px;
}

.info-block p {
    color: #666;
    font-size: 0.95rem;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background-color: var(--navy-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}


.footer {
    padding: 80px 0 20px;
}

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

.footer-col h3 span {
    color: var(--gold);
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

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

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

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

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

.contact-info li {
    display: flex;
    gap: 15px;
    color: #ccc;
    align-items: flex-start;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
}

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

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

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


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    transition: transform 0.4s ease-in-out;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 58, 0.8);
    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;
    box-shadow: var(--shadow);
}

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

.cookie-option-text h4 {
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--navy);
}

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


.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(--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%;
}


.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--navy);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: -1;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 15px;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .about-grid,
    .split-section,
    .form-row,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-section.reverse .split-img,
    .split-section.reverse .split-text {
        order: unset;
    }

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

    .rooms-grid,
    .test-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

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

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

.legal-content ul li {
    color: #444;
    margin-bottom: 10px;
    list-style-type: disc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--navy);
}

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

    .legal-content h2 {
        font-size: 1.5rem;
    }
}