/* ============================================================
   RÉINVENTONS TREMBLAY – Styles Frontend
   ============================================================ */

.wp-campaign {
    --primary-burgundy: #7a2e39;
    --dark-burgundy: #581c25;
    --accent-olive: #6e704e;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-paper: #fcfbf9;
    --font-serif: Georgia, 'Times New Roman', Times, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-paper);
}

.wp-campaign * { box-sizing: border-box; }
.wp-campaign a { text-decoration: none; color: inherit; transition: color 0.3s; }
.wp-campaign ul { list-style: none; padding: 0; margin: 0; }
.wp-campaign img { max-width: 100%; height: auto; display: block; }

.wp-campaign .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wp-campaign h1,
.wp-campaign h2,
.wp-campaign h3 {
    font-family: var(--font-serif);
    color: var(--primary-burgundy);
}

.wp-campaign .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-family: var(--font-serif);
    color: var(--primary-burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wp-campaign .section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background-color: var(--primary-burgundy);
}

.wp-campaign .btn-primary {
    display: inline-block;
    background-color: var(--primary-burgundy);
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid var(--primary-burgundy);
    transition: all 0.3s;
}
.wp-campaign .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-burgundy);
}

/* ===== HERO ===== */
.wp-campaign .hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding-bottom: 80px;
}
.wp-campaign .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}
.wp-campaign .hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.wp-campaign .hero h2 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.wp-campaign .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.wp-campaign .btn-hero {
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.wp-campaign .btn-hero:hover { background: rgba(255,255,255,0.25); }
.wp-campaign .btn-hero.primary { background: #fff; color: var(--primary-burgundy); }
.wp-campaign .btn-hero.primary:hover { background: transparent; color: #fff; }

/* Amel photo */
.hero-amel-photo {
    position: absolute;
    bottom: 0; left: 50px;
    width: 250px;
    z-index: 10;
    transform: translateY(10%);
}
@media (max-width: 768px) {
    .hero-amel-photo { width: 150px; left: 20px; transform: translateY(0); }
}

/* ===== STATS ===== */
.wp-campaign .stats-bar {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}
.wp-campaign .stats-title {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 10px;
    font-family: var(--font-serif);
    text-transform: uppercase;
}
.wp-campaign .stats-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}
.wp-campaign .stats-grid-visual {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    text-align: left;
}
.wp-campaign .stats-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp-campaign .stats-list li .icon {
    color: var(--accent-olive);
    font-size: 1.2rem;
}

/* Meeting gallery */
.wp-campaign .meeting-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 300px;
}
.wp-campaign .gallery-item {
    background: #ddd;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.wp-campaign .gallery-item.main { grid-row: span 2; }

/* Video responsive */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ===== QUOTES ===== */
.wp-campaign .quotes-section {
    padding: 60px 0;
    background: var(--bg-paper);
}
.wp-campaign .quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wp-campaign .quote-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0d0c8;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.wp-campaign .quote-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--accent-olive);
    position: absolute;
    top: -10px; left: 15px;
    opacity: 0.3;
}
.wp-campaign .quote-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    z-index: 1;
}
.wp-campaign .quote-author {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
    display: block;
}

/* ===== PRIORITIES STRIP (team section) ===== */
.wp-campaign .priorities-strip {
    text-align: center;
    padding: 0 0 60px;
    background: #fff;
}
.wp-campaign .priorities-faces {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.wp-campaign .face-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
}

/* ===== NEWS STRIP ===== */
.wp-campaign .campaign-news-strip {
    background: var(--primary-burgundy);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.wp-campaign .campaign-news-strip h2 { color: #fff; margin: 0; }

/* ===== FOOTER ===== */
.wp-campaign .main-footer {
    background: var(--primary-burgundy);
    color: #e0d0c8;
    padding: 60px 0 30px;
    font-size: 0.8rem;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .wp-campaign h1 { font-size: 2rem !important; }
    .wp-campaign h2 { font-size: 1.5rem !important; }

    .wp-campaign .hero { height: auto; min-height: 500px; padding: 60px 20px; }
    .wp-campaign .hero-buttons { flex-direction: column; gap: 15px; }
    .wp-campaign .btn-hero { width: 100%; text-align: center; }

    .wp-campaign .stats-grid-visual { grid-template-columns: 1fr; gap: 30px; }
    .wp-campaign .meeting-gallery {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .wp-campaign .gallery-item { height: 200px; }
    .wp-campaign .gallery-item.main { grid-row: auto; grid-column: span 2; }

    .wp-campaign .quotes-grid { grid-template-columns: 1fr; gap: 40px; }
    .wp-campaign .video-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .wp-campaign .meeting-gallery { grid-template-columns: 1fr; }
    .wp-campaign .gallery-item.main { grid-column: span 1; }
}
