/* Styles généraux */
:root {
    --primary-color: #f8d7e3; /* Rose pale */
    --secondary-color: #b5c99a; /* Vert sauge */
    --text-color: #333;
    --accent-color: #d32f43; /* Rouge pour les titres principaux */
    --light-bg: #fff9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin: 2rem 0;
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

section {
    padding: 3rem 5%;
}

/* En-tête */
header {
    background-color: var(--primary-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hirondelle-logo {
    height: 40px;
    margin-right: 15px;
}

.brand-name {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-color);
    text-transform: uppercase;
}

/* Bannière héro */
.hero-banner {
    background-color: var(--secondary-color);
    padding: 4rem 5%;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

/* Section À propos */
.about {
    background-color: var(--light-bg);
    padding: 4rem 5%;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1.5;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Section Mon travail */
.work {
    background-color: var(--secondary-color);
    padding: 4rem 5%;
    color: #fff;
    text-align: center;
}

.work-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Section Produits */
.products {
    background-color: var(--light-bg);
    padding: 4rem 5%;
}

.product-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 2rem;
}

.product-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: var(--text-color);
}

.product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.main-product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.product-thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-thumbnails img:hover {
    transform: scale(1.05);
}

.product-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-tagline {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    max-width: 600px;
}

.product-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.product-price {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.add-to-cart-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #9eb280;
}

/* Section FAQ */
.faq {
    background-color: var(--primary-color);
    padding: 4rem 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Section Avis Clients */
.reviews {
    background-color: var(--light-bg);
    padding: 4rem 5%;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    line-height: 1.7;
}

.reviewer-name {
    font-weight: 600;
    text-align: right;
    color: var(--accent-color);
}

/* Section Contact */
.contact {
    background-color: var(--secondary-color);
    padding: 4rem 5%;
    color: #fff;
    text-align: center;
}

.contact-intro {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Pied de page */
footer {
    background-color: var(--primary-color);
    padding: 2rem 5%;
    text-align: center;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 5%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .product-thumbnails img {
        width: 60px;
        height: 60px;
    }
}
