:root {
    --primary-color: #333333;
    --gold-color: #d4af37;
    --gold-hover: #b8972e;
    --bg-light: #fdfbf7;
    --bg-white: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.3s ease-in-out;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

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

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

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

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


h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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


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

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

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

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

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

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

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

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

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


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

#header.header-solid {
    background-color: var(--bg-white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary-color);
}

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

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

.desktop-nav a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

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

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


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    padding: 40px 20px;
}

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

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--gold-color);
}

.mobile-menu-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--gold-color);
    padding-left: 10px;
}


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

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

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--bg-white);
}

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

.hero h1 span {
    color: var(--gold-color);
    font-style: italic;
}

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


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

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

.features-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    font-weight: 700;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--gold-color);
    margin-right: 5px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 0 var(--gold-color);
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.room-amenities {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.room-amenities i {
    color: var(--gold-color);
}

.link-gold {
    color: var(--gold-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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


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

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

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


.spa-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #cccccc;
}

.spa-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.spa-item h4 {
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

.amenity-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border: 1px solid #eee;
    transition: var(--transition);
}

.amenity-box:hover {
    border-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

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

.amenity-box h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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


.booking-cta {
    background: url('../img/hero.jpeg') center/cover fixed;
    position: relative;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
}

.cta-box {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.quick-book-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

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

.quick-book-form button {
    align-self: end;
    height: 44px;
}


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

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.reviewer {
    font-weight: 700;
    color: var(--primary-color);
}


.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.contact-info i {
    color: var(--gold-color);
}

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

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

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


.page-header {
    padding: 150px 0 80px;
    background: var(--bg-light);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

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

.contact-info-block h2,
.contact-form-block h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 5px;
}

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

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

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



.map-content {
    position: relative;
    z-index: 10;
    color: white;
}

.map-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-content p {
    margin-bottom: 20px;
}


.fixed-messenger-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.widget-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

.widget-icon.whatsapp {
    background-color: #25D366;
}

.widget-icon.telegram {
    background-color: #0088cc;
}

.widget-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 15px 20px;
    z-index: 10000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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


@media (max-width: 992px) {

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

    .restaurant-image {
        order: -1;
    }

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

@media (max-width: 768px) {

    .desktop-nav,
    .d-none-mobile {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

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

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

    .fixed-messenger-widget {
        bottom: 20px;
        right: 20px;
    }

    .widget-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--gold-color);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

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

.faq-item {
    margin-bottom: 25px;
    background: #fdfbf7;
    padding: 20px;
    border-left: 4px solid var(--gold-color);
    border-radius: 0 5px 5px 0;
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 0;
    text-align: left;
}