@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

/* Reset et font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

/* Body */
body {
    padding-top: 80px;
    background-color: #f2f2f2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 15px 0;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Barre de recherche */
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.search-input {
    width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ff7e5f;
    border-radius: 8px 0 0 8px;
}

.search-button {
    padding: 10px 20px;
    background: #ff7e5f;
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
}

.search-button:hover {
    background: #feb47b;
}

/* Résultats produits */
.results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
    align-items: center;
}

/* Carte produit */
.card {
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
    width: 100%;
    max-width: 400px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card h3 {
    color: #ff7e5f;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #333;
}

/* Image produit */
.fruit-image {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: #0f0f0f;
    color: #dcdcdc;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-links a,
.social-icons a {
    color: #aaaaaa;
    text-decoration: none;
}

.footer-links a:hover,
.social-icons a:hover {
    color: white;
}

/* À propos - main amélioré */
.about-container {
    max-width: 900px;
    margin: auto;
    padding: 100px 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-container section {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-container section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-container h1,
.about-container h2 {
    color: #ff7e5f;
    margin-bottom: 15px;
}

.about-container p {
    color: #333;
    line-height: 1.7;
}

.about-container a {
    color: #ff7e5f;
    font-weight: 600;
}

.about-container a:hover {
    text-decoration: underline;
}
