/*
Theme Name: Echappee Blank
Description: Theme pour L Echappee Bleue
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bleu-marine: #1e3a5f;
    --bleu-clair: #6db3f2;
    --sable: #f5e6d3;
    --gris-clair: #f8f9fa;
    --or: #c9a227;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--bleu-marine);
}

.wp-site-blocks, .entry-content, .wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

.section-white { background: white; padding: 60px 20px; }
.section-gris { background: var(--gris-clair); padding: 60px 20px; }
.section-sable { background: var(--sable); padding: 60px 20px; }
.section-bleu { background: var(--bleu-marine); padding: 60px 20px; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-header p { color: #666; font-size: 1rem; }

.offres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.offre-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.offre-card:hover { transform: translateY(-5px); }
.offre-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.offre-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--bleu-marine); }
.offre-card p { font-size: 0.85rem; color: #666; }

.equipage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.equipage-member { text-align: center; }
.equipage-member img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.equipage-member h3 { font-size: 1.3rem; margin-bottom: 5px; margin-top: 15px; }
.equipage-member .role { font-style: italic; color: var(--bleu-marine); font-size: 0.9rem; margin-bottom: 12px; }
.equipage-member .bio { font-size: 0.85rem; color: #555; line-height: 1.6; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.stat-item .number { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--bleu-marine); }
.stat-item .label { font-size: 0.85rem; color: #666; margin-top: 5px; }

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.split-content img { width: 100%; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.split-content h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3; }
.split-content p { color: #555; margin-bottom: 25px; line-height: 1.8; }

.btn-marine {
    display: inline-block;
    background: var(--bleu-marine);
    color: white !important;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-marine:hover { background: #2a4a73; transform: translateY(-2px); }

.btn-white-outline {
    display: inline-block;
    background: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-white-outline:hover { background: white; color: var(--bleu-marine) !important; }

.testimonial-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-card .stars { color: var(--or); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-card blockquote { font-style: italic; line-height: 1.7; color: #444; margin-bottom: 15px; }
.testimonial-card .author { font-size: 0.9rem; color: #666; }

.section-bleu h2 { color: white; }
.section-bleu p { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }

.location-bar {
    background: var(--bleu-marine);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.video-container iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.video-caption { text-align: center; margin-top: 20px; font-style: italic; color: #666; }

.site-footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; }
.footer-col .logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; margin-bottom: 10px; }
.footer-col .logo span { color: var(--bleu-clair); }
.footer-col p, .footer-col a { font-size: 0.85rem; color: #999; text-decoration: none; line-height: 2; display: block; }
.footer-col a:hover { color: white; }

.footer-bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; }
.footer-bottom a { color: #999; margin: 0 10px; }

@media (max-width: 992px) {
    .offres-grid { grid-template-columns: repeat(2, 1fr); }
    .split-content { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .equipage-grid { grid-template-columns: 1fr; }
    .offres-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
