/* Styles généraux */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Titres */
h1, h2, h3 {
    color: #2c6e49;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff7f11;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #e56b00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff7f11;
}

/* Hero */
.hero {
    background: url('images/hero.jpg') no-repeat center/cover;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* Présentation */
.presentation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #ff7f11, #2c6e49);
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.presentation .text {
    width: 50%;
}

.presentation .image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Produits */
.produits {
    padding: 50px 0;
}

.produits .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 0;
    transition: transform 0.3s ease;
}

.produit img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.produit h3 {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

/* Animation au survol des produits */
.produit:hover img {
    transform: scale(1.05);
}

/* Commande */
.commande {
    background: #ffedd5;
    text-align: center;
    padding: 50px 0;
    border-top: 5px solid #ff7f11;
    margin-top: 60px;
}

/* Contact */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #ff7f11;
    outline: none;
}

button {
    background: #ff7f11;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    background: #e56b00;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c6e49;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

#reseaux-sociaux {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4; /* Un fond doux pour le contraste */
}

#reseaux-sociaux h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

#reseaux-sociaux p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Pour que ça s'adapte à l'écran */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
    padding: 10px;
}

.social-link img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-link span {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}
