/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5f5f;
    color: white;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 100rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #a8d0d0;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #10B981;
    color: white;
}

.cookie-btn.accept:hover {
    background: #059669;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 0.1rem solid white;
}

.cookie-btn.reject:hover {
    background: white;
    color: #2c5f5f;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(231, 245, 220, 0.95)!important;
    z-index: 1000;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h1 {
    font-size: 2rem;
color: #165050;
    font-weight: 700;
}

.nav-menu {
    display: none;
    gap: 3rem;
}

.nav-menu li a {
  color: #165050;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
 color: #165050;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 95, 0.7);
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 8rem;
}

.hero-card {

    color: #333;
    padding: 3rem;

    max-width: 100rem;
    margin: 0 auto;
    border-radius: 8px;
background: rgba(231, 245, 220, 0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.00), 0 0 0 0 rgba(0, 0, 0, 0.00), 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.hero-subtitle {
    display: block;
    font-size: 1.4rem;
    color: #2c5f5f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #666;
}

/* Buttons */
.cta-button, .cta-button-large {
    display: inline-block;
    background: #2c5f5f;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button-large:hover {
    background: #1e4040;
    transform: translateY(-0.2rem);
}

.cta-button-large {
    font-size: 1.8rem;
    padding: 2rem 4rem;
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: #2c5f5f;
    padding: 1.5rem 3rem;
    border: 0.2rem solid #2c5f5f;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button-outline:hover {
    background: #2c5f5f;
    color: white;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c5f5f;
}

.section-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    max-width: 70rem;
    margin: 0 auto;
}

/* Rooms Section */
.rooms {
    padding: 8rem 0;
background: #F5FAED;
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.room-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-0.5rem);
}

.room-image {
    height: 25rem;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    padding: 2.5rem;
}

.room-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5f5f;
}

.room-description {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
background: #F5FAED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 4rem;
    height: 4rem;
}

.service-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5f5f;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: #EBF5DC;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gallery-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-0.5rem);
}

.gallery-image {
    height: 25rem;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    padding: 2.5rem;
}

.gallery-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5f5f;
}

.gallery-description {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: white;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-content {
    order: 2;
}

.about-image {
    order: 1;
    border-radius: 1rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-subtitle {
    display: block;
    font-size: 1.4rem;
    color: #2c5f5f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c5f5f;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item strong {
    color: #2c5f5f;
    font-size: 1.6rem;
}

.feature-item span {
    color: #666;
    font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: #EBF5DC;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    color: #2c5f5f;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: white;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

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

.contact-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f5f;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

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

/* Success Section */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 0 8rem;
    background: #EBF5DC;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 3.2rem;
    color: #2c5f5f;
    margin-bottom: 2rem;
}

.success-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 4rem;
}

.success-info {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
    text-align: left;
}

.success-info h3 {
    font-size: 2rem;
    color: #2c5f5f;
    margin-bottom: 2rem;
    text-align: center;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-details li {
    font-size: 1.4rem;
    color: #666;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Footer */
.footer {
    background: #2c5f5f;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #a8d0d0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column ul li a {
    color: #a8d0d0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 0.1rem solid #4a7c7c;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #a8d0d0;
}

/* Mobile Navigation */
.nav-menu.active {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: #2c5f5f;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

/* Tablet Styles */
@media screen and (min-width: 48rem) {
    .container {
        padding: 0 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .rooms-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .room-card {
        flex: 1;
        min-width: 27rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .service-card {
        flex: 1;
        min-width: 25rem;
    }

    .gallery-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .gallery-card {
        flex: 1;
        min-width: 29rem;
    }

    .about-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .about-content {
        flex: 1;
        order: 1;
    }

    .about-image {
        flex: 1;
        order: 2;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .testimonial-card {
        flex: 1;
        min-width: 25rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-item {
        flex: 1;
        min-width: 20rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
        margin-right: 2rem;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media screen and (min-width: 76.8rem) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 4.8rem;
    }

    .section-title {
        font-size: 3.6rem;
    }

    .rooms-grid {
        gap: 3rem;
    }

    .room-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .services-grid {
        gap: 4rem;
    }

    .service-card {
        flex: 0 1 calc(33.333% - 2.67rem);
    }

    .gallery-grid {
        gap: 3rem;
    }

    .gallery-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .testimonials-grid {
        gap: 3rem;
    }

    .testimonial-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .contact-info {
        gap: 3rem;
    }

    .contact-item {
        flex: 0 1 calc(25% - 2.25rem);
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 120rem) {
    .container {
        padding: 0 4rem;
    }

    .hero-card {
        padding: 4rem;
    }

    .section-header {
        margin-bottom: 6rem;
    }
}
  /* Contact Section */
        .contact-section {
        background: #F5FAED;
            padding: 6rem 0;
        }

        .contact-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            align-items: stretch;
        }

        /* Contact Info */
        .contact-info {
            background: transparent;
            padding: 0;
        }

        .contact-title {
            font-size: 3.2rem;
            color: #2c5f5f;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .contact-description {
            font-size: 1.6rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 3rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 2rem;
            height: 2rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .contact-icon::before {
            content: '';
            display: block;
            width: 2rem;
            height: 2rem;
            background-color: #2c5f5f;
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;
        }

        .contact-icon.location::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
        }

        .contact-icon.email::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
        }

        .contact-icon.phone::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
        }

        .contact-text {
            color: #666;
            font-size: 1.4rem;
            line-height: 1.5;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 4rem;
            border-radius: 1.5rem;
            box-shadow: 0 1rem 3rem rgba(44, 95, 95, 0.1);
            /*max-width: 90rem;*/
            /*margin: 0 auto;*/
        }

        .form-group {
            margin-bottom: 2.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            color: #2c5f5f;
            font-weight: 600;
            font-size: 1.4rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 0.1rem solid #e1e5e9;
            border-radius: 0.8rem;
            font-size: 1.4rem;
            font-family: 'Open Sans', sans-serif;
            background: #EBF5DC;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #2c5f5f;
            background: white;
            box-shadow: 0 0 0 0.3rem rgba(44, 95, 95, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 12rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.5rem;
            background: #2c5f5f;
            color: white;
            border: none;
            border-radius: 0.8rem;
            font-size: 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #1e4040;
            transform: translateY(-0.2rem);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media screen and (min-width: 48rem) {
            .contact-title {
                font-size: 3.6rem;
            }

            .contact-form {
                padding: 5rem;
            }
        }

        @media screen and (min-width: 76.8rem) {
            .contact-wrapper {
                flex-direction: row;
                gap: 6rem;
                align-items: flex-start;
            }

            .contact-info {
                flex: 1;
                padding-right: 2rem;
            }

            .contact-form {
                flex: 1;
                margin: 0;
            }

            .contact-title {
                font-size: 4rem;
            }
        }

        @media screen and (min-width: 120rem) {
            .contact-section {
                padding: 8rem 0;
            }

            .contact-wrapper {
                gap: 8rem;
            }
        }