
/* ==========================================
   STYLES PAGE À PROPOS - CaroPastry
   ========================================== */

/* Variables CSS identiques aux autres pages */
:root {
    --primary-color: #D2B48C;
    --secondary-color: #8B4513;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --beige: #F5F2E8;
    --shadow: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 90px;
}

/* ==========================================
   SECTION HERO
   ========================================== */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?ixlib=rb-4.0.3&auto=format&fit=crop&w=1989&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* ==========================================
   SECTION PHOTO CAROLINE
   ========================================== */
.photo-section {
    padding: 80px 20px;
    background: var(--white);
}

.photo-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.photo-placeholder {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.photo-caroline {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================
   SECTION PRÉSENTATION
   ========================================== */
.presentation-section {
    padding: 80px 20px;
    background: var(--beige);
}

.presentation-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.presentation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.presentation-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.presentation-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.presentation-text p {
    margin-bottom: 20px;
}

.presentation-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.presentation-highlight {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

/* ==========================================
   SECTION VALEURS (4 images côte à côte)
   ========================================== */
.valeurs-section {
    padding: 80px 20px;
    background: var(--white);
}

.valeurs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.valeur-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.valeur-item:hover {
    transform: translateY(-10px);
}

.valeur-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.valeur-image:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.valeur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.valeur-item:hover .valeur-image img {
    transform: scale(1.1);
}

.valeur-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .valeurs-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .presentation-title {
        font-size: 2rem;
    }

    .presentation-text {
        font-size: 1.1rem;
    }

    .valeurs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-section,
    .presentation-section,
    .valeurs-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .presentation-title {
        font-size: 1.8rem;
    }

    .presentation-highlight {
        font-size: 1.2rem;
    }

    .valeur-title {
        font-size: 1.1rem;
    }

    .photo-section,
    .presentation-section,
    .valeurs-section {
        padding: 40px 15px;
    }
}