/* ═══════════════════════════════════════════════
   Mosquée du Bourget — Styles
   Association Pont de l'Amitié du Bourget
   ═══════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */

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

:root {
    --green: #1a3c2b;
    --green-mid: #2d5a3d;
    --green-light: #4a8c62;
    --gold: #c8963e;
    --gold-light: #e8b96a;
    --cream: #f5f0e8;
    --cream-dark: #ede6d6;
    --text: #1a1a1a;
    --text-mid: #4a4a4a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAVIGATION ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 150, 62, 0.15);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 12px 48px;
}

.nav-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.05em;
}

.nav-logo span {
    color: var(--gold);
}

.nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 10px 26px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* ── HERO ── */

.hero {
    min-height: 100vh;
    padding: 130px 48px 70px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 30%, rgba(200, 150, 62, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 10% 90%, rgba(26, 60, 43, 0.05) 0%, transparent 60%);
}

.hero-deco {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    height: 640px;
    z-index: 0;
    opacity: 0.055;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--green);
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.35s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: 44px;
    animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.65s forwards;
}

/* ── BUTTONS ── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 17px 38px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(26, 60, 43, 0.22);
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 60, 43, 0.28);
}

.btn-primary svg {
    transition: transform 0.2s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--green);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.btn-sec:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ── URGENCY BANNER ── */

.urgency {
    position: relative;
    z-index: 1;
    background: var(--green);
    color: var(--white);
    padding: 22px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 52px;
    border-radius: 3px;
    animation: fadeUp 0.9s 0.8s forwards;
}

.urgency::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    border-radius: 3px 0 0 3px;
}

.u-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 3px;
}

.u-amount {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.u-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.u-div {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.u-deadline .u-label {
    color: #ffb3b3;
}

.u-deadline .u-amount {
    color: var(--white);
}

.urgency-cta {
    background: var(--gold);
    color: var(--green);
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.urgency-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ── PROGRESS ── */

.progress-section {
    background: var(--white);
    padding: 56px 48px;
    border-bottom: 1px solid var(--cream-dark);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.progress-label span:first-child {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green);
}

.progress-label span:last-child {
    font-size: 0.8rem;
    color: var(--text-mid);
    letter-spacing: 0.05em;
}

.progress-track {
    height: 7px;
    background: var(--cream-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 22px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 4px;
    transition: width 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    overflow: hidden;
}

.stat {
    background: var(--white);
    padding: 22px 28px;
}

.stat-v {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 3px;
}

.stat-v.red {
    color: #c0392b;
}

.stat-l {
    font-size: 0.72rem;
    color: var(--text-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── PROOF ── */

.proof {
    background: var(--green);
    color: var(--white);
    padding: 56px 48px;
}

.proof-title {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 36px;
    text-align: center;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.proof-item {
    background: var(--green);
    padding: 28px;
    transition: background 0.2s;
}

.proof-item:hover {
    background: var(--green-mid);
}

.proof-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 150, 62, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 12px;
}

.proof-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 7px;
}

.proof-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ── VIDEO SECTION ── */

.video-section {
    padding: 100px 48px;
    background: var(--green);
}

.video-header {
    text-align: center;
    margin-bottom: 52px;
}

.video-header .sec-eyebrow {
    color: var(--gold-light);
    justify-content: center;
}

.video-header .sec-eyebrow::before {
    background: var(--gold-light);
}

.video-header .sec-h2 {
    color: var(--white);
    margin-top: 12px;
}

.video-header .sec-h2 em {
    color: var(--gold-light);
}

.video-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 14px;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 150, 62, 0.2);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.vbadge {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 16px;
    border-radius: 2px;
}

/* ── STORY ── */

.story-section {
    padding: 88px 48px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-eyebrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.story-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 0;
}

.story-q {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--green);
    line-height: 1.55;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 28px 0;
}

.story-p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.story-card {
    background: var(--green);
    color: var(--white);
    padding: 44px;
    border-radius: 3px;
}

.sc-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    margin-bottom: -16px;
}

.sc-fact {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 6px;
}

.sc-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.sc-div {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

/* ── PILLARS ── */

.pillars-section {
    padding: 88px 48px;
    background: var(--cream);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: var(--cream-dark);
}

.pillar {
    background: var(--cream);
    padding: 44px 32px;
    transition: all 0.3s;
}

.pillar:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.p-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: rgba(26, 60, 43, 0.09);
    line-height: 1;
    margin-bottom: 18px;
}

.p-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.p-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}

.p-text {
    font-size: 0.86rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ── HADITH ── */

.hadith-section {
    padding: 88px 48px;
    background: var(--cream-dark);
    text-align: center;
}

.hadith-t {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--green);
    line-height: 1.55;
    max-width: 760px;
    margin: 0 auto 16px;
}

.hadith-src {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.hadith-ar {
    font-size: 1.8rem;
    color: var(--green);
    opacity: 0.25;
    margin-top: 28px;
    direction: rtl;
}

/* ── DONATION ── */

.don-section {
    padding: 88px 48px;
    background: var(--green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.don-section::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.don-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.don-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.don-eyebrow::before,
.don-eyebrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-light);
}

.don-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 18px;
}

.don-title em {
    color: var(--gold-light);
    font-style: italic;
}

.don-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 52px;
    line-height: 1.75;
}

/* Tiers */

.tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 3px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    border-radius: 3px;
    overflow: hidden;
}

.tier {
    background: rgba(255, 255, 255, 0.04);
    padding: 26px 18px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    color: inherit;
    font-family: inherit;
}

.tier:hover,
.tier.active {
    background: rgba(200, 150, 62, 0.18);
}

.tier-amt {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.tier-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* Methods */

.methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
    margin-bottom: 36px;
}

.method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px;
    border-radius: 3px;
}

.method-t {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 7px;
}

.method-d {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-family: monospace;
}

.btn-don {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--green);
    padding: 19px 48px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    box-shadow: 0 4px 32px rgba(200, 150, 62, 0.35);
}

.btn-don:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 48px rgba(200, 150, 62, 0.45);
}

/* ── FOOTER ── */

footer {
    background: #111;
    color: var(--white);
    padding: 56px 48px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
}

.footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--gold-light);
}

.footer-p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-ht {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 9px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ── SECTION HEADER (shared) ── */

.sec-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-eyebrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.sec-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--green);
    line-height: 1.15;
}

.sec-h2 em {
    font-style: italic;
}

/* ── ANIMATIONS ── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .hero {
        padding: 110px 22px 52px;
    }

    .hero-deco {
        display: none;
    }

    .urgency {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .u-div {
        display: none;
    }

    .progress-section,
    .proof,
    .hadith-section {
        padding: 44px 22px;
    }

    .progress-stats {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 22px;
    }

    .pillars-section,
    .don-section {
        padding: 56px 22px;
    }

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

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

    .video-section {
        padding: 64px 22px;
    }

    footer {
        padding: 44px 22px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bot {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}