/* Importation de la police Inter et Playfair Display pour les titres */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;700;900&display=swap');

/* Définition des variables CSS pour les couleurs */
:root {
    --primary-color: #8D5AD5; /* Violet vibrant */
    --secondary-color: #FF70A6; /* Rose vif */
    --accent-color-light: #F8F2FF; /* Violet très clair */
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --background-light: #FDF7FA;
    --background-lighter: #E6F3F5;
    --border-color: #eee;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

/* Styles de base et polices */
html, body {
    width: 100%;
    overflow-x: hidden; /* Empêche le défilement horizontal */
    scroll-behavior: smooth; /* Défilement doux */
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom right, var(--background-light), var(--background-lighter)); /* Fond dégradé plus doux */
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Conteneur principal */
.container {
    max-width: 1300px; /* Plus étiré sur grands écrans */
    margin: 0 auto;
    padding: 1rem 3rem; /* Plus de padding horizontal pour aérer */
}

/* Header */
header {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); /* Dégradé rose-violet plus vibrant */
    color: white;
    padding: 0.6rem 0; /* Réduit le padding vertical */
    box-shadow: 0 4px 12px var(--shadow-heavy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    cursor: pointer;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Réduit l'espacement */
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem; /* Réduit la taille de la police */
}

header nav button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.3rem 0.7rem; /* Réduit le padding des boutons */
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Réduit l'espacement avec l'icône */
    font-weight: 600;
    position: relative;
    outline: none; /* Supprime l'outline au focus */
}

header nav button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
header nav button.active {
    background-color: rgba(255, 255, 255, 0.35); /* Un peu plus opaque pour le bouton actif */
    box-shadow: inset 0 2px 5px var(--shadow-heavy);
}


.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4d4d;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 0.6s infinite alternate;
}

/* Main Content */
main {
    flex-grow: 1;
    padding: 3.5rem 0; /* Padding vertical plus généreux */
}

section {
    background-color: white;
    padding: 3rem; /* Plus de padding pour aérer */
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 3.5rem; /* Plus d'espace entre les sections */
    width: 100%;
    box-sizing: border-box; /* Inclut padding et border dans la largeur */
}

h2 {
    font-size: 3.2rem; /* Légère augmentation */
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.8rem; /* Plus d'espace */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h3 {
    font-size: 2.2rem; /* Légère augmentation */
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Hero Section (Accueil) */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Légèrement plus haut */
    background-image: url('images/image.png'); /* REMPLACE CECI PAR LE CHEMIN DE TON IMAGE LOCALE */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Un peu plus opaque pour le contraste */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centrage horizontal des éléments enfants */
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center; /* Assure que le texte à l'intérieur des blocs est centré */
}

.hero-overlay h2 {
    font-size: 4rem; /* Légère augmentation */
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
    animation: fade-in-down 1s ease-out forwards;
    width: 100%; /* S'assure qu'il prend toute la largeur pour centrer le texte */
}

.hero-overlay p {
    font-size: 1.6rem; /* Légère augmentation */
    max-width: 800px; /* Permet au texte de s'étirer un peu plus */
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fade-in-up 1s ease-out forwards 0.3s;
    opacity: 0; /* Initial state for animation */
    width: 100%; /* S'assure qu'il prend toute la largeur pour centrer le texte */
}

.hero-overlay button {
    background-color: white;
    color: var(--secondary-color); /* Couleur du texte ajustée au nouveau rose */
    padding: 1.2rem 2.8rem;
    font-size: 1.35rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--shadow-heavy);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fade-in-up 1s ease-out forwards 0.6s;
    opacity: 0; /* Initial state for animation */
    margin: 0 auto; /* Centrage explicite du bouton */
}

.hero-overlay button:hover {
    background-color: #f5f5f5;
    transform: translateY(-5px) scale(1.02);
}

/* Why Choose Us Section */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-choose-us-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--accent-color-light); /* Violet très pâle pour le fond */
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-medium);
}

.why-choose-us-item svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color); /* Violet plus vibrant */
    margin-bottom: 1rem;
    animation: bounce-slow 2s infinite ease-in-out;
}

.why-choose-us-item h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.why-choose-us-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #E6F3F5; /* Bleu-vert très pâle */
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-medium);
}

.value-item svg {
    width: 50px;
    height: 50px;
    color: #4CAF50; /* Vert pour la nature */
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #FFF9F2; /* Crème très pâle */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    font-style: italic;
    color: var(--text-medium);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.testimonial-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card .testimonial-author {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* Services Page */
.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-filters button {
    background-color: #f0f0f0;
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px var(--shadow-light);
}

.service-filters button.active {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: 0 5px 15px var(--shadow-heavy);
    transform: translateY(-3px);
}

.service-filters button:not(.active):hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-heavy);
    border-color: var(--secondary-color);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.service-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-align: left;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color); /* Violet */
    margin-top: auto;
    margin-bottom: 1rem;
}

.service-card button {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-heavy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Cart Page */
.cart-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
    animation: fade-in-right 0.5s ease-out forwards;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1rem;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    text-align: left;
}

.cart-item-details p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 0.25rem 0.5rem;
    background-color: #f9f9f9;
}

.quantity-control button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    color: var(--primary-color);
    transition: color 0.2s ease, transform 0.2s ease;
}

.quantity-control button:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.quantity-control span {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0.5rem;
    color: var(--text-medium);
}

.cart-item-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 90px;
    text-align: right;
}

.remove-item-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff4d4d;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.remove-item-btn:hover {
    background-color: #ffe6e6;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.cart-total span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-total .total-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.checkout-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 8px 20px var(--shadow-heavy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: pulse-btn 1.5s infinite ease-in-out;
}

.checkout-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.empty-cart-message {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    max-width: 500px;
    margin: 2rem auto;
}
.empty-cart-message svg {
    color: #ccc;
    margin-bottom: 1rem;
}
.empty-cart-message p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.empty-cart-message button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.empty-cart-message button:hover {
    background-color: #724FB9;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    background-color: var(--accent-color-light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background-color: #FFEFF5;
}

.contact-info-item svg {
    color: var(--secondary-color);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(141, 90, 213, 0.3);
}

.contact-form button {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow-heavy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #ccc;
    padding: 2.5rem 0;
    text-align: center;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-top: auto;
}

footer p, footer a {
    margin-bottom: 0.5rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer .social-links a {
    margin: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
footer .social-links a svg {
    color: var(--secondary-color);
}

/* Message Modal (pour remplacer alert()) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.modal-content button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #724FB9;
}

/* Animations */
@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes fade-in-right {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
@keyframes pulse-add {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    header h1 {
        margin-bottom: 0.8rem;
        font-size: 1.6rem; /* Plus petit sur mobile */
    }
    header nav ul {
        gap: 0.6rem;
        justify-content: center;
    }
    header nav button {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }
    .hero-overlay p {
        font-size: 1rem;
    }
    .hero-overlay button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
    .service-card .price {
        font-size: 1.5rem;
    }
    .service-card button {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-details {
        margin-bottom: 0.5rem;
    }
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    .cart-item-price {
        min-width: unset;
        text-align: left;
    }
    .checkout-btn {
        font-size: 1.1rem;
        padding: 0.7rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-info-item svg {
        margin-bottom: 0.5rem;
    }

    .container {
        padding: 1rem 1.5rem; /* Ajuste le padding pour mobile */
    }
    section {
        padding: 1.8rem; /* Ajuste le padding des sections */
    }
}

@media (max-width: 480px) {
    header nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    header nav button {
        width: 80%;
        justify-content: center;
    }
    .container {
        padding: 0.5rem 1rem;
    }
    section {
        padding: 1.2rem;
    }
}
