@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Comic+Neue:wght@400;700&display=swap');

/* ==================================== */
/* 1. STYLES GÉNÉRAUX & TYPOGRAPHIE     */
/* ==================================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Comic Neue', cursive;
    background-color: #fffbe6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Luckiest Guy', cursive;
    color: #d94e1f;
    line-height: 1.2;
    margin: 0 0 0.5em 0;
    font-weight: normal;
}

h2 {
    font-size: 2.4em;
}

h3 {
    font-size: 1.5em;
}

a {
    color: #d94e1f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

p { margin: 0 0 1em 0; }

/* ==================================== */
/* 2. NAVIGATION COLLANTE               */
/* ==================================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    background-color: rgba(217, 78, 31, 0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-family: 'Luckiest Guy', cursive;
    color: #fffbe6;
    font-size: 1.5em;
}

.nav-logo:hover { text-decoration: none; }

.nav-links a {
    color: #fffbe6;
    margin-left: 18px;
    font-weight: bold;
    font-size: 1em;
}

.nav-links a:hover { text-decoration: underline; }

.nav-links .nav-cta {
    background-color: #fffbe6;
    color: #d94e1f;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav-links .nav-cta:hover {
    background-color: #fff0d0;
    text-decoration: none;
}

/* ==================================== */
/* 3. HERO                              */
/* ==================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fffbe6;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5em;
    color: #fffbe6;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.4em;
    font-weight: 700;
    max-width: 640px;
    margin: 16px auto 28px auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================================== */
/* 4. BOUTONS                          */
/* ==================================== */

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.btn-primary {
    background-color: #d94e1f;
    color: #fffbe6;
    border-color: #d94e1f;
}

.btn-primary:hover {
    background-color: #c0451a;
    border-color: #c0451a;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 251, 230, 0.15);
    color: #fffbe6;
    border-color: #fffbe6;
}

.btn-secondary:hover {
    background-color: #fffbe6;
    color: #d94e1f;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-light {
    background-color: #fffbe6;
    color: #d94e1f;
    border-color: #fffbe6;
}

.btn-light:hover {
    background-color: #fff0d0;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #fffbe6;
    border-color: #fffbe6;
}

.btn-outline:hover {
    background-color: #fffbe6;
    color: #d94e1f;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==================================== */
/* 5. SECTIONS GÉNÉRIQUES              */
/* ==================================== */

.section {
    padding: 70px 0;
}

.section-alt {
    background-color: #fff0d0;
}

.section-title {
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 12px;
}

.section-intro {
    text-align: center;
    font-size: 1.15em;
    max-width: 720px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* ==================================== */
/* 6. ÉCOUTER (AUDIO)                  */
/* ==================================== */

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.audio-card {
    background-color: #fffbe6;
    border: 2px solid #ffe7b8;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.audio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(217, 78, 31, 0.18);
}

.audio-card h3 {
    font-size: 1.3em;
    margin: 10px 0 16px 0;
}

.audio-card audio {
    width: 100%;
    max-width: 240px;
}

.badge {
    display: inline-block;
    background-color: #d94e1f;
    color: #fffbe6;
    font-size: 0.8em;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.audio-note {
    font-size: 0.9em;
    color: #2e7d32;
    font-weight: bold;
    margin: 12px 0 0 0;
}

/* ==================================== */
/* 7. QUI SOMMES-NOUS                  */
/* ==================================== */

.qui-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.qui-text p {
    font-size: 1.1em;
    line-height: 1.7;
}

.qui-highlight {
    background-color: #d94e1f;
    color: #fffbe6;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(217, 78, 31, 0.3);
}

.qui-highlight h3 {
    color: #fffbe6;
    font-size: 1.4em;
    margin-bottom: 14px;
}

.qui-highlight p {
    font-size: 1.05em;
    line-height: 1.6;
}

.qui-highlight strong {
    color: #ffe7b8;
}

.punchline {
    font-style: italic;
    border-top: 1px solid rgba(255, 251, 230, 0.4);
    padding-top: 14px;
    margin-top: 14px;
}

/* ==================================== */
/* 8. FORMULES (PROGRAMMER)           */
/* ==================================== */

.formules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.formule-card {
    background-color: #fffbe6;
    border: 2px solid #ffe7b8;
    border-radius: 12px;
    padding: 26px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.formule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.formule-card h3 {
    font-size: 1.4em;
    margin: 8px 0 4px 0;
}

.formule-tag {
    color: #d94e1f;
    font-weight: bold;
    font-size: 0.95em;
    margin-bottom: 14px;
}

.formule-icon {
    font-size: 2.2em;
}

.formule-cta {
    background-color: #d94e1f;
    color: #fffbe6;
    border-color: #d94e1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.formule-cta h3 { color: #fffbe6; }
.formule-cta p { color: #fffbe6; }

/* ==================================== */
/* 9. DATES                            */
/* ==================================== */

.dates-avenir {
    background-color: #fffbe6;
    border: 2px solid #d94e1f;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 50px;
    box-shadow: 0 4px 14px rgba(217, 78, 31, 0.15);
}

.dates-heading {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dates-list li {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(217, 78, 31, 0.25);
    align-items: baseline;
}

.dates-list li:last-child { border-bottom: none; }

.dates-list time {
    font-weight: bold;
    color: #d94e1f;
    min-width: 140px;
    flex-shrink: 0;
}

.dates-note {
    text-align: center;
    margin: 18px 0 0 0;
    font-size: 1.05em;
}

.dates-year h4 {
    font-size: 1.8em;
    color: #d94e1f;
    border-bottom: 3px solid #d94e1f;
    padding-bottom: 8px;
    margin-top: 36px;
}

.dates-recurring {
    background-color: #fffbe6;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
}

/* ==================================== */
/* 10. GALERIE                         */
/* ==================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.grid img:hover { transform: scale(1.03); }

.grid-videos {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 16px;
}

.grid video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sep {
    border: none;
    border-top: 2px solid #ffe7b8;
    margin: 30px 0;
}

/* ==================================== */
/* 11. FOOTER                          */
/* ==================================== */

footer {
    background-color: #d94e1f;
    color: #fffbe6;
    text-align: center;
    padding: 60px 0 30px 0;
}

footer h2 {
    color: #fffbe6;
    font-size: 2em;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 1.15em;
    margin-bottom: 28px;
}

.footer-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-copy {
    font-size: 0.9em;
    opacity: 0.8;
    margin: 0;
}

/* ==================================== */
/* 12. RESPONSIVE                     */
/* ==================================== */

@media (max-width: 768px) {
    h2 { font-size: 1.8em; }
    .section-title { font-size: 1.8em; }
    .hero-content h1 { font-size: 3.2em; }
    .hero-sub { font-size: 1.15em; }

    .nav {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px;
    }
    .nav-links a { margin: 0 8px; font-size: 0.95em; }

    .qui-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dates-list li {
        flex-direction: column;
        gap: 2px;
    }
    .dates-list time { min-width: 0; }

    .section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; }
}
