:root {
    --accent-color: #be9a78;
    --dark-bg: #111;
    --light-bg: #f7f7f7;
    --white: #fff;
    --text-dark: #111;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    line-height: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.site-header {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.logo-brand span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.contact-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #a88768;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}


.hero-section {
    background: url('../img/slider.jpg') left center no-repeat;
    background-size: cover;
    padding: 180px 0 100px;
}

.hero-section .contact-btn {
    margin-left: 0;
}

.hero-subtitle {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    width: 100%;
    margin-bottom: 30px;
    font-size: 18px;
    color: #f1f1f1;
}


.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 22px;
}


.hotels-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hotel-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-content {
    padding: 25px;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 22px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.star {
    color: var(--accent-color);
    margin-right: 5px;
}

.rating-count {
    margin-left: 10px;
    font-size: 14px;
}

.hotel-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.hotel-btn:hover {
    background-color: #a88768;
    transform: translateY(-2px);
}


.text-block-section {
    padding: 80px 0;
}

.text-block {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 80px;
}

.text-block.reverse {
    flex-direction: row-reverse;
}

.text-block-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.text-block-img {
    width: 100%;
    height: auto;
    display: block;
}

.text-block-content {
    flex: 1;
}

.text-block-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 32px;
}

.text-block-text {
    margin-bottom: 20px;
}

.text-block-list {
    list-style: none;
}

.text-block-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.text-block-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}


.stats-section {
    padding: 20px 0 30px 0;
    background-color: #111;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #fff;
}


.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-color);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 500;
    color: var(--text-dark);
}


.blog-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.blog-date {
    margin-right: 15px;
    color: var(--accent-color);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

.blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #a88768;
}


.site-footer {
    background-color: var(--dark-bg);
    padding: 60px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-text {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-item {
    margin-bottom: 10px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.cookie-popup a{
    color: #111;
    text-decoration: underline;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    z-index: 1000;
    display: none;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-text {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
}

.cookie-accept:hover {
    background-color: #a88768;
}

.cookie-decline {
    background-color: transparent;
    border: 1px solid #ccc;
    color: var(--text-dark);
}

.cookie-decline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.breadcrumbs-section {
    background-color: var(--light-bg);
    padding: 140px 0 40px 0;

}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumbs i {
    margin-right: 10px;
    color: var(--text-light);
    font-size: 12px;
}

.breadcrumbs span {
    color: var(--text-light);
}


.about-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.about-mission {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
    padding: 0 40px;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-text {
    margin-bottom: 20px;
}


.team-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-content {
    padding: 25px;
}

.team-name {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 22px;
}

.team-position {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 16px;
}


.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 22px;
}


@media (max-width: 992px) {

    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission {
        flex-direction: column;
    }

    .about-content {
        padding: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 18px;
}


.contact-form {
    flex: 1;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #a88768;
    transform: translateY(-2px);
}


.thankyou-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.thankyou-popup.active {
    opacity: 1;
    visibility: visible;
}

.thankyou-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.thankyou-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.thankyou-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 28px;
}

.thankyou-text {
    margin-bottom: 20px;
}

.thankyou-close {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.thankyou-close:hover {
    background-color: #a88768;
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}


.policy-section ul{
    padding-left: 20px;
    margin-top: 10px;
}


    .policy-section {
        padding: 60px 0;
    }
    
    .policy-title {
        font-family: 'Playfair Display', serif;
        color: #111;
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .policy-update {
        color: #777;
        margin-bottom: 40px;
        font-size: 14px;
    }
    
    .policy-content {
        color: #777;
        line-height: 1.8;
    }
    
    .policy-heading {
        font-family: 'Playfair Display', serif;
        color: #111;
        font-size: 24px;
        margin: 40px 0 20px;
    }
    
    .policy-list {
        margin: 20px 0;
        padding-left: 20px;
    }
    
    .policy-list li {
        margin-bottom: 10px;
    }



    .cookies-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    
    .cookies-table th, .cookies-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    
    .cookies-table th {
        background-color: #f7f7f7;
        font-weight: 500;
    }
    
    .cookies-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }











































@media (max-width: 992px) {

    .features-grid,
    .hotels-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-block {
        flex-direction: column;
    }

    .text-block.reverse {
        flex-direction: column;
    }

    .text-block-image {
        margin-bottom: 30px;
    }

    .text-block-content {
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-content .contact-btn {
        margin-left: 0;
    }
}

@media (max-width: 576px) {

    .features-grid,
    .hotels-grid,
    .testimonials-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 30px;
    }
    .cookie-popup{
        left: 0;
    }
}