:root {
    --bg-main: #121212;
    --bg-darker: #0a0a0a;
    --surface: #1e1e1e;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --text-light: #f4f4f4;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

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

.section {
    padding: 100px 0;
}

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

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

.mb-4 {
    margin-bottom: 2rem;
}


.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid transparent;
}

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

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

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


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

.main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

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

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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


.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--gold);
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    display: block;
    text-transform: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--surface);
    z-index: 2000;
    transition: var(--transition);
    padding: 50px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gold);
}

.mobile-nav-list {
    list-style: none;
    margin-top: 40px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-size: 1.2rem;
    display: block;
}


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

.contact-hero {
    height: 50vh;
    background: url('../img/hero.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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


.section-about,
.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.about-text,
.split-content {
    flex: 1;
}

.about-image,
.split-image {
    flex: 1;
}

.image-placeholder,
.split-image,
.card-img-placeholder,
.map-placeholder {
    width: 100%;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-heading);
    border: 1px solid var(--border-color);
}

.image-placeholder,
.split-image {
    height: 400px;
}

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

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

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

.card {
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card-img-placeholder {
    height: 250px;
    background-color: #2a2a2a;
}

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

.card-content {
    padding: 30px;
}

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

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


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

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

.amenity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.amenity-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.booking-section {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('../img/hero.jpeg') center/cover fixed;
}

.booking-box {
    background-color: var(--surface);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gold);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-body);
}

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


.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--surface);
    padding: 40px;
    border-left: 3px solid var(--gold);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

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


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

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

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

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

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--surface);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    height: 400px;
    flex-direction: column;
}


.main-footer {
    background-color: #050505;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

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

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

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

.brand-col p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

.footer-col h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

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

.responsibility-links a {
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}


.messenger-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.widget-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.widget-toggle:hover {
    transform: scale(1.1);
}

.widget-links {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.messenger-widget.open .widget-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.widget-links .wa {
    background-color: #25D366;
}

.widget-links .tg {
    background-color: #0088cc;
}

.widget-links .ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}


.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    border-top: 1px solid var(--gold);
    padding: 20px;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}


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

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

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

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

@media (max-width: 768px) {

    .nav-list,
    .nav-btn {
        display: none;
    }

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

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

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

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

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

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

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

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

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

.text-page-section {
    background-color: var(--bg-main);
    padding: 80px 0;
}

.text-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-content-wrapper h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.text-content-wrapper h2:first-child {
    margin-top: 0;
}

.text-content-wrapper p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.text-content-wrapper ul {
    margin-bottom: 25px;
    padding-left: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.text-content-wrapper ul li {
    margin-bottom: 10px;
    list-style-type: square;
}

.text-content-wrapper ul li::marker {
    color: var(--gold);
}

.text-content-wrapper strong {
    color: #ffffff;
    font-weight: 700;
}

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

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