:root {
    --dark-blue: #0a192f;
    --gold: #c5a059;
    --white: #ffffff;
    --beige: #f8f5f0;
    --text-dark: #333333;
    --transition: all 0.4s ease;
}

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

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

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
}

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

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

ul {
    list-style: none;
}


header {
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

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

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: var(--transition);
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)),
        url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

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

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

.btn-gold:hover {
    background-color: #b08d48;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

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


section {
    padding: 80px 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}


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

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--beige);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    border-bottom: 4px solid var(--gold);
    transform: translateY(-5px);
}

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


.rooms {
    background: var(--beige);
}

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

.room-item {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.room-info {
    padding: 25px;
}

.room-info h3 {
    margin-bottom: 15px;
}

.room-info ul {
    margin: 15px 0 25px;
}

.room-info li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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


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

.service-box {
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}

.service-box:hover {
    background: var(--gold);
}

.service-box i {
    font-size: 2rem;
    margin-bottom: 15px;
}


.experience {
    padding: 0;
}

.exp-block {
    display: flex;
}

.exp-block.reverse {
    flex-direction: row-reverse;
}

.exp-text,
.exp-img {
    flex: 1;
    min-height: 400px;
}

.exp-text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark-blue);
    color: var(--white);
}

.exp-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.exp-img {
    background-size: cover;
    background-position: center;
}


.booking-section {
    background: linear-gradient(rgba(248, 245, 240, 0.9), rgba(248, 245, 240, 0.9)),
        url('../img/hero.jpeg');
    background-size: cover;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.booking-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
}

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

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

.full-width {
    width: 100%;
}

.success-msg {
    color: #27ae60;
    text-align: center;
    margin-top: 15px;
}


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

.test-card {
    background: var(--beige);
    padding: 40px;
    font-style: italic;
    text-align: center;
}

.test-card span {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
}


footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.responsible {
    font-size: 0.75rem !important;
    opacity: 0.7;
    margin-top: 20px;
}

.age-badge {
    border: 1px solid var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 20px;
}

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


.hero-contact {
    height: 40vh;
    background: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.75)),
        url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

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

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

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

.map-placeholder {
    padding: 0 0 80px;
}

.map-box {
    background: #e0e0e0;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--beige);
    padding: 25px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}


.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.5s ease;
    border: 1px solid var(--gold);
}

.cookie-banner.show {
    bottom: 20px;
}

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

.btn-sm {
    color: #0a192f;
    padding: 8px 15px;
    font-size: 0.8rem;
}


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

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


@media (max-width: 992px) {

    .exp-block,
    .exp-block.reverse {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--dark-blue);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        gap: 40px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 1100;
    }

    .service-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.hero-legal {
    height: 35vh;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)),
        url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: 120px !important;
}

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

.legal-content {
    padding: 80px 20px;
    background-color: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #444;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 0 0 30px 20px;
    list-style-type: disc;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--dark-blue);
    font-weight: 700;
}

.faq-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion {
    background: var(--beige);
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion summary {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    cursor: pointer;
    list-style: none;
    position: relative;
}


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

.faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: var(--transition);
}

.faq-accordion[open] summary::after {
    content: '-';
    color: var(--dark-blue);
}

.faq-accordion[open] summary {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-content {
    padding: 20px 25px;
    color: #555;
    background: var(--white);
    border: 1px solid var(--beige);
    border-top: none;
    line-height: 1.7;
    animation: fadeInDown 0.4s ease-out;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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