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

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

body {
    font-family: 'Vollkorn', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

button {
    font-family: 'Vollkorn', serif;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #2c2c2c;
    color: #fff;
    padding: 2rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(10rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: 0.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #d4a574;
    color: #fff;
}

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

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 0.2rem solid #fff;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    /*background: #fff;*/
    padding: 2rem 0;
    border-bottom: 0.1rem solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E8FAF8;
background: #E8FAF8;
}

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

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

.burger {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    z-index: 1001;
}

.burger span {
    width: 2.5rem;
    height: 0.3rem;
    background: #2c2c2c;
    transition: all 0.3s;
    display: block;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.8rem, 0.8rem);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.7rem, -0.7rem);
}

.nav-list {
    display: none;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    width: 100%;
    margin-top: 2rem;
}

.nav-list.active {
    display: flex;
}

.nav-list a {
    font-size: 1.6rem;
    color: #2c2c2c;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: #f9f9f9;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c2c2c;
    margin-bottom: 3rem;
}

.hero-image {
    margin-bottom: 3rem;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

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

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 1.4rem 3rem;
    border-radius: 0.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(212, 165, 116, 0.3);
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background: #fff;
}

.solutions h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.solutions-intro {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 4rem;
}

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

.solution-card {
    padding: 3rem;
    border-radius: 0.8rem;
    background: #f9f9f9;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    color: #d4a574;
}

.solution-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.solution-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
}

/* Chambres Section */
.chambres {
    padding: 8rem 0;
    background: #f9f9f9;
}

.chambres h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.chambres-intro {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 4rem;
}

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

.chambre-card {
    background: #fff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.chambre-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.12);
}

.chambre-image {
    width: 100%;
    height: 25rem;
    overflow: hidden;
}

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

.chambre-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 2rem 2rem 1.5rem;
}

.chambre-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin: 0 2rem 2rem;
}

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

.about h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.about-text p strong {
    color: #2c2c2c;
    font-weight: 600;
}

.about-mission {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 0.8rem;
}

.about-mission h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.about-mission p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.about-mission p:last-child {
    margin-bottom: 0;
}

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

.testimonials h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.testimonials-intro {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-image {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

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

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: #d4a574;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-style: normal;
}

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

.contact h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.contact-intro {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 4rem;
}

.contact-form {
    /*max-width: 60rem;*/
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    /*padding: 1.2rem 1.5rem;*/
    /*border: 0.2rem solid #e5e5e5;*/
    /*border-radius: 0.4rem;*/
    display: flex;
height: 48px;
padding: 12px 16px;
align-items: center;
gap: 8px;
    border: none;
align-self: stretch;
    border-bottom: 1px solid #6D6E68;
    font-family: 'Vollkorn', serif;
    font-size: 1.5rem;
    color: #333;
    /*transition: border-color 0.3s;*/
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #2c2c2c;
    color: #fff;
    padding: 1.4rem 4rem;
    border-radius: 0.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

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

/* Success Section */
.success-section {
    padding: 10rem 0;
    background: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 3rem;
    color: #5cb85c;
}

.success-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.success-content .btn-primary {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 5rem 0 3rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
}

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

.footer-links a {
    font-size: 1.4rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a574;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 10px;
    }

    .burger {
        display: none;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
        gap: 3rem;
    }

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

    .solutions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solution-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .chambres-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .chambre-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .testimonial-card {
        flex: 1 1 calc(50% - 1.5rem);
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .testimonial-image {
        margin: 0;
        flex-shrink: 0;
    }

    .cookie-popup {
        max-width: 50rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .cookie-buttons {
        justify-content: flex-start;
    }

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.8rem;
    }

    .solutions h2,
    .chambres h2,
    .about h2,
    .testimonials h2,
    .contact h2 {
        font-size: 3.6rem;
    }

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

    .chambres-grid {
        flex-wrap: nowrap;
    }

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

    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-text {
        flex: 1.5;
    }

    .about-mission {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 2rem);
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        margin: 0 auto;
    }

    .btn-submit {
        width: auto;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 5.4rem;
    }

    .container {
        padding: 0 4rem;
    }
}