/* ============================================
   BRISER LE SILENCE — Dark Theme Stylesheet
   Matching Canva design: white circle logo + white hero card
   ============================================ */

:root {
    --bg-dark: #2D2D5E;
    --bg-darker: #232350;
    --bg-light: #F7F3EF;
    --bg-white: #FFFFFF;
    --coral: #E8605C;
    --coral-hover: #D04E4A;
    --coral-light: #F28B7D;
    --navy: #1B365D;
    --text-white: #FFFFFF;
    --text-muted: rgba(255,255,255,0.65);
    --text-dark: #2D2D5E;
    --text-dark-muted: #5A6B7F;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Patrick Hand', cursive;
    color: var(--text-white);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

h1, h2, h3, h4 {
    font-family: 'Patrick Hand', cursive;
    font-weight: 400;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Fade-in --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Buttons --- */
.btn-coral {
    display: inline-block;
    padding: 11px 30px;
    background: var(--coral);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Patrick Hand', cursive;
    font-size: 1.02rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-coral:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,96,92,0.25);
}

/* ============================================
   NAVBAR — design: big white circle logo, nav links, lang toggle
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: var(--bg-dark);
    transition: box-shadow 0.3s ease;
}
.navbar__inner {
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
}
.navbar__logo {
    flex-shrink: 0;
    margin-right: 32px;
    position: relative;
    z-index: 1002;
}
.navbar__logo-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    position: relative;
    top: 5px;
}
.navbar__logo-circle img {
    height: 50px;
    width: auto;
}
.navbar__links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex: 1;
}
.navbar__links a {
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color var(--transition);
    white-space: nowrap;
}
.navbar__links a:hover,
.navbar__links a.active {
    color: #fff;
}
.lang-toggle {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-pill);
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 32px;
}
.lang-toggle a {
    padding: 5px 13px;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.lang-toggle a.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.navbar__hamburger span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO — white rounded card on dark bg
   ============================================ */
.hero {
    background: var(--bg-dark);
    padding: 110px 0 55px;
}
.hero .container {
    display: flex;
    justify-content: center;
}
.hero__card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 55px 70px 50px;
    text-align: center;
    width: 100%;
    max-width: 860px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.hero__briser {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--coral);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.hero__silence {
    font-family: 'Patrick Hand', cursive;
    font-size: 5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 7px;
    line-height: 1;
    margin-bottom: 16px;
}
.hero__subtitle {
    color: var(--text-dark-muted);
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    font-style: italic;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--bg-dark);
    padding: 50px 0 65px;
}
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about__content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
    background: var(--bg-darker);
    padding: 60px 0;
}
.testimonial__content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.testimonial__quote {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    font-style: italic;
}
.testimonial__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.testimonial__dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.6;
}

/* ============================================
   STATS DONUTS
   ============================================ */
.stats-donuts {
    background: var(--bg-dark);
    padding: 50px 0 30px;
}
.stats-donuts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 650px;
    margin: 0 auto;
}
.donut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.donut-svg { width: 140px; height: 140px; margin-bottom: 14px; }
.donut-bg { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 14; }
.donut-fill {
    fill: none; stroke-width: 14; stroke-linecap: round;
    transform: rotate(-90deg); transform-origin: center;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.22,1,0.36,1);
}
.donut-text {
    fill: #fff;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.9rem;
    dominant-baseline: central;
    text-anchor: middle;
}
.donut-card p { color: var(--text-muted); font-size: 0.9rem; max-width: 190px; line-height: 1.5; }

/* ============================================
   STATS TEXT
   ============================================ */
.stats-text {
    background: var(--bg-darker);
    padding: 45px 0 55px;
}
.stats-text__content { max-width: 820px; margin: 0 auto; text-align: center; }
.stats-text__title {
    font-size: 1.25rem; color: #fff;
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 22px; line-height: 1.4;
}
.stats-text__content > p {
    color: var(--text-muted); font-size: 1.02rem;
    margin-bottom: 12px; line-height: 1.7;
}
.stats-text__highlight {
    font-size: 1.2rem; color: var(--text-muted);
    margin-top: 22px; margin-bottom: 28px;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.stats-text__highlight .stat-num {
    color: var(--coral); font-size: 2rem; font-weight: 700;
}
.stats-text__social { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.85rem;
    transition: all var(--transition);
}
.social-icon:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

/* ============================================
   SESSIONS — light section
   ============================================ */
.sessions {
    background: var(--bg-light);
    padding: 65px 0 75px;
}
.sessions__title { font-size: 1.9rem; color: var(--text-dark); text-align: center; margin-bottom: 12px; }
.sessions__title .highlight { color: var(--coral); }
.sessions__subtitle {
    text-align: center; color: var(--text-dark-muted);
    font-size: 0.95rem; max-width: 580px;
    margin: 0 auto 42px; line-height: 1.6;
}
.sessions__subtitle .underline {
    text-decoration: underline; text-underline-offset: 3px;
    text-decoration-color: var(--coral);
}
.sessions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.session-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 24px 20px; border-left: 4px solid var(--coral);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column; gap: 5px;
}
.session-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.session-card__badge {
    display: inline-block; align-self: flex-start;
    background: #E8F5E9; color: #2E7D32;
    padding: 2px 10px; border-radius: var(--radius-pill);
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.session-card__day { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.session-card__time { color: var(--text-dark-muted); font-size: 0.95rem; margin-bottom: 10px; }
.session-card .btn-coral { align-self: flex-start; padding: 9px 22px; font-size: 0.9rem; margin-top: auto; }

/* ============================================
   LISTENING
   ============================================ */
.listening { background: var(--bg-dark); padding: 65px 0; }
.listening__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.listening__left h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; line-height: 1.15; }
.listening__left > p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.listening__illustration { margin-top: 30px; }
.listening__circle {
    width: 180px; height: 180px;
    display: flex; align-items: center; justify-content: center;
}
.listening__right { text-align: right; }
.listening__number {
    display: block; font-size: 2.4rem;
    color: var(--coral); font-weight: 700;
    margin-bottom: 6px; transition: opacity var(--transition);
}
.listening__number:hover { opacity: 0.8; }
.listening__message { color: var(--text-muted); font-style: italic; font-size: 1rem; margin-top: 18px; line-height: 1.6; }

/* ============================================
   ORIGIN — light section
   ============================================ */
.origin { background: var(--bg-light); padding: 60px 0 65px; }
.origin__inner {
    display: grid; grid-template-columns: 1fr auto;
    gap: 50px; max-width: 850px; margin: 0 auto; align-items: start;
}
.origin__text h2 { font-size: 1.9rem; color: var(--text-dark); margin-bottom: 18px; }
.origin__text h2 .highlight { font-size: 2.1rem; font-weight: 700; }
.origin__text p { color: var(--text-dark-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
.origin__text .meaning-italic { color: var(--coral); font-style: italic; }
.origin__text .list-intro { font-weight: 700; color: var(--text-dark); margin-top: 10px; }
.origin__list { list-style: none; margin-top: 8px; }
.origin__list li { padding: 3px 0; color: var(--text-dark-muted); font-size: 1rem; }
.origin__list li .chevron { color: var(--coral); font-weight: 700; margin-right: 6px; }
.origin__brand { text-align: center; padding-top: 10px; }
.origin__brand img { width: 55px; margin: 0 auto 8px; }
.origin__brand-briser {
    font-family: 'Caveat', cursive; font-weight: 700;
    color: var(--coral); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 3px;
}
.origin__brand-silence {
    font-family: 'Patrick Hand', cursive;
    color: var(--navy); font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 3px; line-height: 1.1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg-dark); padding: 65px 0 75px; }
.contact__title { text-align: center; font-size: 1.9rem; color: #fff; margin-bottom: 42px; }
.contact__inner {
    display: grid; grid-template-columns: 1fr auto; gap: 50px;
    align-items: start; max-width: 880px; margin: 0 auto;
}
.contact__form { max-width: 540px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; color: var(--text-muted); font-size: 0.92rem; }
.form-group input,
.form-group textarea {
    width: 100%; padding: 12px 15px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem; color: #fff; outline: none;
    transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--coral); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact__form .btn-coral { width: 100%; padding: 13px; font-size: 1.02rem; }
.contact__aside { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.contact__aside img { width: 150px; border-radius: 10px; }
.contact__aside .limited { color: var(--text-muted); font-size: 0.9rem; }
.contact__aside .email-link { color: var(--coral); font-size: 1rem; }

/* Flash messages */
.flash { padding: 13px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 0.92rem; }
.flash--success { background: rgba(46,125,50,0.12); color: #6BBF8A; border: 1px solid rgba(46,125,50,0.25); }
.flash--error { background: rgba(232,96,92,0.12); color: var(--coral-light); border: 1px solid rgba(232,96,92,0.25); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-darker); }
.footer__gradient { height: 3px; background: linear-gradient(90deg, var(--coral), var(--bg-darker) 50%, var(--coral)); }
.footer__inner { padding: 44px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand img { height: 42px; width: 42px; object-fit: contain; }
.footer__brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.footer__col h4 { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 12px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 7px; }
.footer__col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--coral); }
.footer__numbers { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); }
.footer__numbers a { color: var(--text-muted); display: block; margin-bottom: 3px; }
.footer__numbers a:hover { color: var(--coral); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px; text-align: center;
    color: var(--text-muted); font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .navbar__links {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--bg-darker);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 24px; transform: translateX(100%);
        transition: transform 0.4s ease; z-index: 999;
    }
    .navbar__links.open { transform: translateX(0); }
    .navbar__links a { font-size: 1.3rem; color: #fff; }
    .navbar__hamburger { display: flex; }
    .lang-toggle { margin-left: auto; margin-right: 12px; }

    .hero { padding: 100px 0 40px; }
    .hero__card { padding: 42px 36px 38px; }
    .hero__silence { font-size: 3.4rem; letter-spacing: 5px; }
    .hero__briser { font-size: 2rem; letter-spacing: 4px; }

    .sessions__grid { grid-template-columns: repeat(2, 1fr); }

    .listening__inner { grid-template-columns: 1fr; text-align: center; }
    .listening__right { text-align: center; }
    .listening__circle { margin: 0 auto; }

    .origin__inner { grid-template-columns: 1fr; }
    .origin__brand { display: none; }

    .contact__inner { grid-template-columns: 1fr; }
    .contact__form { max-width: 100%; }
    .contact__aside { order: -1; }

    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .navbar__logo-circle { width: 58px; height: 58px; top: 2px; }
    .navbar__logo-circle img { height: 36px; }

    .hero { padding: 90px 0 30px; }
    .hero__card { padding: 32px 20px 28px; border-radius: 20px; }
    .hero__silence { font-size: 2.4rem; letter-spacing: 4px; }
    .hero__briser { font-size: 1.6rem; letter-spacing: 3px; }
    .hero__subtitle { font-size: 0.95rem; }

    .stats-donuts__grid { grid-template-columns: 1fr; gap: 30px; }

    .sessions__grid { grid-template-columns: 1fr; }

    .listening__number { font-size: 2rem; }

    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__brand { align-items: center; }
    .footer__brand img { margin: 0 auto; }
}
