/* =========================
   RESET & BASE
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f7f7;
    color: #1f1f1f;
    line-height: 1.6;
}

/* =========================
   HEADER / LOGO
========================= */
header {
    background-color: #b30000; /* rouge Anthocyane */
    padding: 20px 30px;        /* réduit la hauteur */
    text-align: center;
    display: flex;
    justify-content: center;   /* centre horizontalement */
    align-items: center;       /* centre verticalement */
}

header img.logo {
    max-width: 380px; /* taille maximale du logo */
    width: auto;      /* garde les proportions réelles */
    height: auto;
    display: block;
}

/* Responsive pour petits écrans */
@media (max-width: 600px) {
    header {
        padding: 8px 15px;
    }

    header img.logo {
        max-width: 70px;
    }
}

/* =========================
   NAVIGATION
========================= */
nav {
    background-color: #111111;
    padding: 14px;
    text-align: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 16px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav a:hover {
    opacity: 0.75;
}

/* =========================
   LAYOUT / CONTAINER
========================= */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 45px 30px;
    background: #ffffff;
    text-align: center; /* centre le texte */
}

/* =========================
   TITRES & TEXTES
========================= */
h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #b30000;
}

h2 {
    font-size: 60px;
    margin-bottom: 10px;
    color: #b30000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px; /* espace entre logo et nom */
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #b30000;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================
   BOUTONS / LIENS PDF
========================= */
a.button, .btn {
    display: inline-block;
    background-color: #b30000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: opacity 0.3s ease;
}

a.button:hover, .btn:hover {
    opacity: 0.8;
}

/* =========================
   PRODUCTEURS / LOGOS
========================= */
.producteur {
    margin-bottom: 40px;
    text-align: left;
}

.producteur h2 {
    display: flex;
    align-items: center;    
    justify-content: flex-start; 
    gap: 50px;              
    font-size: 40px;        
    font-weight: 600;       
    margin-bottom: 10px;
}

.producteur h2 a {
    color: #000000;  
    text-decoration: none;
}

.domaine-logo {
    width: 200px;
    height: auto;           
    border-radius: 5px;
    display: block;
}

.producteur p {
    text-align: justify;   
    line-height: 1.6;     
    margin-bottom: 15px;   
}

@media (max-width: 600px) {
    .producteur h2 {
        font-size: 16px;
    }
    .domaine-logo {
        width: 70px;
    }
    .producteur p {
        text-align: left;
    }
}


/* =========================
   FORMULAIRES
========================= */
/* =========================
   CONTACT / FORMULAIRE CENTRÉ
========================= */
.contact-wrapper {
    display: flex;
    justify-content: center; /* centre horizontalement */
    flex-wrap: wrap;         /* permet de rester responsive sur mobile */
    margin-bottom: 40px;     /* espace avant l’équipe */
}

.contact-form {
    max-width: 500px; /* largeur fixe pour le formulaire */
    width: 100%;
}

/* Styles des champs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form .btn {
    background-color: #b30000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .btn:hover {
    opacity: 0.8;
}

/* ÉQUIPE / COORDONNÉES SOUS LE FORMULAIRE */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto; /* centré avec espace en bas */
}

.contact-info h2 {
    color: #b30000;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-wrapper {
        justify-content: center; /* centre toujours sur mobile */
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-info {
        max-width: 100%;
        margin: 20px auto;
    }
}

/* =========================
   SAQ LINK
========================= */
.saq-link {
    text-al
   }

