﻿html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 1rem 0;
    background-color: #231E6F;
    gap: 50px;
    height: 70px;
}

    .navbar a {
        color: white;
        text-decoration: none;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        transition: color 0.3s ease;
        letter-spacing: 4px; /* Espacement entre les lettres */
    }

        .navbar a:hover {
            color: #f0a500;
        }

/* Hero Section */
.hero {
    margin: 70px 0 0 0;
    background: linear-gradient(rgba(35, 30, 111, 0.64), rgba(35, 30, 111, 0.64)), /* Couleur #231E6F avec opacité 32% */
    url('Roche_Vert-Bouteille_2_Paysage_de_l\'île_de_La_Réunion.jpg') no-repeat center center/cover; /* Image de fond */
    color: white;
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#heroTexteMobile {
    display: none;
}

#heroTexte {
    display: flex;
}

.hero-content {
    display: flex; /* Aligne les éléments horizontalement */
    justify-content: center;
    align-items: flex-end; /* Aligne les images par leur bas */
    gap: 2rem; /* Espacement entre les éléments */
}

    .hero-content img {
        width: 25rem;
    }

#logoRouxel {
    width: 35rem;
}

.center-text {
    font-family: 'Lato', sans-serif;
    text-align: center;
    max-width: 50%;
    font-size: 14px;
    font-weight: 100;
    color: white; /* Couleur du texte pour s'adapter au design */
    line-height: 2; /* Espacement des lignes pour un texte agréable à lire */
    align-self: center; /* Centre le texte horizontalement */
    padding: 0 0 8vh 0;
    letter-spacing: 3.5px;
}


/* Section Equip Boutique */
.equip-boutique {
    height: calc(100vh - 70px);
    display: flex;
    background: #2B2B2A;
    color: white;
    justify-content: space-between; /* Aligne les colonnes */
    align-items: flex-start;
}

    .equip-boutique .container {
        display: flex;
        flex-wrap: wrap; /* Rend la disposition responsive */
        margin: 0 auto;
        gap: 2rem;
        width: 100%;
        padding-top: 5rem;
    }

    .equip-boutique .text {
        font-family: 'Open Sans', sans-serif;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
        line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
        padding-left: 200px; /* Réduit au maximum la marge à droite */
        padding-bottom: 50px;
    }

        .equip-boutique .text h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 0;
        }

        .equip-boutique .text .subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .equip-boutique .text p {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .equip-boutique .text .cta {
            font-family: 'Open Sans', sans-serif;
            margin-top: 1rem;
            font-weight: bold;
            width: 100%;
        }

    .equip-boutique .btn-outline {
        display: inline-block;
        padding: 1rem;
        border: 2px solid white;
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
    }

        .equip-boutique .btn-outline:hover {
            background: white;
            color: #1a1a1a;
        }

    .equip-boutique .map {
        flex: 1;
        height: 500px;
        width: 500px;
    }

    #rouxel {
        width: 300px;
        padding-left: 150px;
        margin: 15px 0 60px 0;
    }

    #googleMap {
        width: 600px;
        height: 500px;
    }

    .equip-boutique .text a {
        color: white; /* Met le texte du lien en blanc */
    }

/* Section Contact */
.contact-section {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: space-between; /* Aligne les colonnes */
    align-items: flex-start;
    background: white;
    color: black;
    flex-direction: column;
}

    .contact-section .container {
        display: flex;
        flex-wrap: wrap; /* Rend la disposition responsive */
        width: 100%;
        height: 400px;
    }

/* Formulaire de contact */
.contact-form {
    position: relative;
    bottom: 120px;
    flex: 1;
    display: flex;
    background: #F8F8F8;
    margin-left: 10%;
}

    .contact-form form {
        margin-left: 10%;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 25px 0;
    }

    .contact-form .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-form label {
        width: 100%; /* Le label prend toute la largeur */
        text-align: left;
        display: block;
        margin-bottom: 0.5rem;
        font-weight: lighter;
        color: black;
        font-family: 'Lato', sans-serif;
        letter-spacing: 3px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%; /* Chaque champ prend toute la largeur disponible */
        padding: 0.8rem;
        font-size: 1rem;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .contact-form textarea {
        resize: none;
        min-height: 120px;
    }

    .contact-form button {
        width: 30%;
        padding: 0.8rem;
        background: #2699FB;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.3s ease;
    }

        .contact-form button:hover {
            background: #0056b3;
        }

/* Texte Contact */
.contact-section .title {
    font-family: 'Open Sans', sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
    margin-right: 10%; /* Réduit au maximum la marge à droite */
}

    .contact-section .content {
        flex-direction: row;
        display: flex;
        justify-content: center;
    }

    .contact-section .title h2 {
        font-family: 'Open Sans', sans-serif;
        font-size: 3.5rem;
        margin-bottom: 0;
    }

    .contact-section .title .subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .contact-text {
        font-family: 'Open Sans', sans-serif;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: right;
        line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
        margin: 0;
    }

    .contact-text p {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .contact-text strong {
        font-weight: bold;
    }

/* Footer */
.contact-footer {
    display: flex;
    justify-content: space-between; /* Répartit les éléments gauche/droite */
    align-items: center; /* Alignement vertical */
    width: 100%;
    font-size: 0.9rem;
    color: #555;
    background: #F8F8F8;
    padding: 15px 0;
}

    .contact-footer .footer-left {
        padding-left: 180px; /* Ajuste l'espacement à gauche */
        font-family: 'Merriweather', sans-serif;
        color: #767676;
        letter-spacing: 1px;
    }

    .contact-footer .footer-right {
        display: flex; /* Permet d'aligner le texte et l'icône */
        align-items: center; /* Centre verticalement */
        gap: 10px; /* Espacement entre le texte et l'image */
        padding-right: 18vh; /* Ajuste l'espacement à droite */
        font-family: 'Merriweather', sans-serif;
        color: #231E6F;
        letter-spacing: 1px;
    }

    .contact-footer a.social-link {
        text-decoration: none;
    }

.social-icon {
    width: 50px; /* Taille de l'icône */
    transition: opacity 0.3s ease;
}

.social-link:hover .social-icon {
    opacity: 0.7; /* Effet de survol */
}


/* Bouton de retour en haut */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .back-to-top:hover {
        transform: scale(1.1);
    }

/* Section Saint-Pierre */
.saint-pierre {
    background: #007AC2; /* Couleur de fond bleu */
    color: white;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: space-between; /* Aligne les colonnes */
    align-items: flex-start;
}

    .saint-pierre .container {
        display: flex;
        flex-wrap: wrap; /* Rend la disposition responsive */
        margin: 0 auto;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }

    /* Colonne image */
    .saint-pierre .image {
        flex: 0.65;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
        gap: 50px;
        width: 50%;
    }

    .saint-pierre .content {
        flex-direction: row;
        display: flex;
        justify-content: center;
    }

        .saint-pierre .image img {
            height: auto;
        }

    /* Boutons de contact sous l'image */
    .saint-pierre .contact-buttons {
        position: relative;
        bottom: 80px;
        display: flex;
        gap: 4%;
    }

#stPierre {
    position: relative;
    bottom: 60px;
    z-index: 1;
}

    .saint-pierre .contact-email,
    .saint-pierre .contact-phone {
        display: flex;
        padding: 1rem;
        color: #231E6F;
        font-size: 1rem;
        height: 25px;
        width: 100%;
        gap: 30px;
    }

.contact-phone {
    background-color: #FFED00;
}

.contact-email {
    background-color: #F8F8F8;
}

    /* Colonne texte */
    .saint-pierre .title {
        font-family: 'Open Sans', sans-serif;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
        line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
        margin-right: 10%; /* Réduit au maximum la marge à droite */
        padding-bottom: 40px;
    }

        .saint-pierre .title h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 0;
        }

        .saint-pierre .title .subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .saint-pierre .text {
            font-family: 'Open Sans', sans-serif;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: right;
            line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
            padding-bottom: 40px;
        }

        .saint-pierre .text p {
            margin-bottom: 1rem;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .saint-pierre .text strong {
            font-weight: bold;
        }

/* Section Sainte-Marie */
.sainte-marie {
    background: #F8F8F8; /* Couleur de fond clair */
    height: calc(100vh - 70px);
    display: flex;
    justify-content: space-between; /* Aligne les colonnes */
    align-items: flex-start;
    color: black;
}

    .sainte-marie .container {
        display: flex;
        flex-wrap: wrap; /* Rend la disposition responsive */
        margin: 0 auto;
        gap: 2rem;
        width: 100%;
        align-items: center;
        padding-top: 5rem;
    }

    /* Colonne texte */
    .sainte-marie .title {
        font-family: 'Open Sans', sans-serif;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
        line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
        margin-left: 10%; /* Réduit au maximum la marge à droite */
        padding-bottom: 40px;
    }

        .sainte-marie .title h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 0;
        }

        .sainte-marie .title .subtitle {
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .sainte-marie .content {
            flex-direction: row;
            display: flex;
            justify-content: center;
        }

        .sainte-marie .text {
            font-family: 'Open Sans', sans-serif;
            flex: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
        }

        .sainte-marie .text p {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .sainte-marie .text strong {
            font-weight: bold;
        }

    /* Colonne image */
    .sainte-marie .image {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-right: 10%;
        gap: 5vh;
        width: 50%;
    }

        .sainte-marie .image img {
            max-width: 100%;
            height: auto;
        }

#steMarie {
    position: relative;
    bottom: 150px;
    z-index: 1;
}

    /* Boutons de contact */
.sainte-marie .contact-buttons {
    display: flex;
    justify-content: space-between;
    gap: 4%;
    position: relative;
    bottom: 150px;
}

    .sainte-marie .contact-phone,
    .sainte-marie .contact-email {
        display: flex;
        padding: 1rem;
        text-decoration: none;
        color: white;
        font-size: 1rem;
        height: 30px;
        width: 300px;
        gap: 30px;
    }

    .sainte-marie .contact-phone {
        background: #FFED00; /* Jaune */
        color: #333;
    }

    .sainte-marie .contact-email {
        background: #2699FB; /* Bleu */
        color: white;
    }

    .sainte-marie .contact-phone:hover {
        background: #fbc02d; /* Jaune plus foncé */
    }

    .sainte-marie .contact-email:hover {
        background: #0056b3; /* Bleu plus foncé */
    }

.contact-buttons a {
    display: flex;
    align-items: center; /* Centrer le contenu */
    text-decoration: none; /* Supprimer le soulignement */
    font-size: 12px; /* Taille par défaut */
    color: #000; /* Couleur du texte */
}

    .contact-buttons a img {
        width: 16px; /* Ajuste la taille des icônes */
    }

    .contact-buttons a span {
        font-size: 15px; /* Taille différente pour le premier texte */
        font-family: 'Lato', sans-serif;
        line-height: 1.2; /* Ajuste selon le besoin */
        text-align: left;
    }

    .contact-buttons a small {
        font-size: 12px;
    }


/* Responsive pour écrans de petite taille (mobiles) */
@media screen and (max-width: 1260px) {

    .center-text {
        max-width: 45%;
        font-size: 12px;
        padding: 0;
    }

    #heroTexte {
        display: none;
    }

    #heroTexteMobile {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        width: 100%;
        align-items : center;
        gap: 0;
    }

    .hero-content img {
        width: 45% !important ;
    }

    .equip-boutique {
        height: auto;
        display: flex;
        background: #2B2B2A;
        color: white;
        justify-content: space-between; /* Aligne les colonnes */
        align-items: center;
    }

    .equip-boutique .container {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        gap: 2rem;
        width: 100%;
        padding-bottom: 5rem;
    }

        .equip-boutique .text {
            font-family: 'Open Sans', sans-serif;
            flex: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
            line-height: 1.6; /* Ajuste l'espacement vertical entre les lignes */
            padding-left: 0; /* Réduit au maximum la marge à droite */
            padding-bottom: 0;
        }

            .equip-boutique .text h2,
            .saint-pierre .text h2,
            .sainte-marie .text h2 {
                font-size: 2rem;
                margin: 0;
            }

    .equip-boutique .text .subtitle,
    .saint-pierre .text .subtitle,
    .sainte-marie .text .subtitle {
        font-size: 1rem;
    }

    .saint-pierre {
        height: auto;
    }

    .saint-pierre .content {
        flex-direction: column;
        display: flex;
        justify-content: center;
    }

    #stPierre {
        position: static;
        width: 500px;
    }

    /* Boutons de contact sous l'image */
    .saint-pierre .contact-buttons {
        position: static;
        margin-bottom: 30px;
    }

    .saint-pierre .title {
        align-items: center;
        margin: 0;
    }

    .saint-pierre .text {
        text-align: center;
    }

    .saint-pierre .content {
        align-items: center;
        margin: 0;
    }

    .saint-pierre .image {
        margin: 0 !important;
        width: auto;
        gap: 30px;
    }

    .sainte-marie {
        height: auto;
    }

    .sainte-marie .container {
        padding-top: 0;
    }

    .sainte-marie .content {
        flex-direction: column;
        display: flex;
        justify-content: center;
    }

    .item:nth-child(1) {
        order: 2;
    }

    .item:nth-child(2) {
        order: 1;
    }

    .sainte-marie .title {
        align-items: center;
        margin: 0;
    }

    .sainte-marie .text {
        text-align: center;
    }

    #steMarie {
        position: static;
        width: 700px;
    }

    .sainte-marie .contact-buttons {
        position: static;
        margin-bottom: 30px;
    }

    .sainte-marie .content {
        align-items: center;
        margin: 0;
    }

    .sainte-marie .image {
        margin: 0 !important;
        width: auto;
        gap: 30px;
    }

    #rouxel {
        width: 300px;
        padding-left: 0;
    }

    .equip-boutique .map {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: auto !important;
        width: auto !important;
        padding-right: 0 !important;
        align-items: center;
    }

    .contact-section {
        height: auto;
    }

    .contact-section .container {
        padding-top: 0;
        height: auto;
    }

    .contact-section .title {
        align-items: center;
        margin: 0;
    }

    .contact-form {
        position: static;
        margin: 0;
    }

    .contact-section .content {
        flex-direction: column;
        display: flex;
        justify-content: center;
    }

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

    .contact-footer {
        flex-direction: column;
    }



        .contact-footer .footer-left,
        .contact-footer .footer-right {
            padding: 0;
        }

    .social-icon {
        width: 4vh;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media screen and (max-width: 1528px) {
    #logoRouxel {
        width: 30rem;
    }

    .hero-content img {
        width: 20rem;
    }

    #googleMap {
        width: 600px;
        height: 500px;
    }

    .equip-boutique .text h2 {
        font-size: 3rem;
    }

    .equip-boutique .text .subtitle {
        font-size: 0.8rem;
    }

    .equip-boutique .text p {
        font-size: 1rem;
    }

    .equip-boutique .btn-outline {
        font-size: 1.2rem;
    }

    .equip-boutique .map {
        flex: 1;
        height: 300px;
        width: 500px;
        padding-right: 200px;
    }

    .saint-pierre .image {
        margin-left: 100px;
    }

    .saint-pierre .title {
        padding: 0;
    }

    .sainte-marie .image {
        margin-right: 75px;
    }

    .sainte-marie .text h2 {
        font-size: 3rem;
    }

    .sainte-marie .text .subtitle {
        font-size: 0.8rem;
    }

    .sainte-marie .text p {
        font-size: 1rem;
    }

    .contact-text h2 {
        font-size: 3rem;
    }

    .contact-text .subtitle {
        font-size: 0.8rem;
    }

    .contact-text p {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1384px) {
    .equip-boutique .map {
        height: 200px;
        width: 400px;
    }
}

@media screen and (max-width: 744px) {
    .navbar {
        gap: 1rem;
    }

    .navbar a {
        font-size: 0.5rem;
        width: 5rem;
    }
   
    .hero {
        height: 90vh;
    }

    .equip-boutique .container {
        padding-top: 2rem;
    }

    .equip-boutique .text {
        align-items: center;
    }

    .equip-boutique .text h2 {
        font-size: 2rem;
    }

    .equip-boutique .text .subtitle {
        font-size: 0.5rem;
    }

    .equip-boutique .text p {
        font-size: 0.8rem;
    }

    .equip-boutique .text .cta {
        width: 80%;
    }

    #steMarie {
        position: static;
        width: 50% !important;
    }

    .sainte-marie .image {
        align-items: center;
    }

    .sainte-marie .contact-phone {
        width: 200px;
    }

    .sainte-marie .contact-email {
        width: 200px;
    }

    #googleMap {
        width: 20rem;
        height: 15rem;
    }

    #stPierre {
        position: static;
        width: 20rem;
    }

    .saint-pierre .image {
        align-items: center;
    }

    .saint-pierre .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .saint-pierre .contact-phone {
        width: 20rem;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    .saint-pierre .contact-email {
        width: 20rem;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    #rouxel {
        width: 200px;
    }

    .saint-pierre .title h2 {
        font-size: 2rem;
    }

    .saint-pierre .text .subtitle {
        font-size: 0.5rem;
    }

    .saint-pierre .text p {
        font-size: 0.8rem;
    }

    .sainte-marie .title h2 {
        font-size: 2rem;
    }

    .sainte-marie .text .subtitle {
        font-size: 0.5rem;
    }

    .sainte-marie .text p {
        font-size: 0.8rem;
    }

    .sainte-marie .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .sainte-marie .contact-phone {
        width: 20rem;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    .sainte-marie .contact-email {
        width: 20rem;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    .contact-section .title h2 {
        font-size: 2rem;
    }

    .contact-section .text .subtitle {
        font-size: 0.5rem;
    }

    .contact-text p {
        font-size: 0.8rem;
    }

    .contact-footer .footer-left {
        font-size: 0.5rem;
    }

    .contact-footer .footer-right {
        font-size: 0.5rem;
    }
}