body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(248, 248, 248);
}

main {
    background-color: rgb(248, 248, 248);
}

/* ====================== NAV ====================== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-top: 3px solid rgb(151, 30, 61);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 5%;
    box-sizing: border-box;
}

nav .logo img {
    height: 60px;
    width: auto;
}

/* Menu desktop */
.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: grey;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.menu li a:hover {
    color: rgb(151, 30, 61);
    text-decoration: underline;
}

/* Hamburger */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: rgb(151, 30, 61);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 768px) {
    nav {
        padding: 10px 3%;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        border-top: 3px solid rgb(151, 30, 61);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu li a {
        display: block;
        padding: 15px;
        font-size: 18px;
        color: #333;
    }

    .menu li a:hover {
        background-color: rgba(151, 30, 61, 0.1);
        color: rgb(151, 30, 61);
    }

    /* Menu ouvert */
    #menu-toggle:checked ~ .menu {
        display: flex;
    }

    /* Hamburger → croix */
    #menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

/* ====================== HERO ====================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero .coupe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.text-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.text-centre h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 8vw, 60px);
    margin: 0 0 30px 0;
}

.btn-reservez-rose {
    display: inline-block;
    background-color: rgb(151, 30, 61);
    color: white;
    border: 3px solid rgb(151, 30, 61);
    padding: 20px 60px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2.5vw, 19px);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(151, 30, 61, 0.4);
    transition: all 0.3s ease;
}

.btn-reservez-rose:hover {
    background-color: rgb(130, 20, 50);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(151, 30, 61, 0.5);
}

/* ====================== SERVICES ====================== */
.services {
    padding: 80px 5% 40px;
    text-align: center;
}

.services h2 {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    color: dimgrey;
    text-decoration: underline rgb(151, 30, 61);
    margin-bottom: 60px;
}

.service-item {
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.service-item .rectangle {
    background-color: rgb(151, 30, 61);
    color: white;
    padding: 20px;
    margin: -10px auto 0 auto;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
}

.service-item h3 {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(20px, 4vw, 25px);
    margin: 0 0 10px 0;
}

.service-item p {
    margin: 0;
    font-size: 18px;
}

/* ====================== À PROPOS ====================== */
.apropos {
    background-color: white;
    padding: 80px 5%;
    text-align: center;
}

.apropos .titre {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    color: dimgrey;
    text-decoration: underline rgb(151, 30, 61);
    margin-bottom: 40px;
}

.apropos img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
}

.apropos .text {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 2.5vw, 25px);
    text-align: justify;
    line-height: 1.6;
}

/* ====================== ÉQUIPE ====================== */
.meg {
    padding: 80px 5%;
    text-align: center;
}

.meg h2 {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    color: dimgrey;
    text-decoration: underline rgb(151, 30, 61);
    margin-bottom: 20px;
}

.meg h3 {
    font-size: clamp(24px, 4vw, 30px);
    color: gray;
    margin: 20px 0;
}

.meg .imgmeg {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 400px;
}

.meg .carre p {
    max-width: 700px;
    margin: 30px auto;
    font-family: "Playfair Display", serif;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
    text-align: justify;
}

/* ====================== CARRIÈRE ====================== */
.carriere-section {
    background: white;
    padding: 80px 5%;
    text-align: center;
}

.carriere-section .titre {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    color: dimgrey;
    text-decoration: underline rgb(151, 30, 61);
    margin-bottom: 50px;
}

.recrutement-actif {
    background-color: rgb(151, 30, 61);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 25px 20px;
    margin: 0 auto 50px;
    border-radius: 15px;
    max-width: 900px;
    box-shadow: 0 8px 25px rgba(151, 30, 61, 0.3);
}

@media (max-width: 640px) {
    .recrutement-actif {
        font-size: 20px;
        padding: 20px 15px;
    }
}

.carriere-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: #444;
    line-height: 1.6;
}

.center-btn {
    margin: 50px auto;
}

.btn-carriere-rose {
    display: inline-block;
    background-color: rgb(151, 30, 61);
    color: white;
    border: 3px solid rgb(151, 30, 61);
    padding: 22px 70px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    min-width: 340px;
    box-shadow: 0 8px 25px rgba(151, 30, 61, 0.35);
    transition: all 0.3s ease;
}

.btn-carriere-rose:hover {
    background-color: rgb(130, 20, 50);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(151, 30, 61, 0.45);
}

.carriere-note {
    margin-top: 50px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .btn-carriere-rose {
        padding: 20px 50px;
        font-size: 17px;
        min-width: 300px;
    }
}

/* ====================== INFOS ====================== */
.infos-section {
    padding: 80px 5%;
    text-align: center;
}

.infos-section h2 {
    font-family: "Playfair Display", sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    color: dimgrey;
    text-decoration: underline rgb(151, 30, 61);
    margin-bottom: 50px;
}

.info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.carte {
    flex: 1 1 100%;
    max-width: 600px;
}

.carte:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(130, 20, 50);
}

.maps {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

.localisation {
    flex: 1 1 300px;
    text-align: left;
    color: #666;
}

.localisation h4 {
    font-size: 18px;
    margin: 20px 0 5px;
}

.localisation p {
    margin: 0;
    line-height: 1.8;
}

/* ====================== FOOTER ====================== */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.footer-logo,
.footer-social {
    text-align: center;
    flex: 1 1 200px;
}

.footer-info {
    flex: 2 1 400px;
    text-align: center;
}

.footer-info h4 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: rgb(151, 30, 61);
    margin-bottom: 15px;
}

.footer-info p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-logo img {
    width: 70px;
    height: auto;
}

.btn-facebook {
    background-color: rgb(151, 30, 61);
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-facebook:hover {
    background-color: rgb(130, 20, 50);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-logo,
    .footer-info,
    .footer-social {
        text-align: center;
        width: 100%;
        flex: none;
    }

    .footer-logo img {
        width: 60px;
    }

    .btn-facebook {
        margin: 30px auto 10px;
    }
}
