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

:root {
    --primary-color: #D4A574;
    --primary-hover: #C19563;
    --dark-bg: #2a2a2a;
    --text-dark: #333;
    --text-gray: #666;
    --bg-light: #f5f5f5;
    --white: #fff;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.25rem 0;
}

header h1 {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 400;
}
header h1 a{
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.cookie-popup.show {
    display: flex;
}

.cookie-content {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 0;
    max-width: 700px;
    width: 100%;
}

.cookie-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cookie-content p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.cookie-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.cookie-btn.refuse {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.cookie-btn.refuse:hover {
    background-color: #f5f5f5;
}

/* Button */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

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

.btn-submit {
    width: 100%;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Haven Section */
.haven {
    padding: 5rem 0;
    background-color: var(--white);
}

.haven-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.haven-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.haven-image {
    width: 100%;
}

.haven-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.haven-content {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0 0 12px 12px;
}

.haven-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.haven-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Apercus Section */
.apercus {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.apercus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.apercu-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.apercu-image {
    width: 100%;
}

.apercu-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}

.apercu-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0 0 12px 12px;
}

.apercu-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.apercu-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Chambres Section */
.chambres {
    padding: 5rem 0;
    background-color: var(--white);
}

.chambres-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.chambres-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.chambres-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.chambres-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.chambres-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.chambres-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.carte-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.carte-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.carte-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Ancrage Section */
.ancrage {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.ancrage-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.ancrage-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.ancrage-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.ancrage-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.ancrage-content ul {
    list-style: none;
    padding: 0;
}

.ancrage-content ul li {
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
}

.ancrage-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--text-dark);
}

/* Reservation Section */
.reservation {
    padding: 5rem 0;
    background-color: var(--white);
}

.reservation .section-title {
    text-align: center;
}

.reservation-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin: 0 auto 3rem;
    line-height: 1.7;
    max-width: 900px;
    font-size: 0.95rem;
}

.reservation-form {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.reservation-form input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background-color: var(--bg-light);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.reservation-form input::placeholder {
    color: #999;
}

.reservation-form input:focus {
    outline: none;
    background-color: #ebebeb;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 45fr 55fr;
        gap: 4rem;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .haven-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .apercus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .chambres-top {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .chambres-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .ancrage-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 3rem;
    }

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

@media (min-width: 1024px) {
    .container {
        padding: 0 50px;
    }

    .hero {
        padding: 7rem 0;
    }

    .hero-content h2 {
        font-size: 3.25rem;
    }

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

    .haven,
    .apercus,
    .chambres,
    .ancrage,
    .reservation {
        padding: 6rem 0;
    }

    .haven-image img {
        height: 280px;
    }
}