<link rel="stylesheet" href="style.css">
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-presentation {
    background-image: url("camargue.png");
}

.hero-prestations {
    background-image: url("camargue.png");
}



.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
}


/* BUTTONS (MAIL + TÉLÉPHONE) */
.btn {
    background: #c8a35d;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;   /* permet d’empiler plusieurs boutons */
    margin: 10px 0;          /* espace entre mail et téléphone */
}

.btn:hover {
    background: #b08e4d;
}

/* SECTIONS */
section {
    padding: 80px 15%;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.diaporama {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 40px auto;
}

.item {
    text-align: center;
}

.diaporama .item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}


.item p {
    margin-top: 10px;
    font-size: 15px;
}

/* RESPONSIVE DIAPORAMA */
@media (max-width: 768px) {
    .diaporama {
        grid-template-columns: 1fr;
    }
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* ZONE */
.zone {
    background: #f7f7f7;
}

/* CONTACT */
.contact {
    background: #222;
    color: white;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #111;
    color: #aaa;
}

/* ICÔNES SOCIALES */
.social-icons svg.icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

/* Hover uniquement pour l'agrandissement */
.social-icons svg.icon:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* Couleurs spécifiques par réseau */
.social-icons a.facebook svg.icon path {
    fill: #4267B2;  /* bleu Facebook */
}

.social-icons a.instagram svg.icon path {
    fill: #C13584;  /* rose Instagram */
}




/* RESPONSIVE */
@media (max-width: 768px) {
    section {
        padding: 60px 8%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .social-icons .icon {
        width: 28px;
        height: 28px;
    }
}

/* ===== Reset de base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* ===== Menu Hamburger ===== */
.navbar {
    background-color: #333; /* couleur menu */
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

.menu-icon {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: block;
}

#menu-toggle {
    display: none;
}

.menu {
    list-style: none;
    display: none;
    flex-direction: column;
    margin-top: 10px;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #f0a500; /* couleur survol */
}

/* Afficher le menu quand le checkbox est coché */
#menu-toggle:checked + .menu-icon + .menu {
    display: flex;
}

/* ===== Desktop ===== */
@media (min-width: 768px) {
    .menu-icon {
        display: none;
    }
    .menu {
        display: flex;
        flex-direction: row;
        margin-top: 0;
    }
    .menu li {
        margin: 0 15px;
    }
}

/* ===== Sections & boutons ===== */
.hero1 {
    height: 80vh;
    background: url('camargue.jpg') center/cover no-repeat;
    position: relative;
    color: white;
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d18b00;
}

/* ===== Centrer tout le texte dans main et section ===== */
main, main * {
    text-align: center;
}

section, section * {
    text-align: center;
}

.image-container img {
    width: 300px !important;        /* image plus petite */
    height: auto;
    display: block;
    margin: 20px auto;   /* centrer l'image */
    border-radius: 20px; /* coins arrondis */
    box-shadow: 0
}





