/* ══════════════════════════════════════════════════════
   BY SANTADINE — Style principal
   Couleurs : #ceeff4 #f36d8f #de2e4b #cbcfd8 #000000
   Polices  : Montserrat (→ Neue Einstellung)
              Great Vibes (→ Moontime)
              Playfair Display (→ Lovelace)
   ══════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
:root {
    --cyan: #ceeff4;
    --pink: #f36d8f;
    --red: #de2e4b;
    --gray: #cbcfd8;
    --black: #000000;
    --white: #ffffff;
    --cream: #faf8f5;
    --soft-bg: #f5f0ec;
    --dark-bg: #1a1a1a;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════
   INTRO : PORTES D'ÉGLISE
   ═══════════════════════════════════════ */
#intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1800px;
    overflow: hidden;
}

/* S'assurer que le contenu central tient dans l'écran */
.intro-center {
    max-height: 100vh;
    max-height: 100dvh;
    padding: 20px 0;
    overflow: visible;
}

#intro-overlay.opening .door-left { animation: doorOpenLeft 3s cubic-bezier(.25,0,.15,1) forwards; }
#intro-overlay.opening .door-right { animation: doorOpenRight 3s cubic-bezier(.25,0,.15,1) forwards; }
#intro-overlay.opening .intro-center { animation: fadeOutCenter .5s .1s ease forwards; }
#intro-overlay.opening .divine-light { animation: lightExpand 2s ease forwards; }
#intro-overlay.done { pointer-events: none; animation: overlayFade .3s ease forwards; }

/* Les portes */
.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}
.door-left { left: 0; transform-origin: left center; }
.door-right { right: 0; transform-origin: right center; }

.door-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a1810 0%, #1a0f08 40%, #0d0805 100%);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139,90,43,.3);
}

.door-left .door-inner { border-right: 3px solid rgba(139,90,43,.5); }
.door-right .door-inner { border-left: 3px solid rgba(139,90,43,.5); }

/* Lignes du bois */
.door-wood-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 80px,
        rgba(139,90,43,.08) 80px,
        rgba(139,90,43,.08) 81px
    );
}

/* Arche en haut de la porte */
.door-arch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120px;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(180deg, rgba(139,90,43,.2) 0%, transparent 100%);
}

.door-left .door-arch { left: auto; right: -10%; transform: none; }
.door-right .door-arch { right: auto; left: -10%; transform: none; }

/* Croix ornementale sur chaque porte */
.door-cross-ornament {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cross-v {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, rgba(212,175,55,.6), rgba(212,175,55,.2));
    margin: 0 auto;
    border-radius: 2px;
}
.cross-h {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(212,175,55,.2), rgba(212,175,55,.6), rgba(212,175,55,.2));
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Poignée */
.door-handle {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #d4af37, #8b5a2b);
    box-shadow: 0 0 10px rgba(212,175,55,.4);
    transform: translateY(-50%);
}
.door-left .door-handle { right: 30px; }
.door-right .door-handle { left: 30px; }

/* Lumière divine derrière */
.divine-light {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 200vh;
    background: radial-gradient(ellipse at center, rgba(255,255,220,.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: .5;
}

/* Contenu central intro */
.intro-center {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 20px 0;
}

.intro-logo {
    width: 480px;
    max-height: 35vh;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255,255,255,.2));
    animation: logoPulse 3s ease-in-out infinite;
}

.intro-slogan {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .5px;
}

.intro-verse {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--pink);
    margin-top: 4px;
}

.intro-verse-ref {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    font-style: italic;
}

.btn-enter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--red), var(--pink));
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2rem;
    border: 2px solid rgba(255,255,255,.15);
    transition: all .4s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(222,46,75,.3);
}
.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222,46,75,.4);
}
.btn-enter:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(222,46,75,.2);
}
.btn-enter-icon { font-size: 1.2rem; }

/* Animations intro */
@keyframes doorOpenLeft {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(-105deg); }
}
@keyframes doorOpenRight {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(105deg); }
}
@keyframes fadeOutCenter {
    to { opacity: 0; transform: scale(.9); }
}
@keyframes lightExpand {
    0% { width: 4px; opacity: .5; }
    100% { width: 200vw; opacity: 1; background: radial-gradient(ellipse at center, rgba(255,255,220,.8) 0%, rgba(255,255,255,1) 60%); }
}
@keyframes overlayFade {
    to { opacity: 0; visibility: hidden; }
}
@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,.15)); }
    50% { filter: drop-shadow(0 0 40px rgba(243,109,143,.3)); }
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-100%);
}
#navbar.visible {
    opacity: 1;
    transform: translateY(0);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 70px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    color: var(--black);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--red);
    background: rgba(222,46,75,.06);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    border-radius: 50px;
    padding: 10px 24px;
}
.nav-cta:hover { background: var(--pink) !important; transform: translateY(-1px); }

/* Social icons in nav */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--gray);
}
.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--black);
    transition: var(--transition);
}
.nav-social:hover {
    color: var(--red);
    background: rgba(222,46,75,.08);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════
   HERO CARROUSEL
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1015 50%, #0d0d0d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide-bg.has-image {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(243,109,143,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(206,239,244,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(222,46,75,.05) 0%, transparent 40%);
}
.hero-slide-bg.has-image + .hero-overlay {
    background:
        linear-gradient(135deg, rgba(13,13,13,.72) 0%, rgba(26,16,21,.6) 50%, rgba(13,13,13,.72) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(243,109,143,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(206,239,244,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(222,46,75,.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 750px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--pink);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,.9);
}
.hero-title .highlight {
    font-family: var(--font-script);
    font-size: 1.25em;
    color: var(--pink);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Dots navigation */
.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dots:empty { display: none; }

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s ease;
}
.hero-dot:hover {
    background: rgba(255,255,255,.6);
}
.hero-dot.active {
    background: var(--pink);
    border-color: var(--pink);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,.3), transparent);
    animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: .4; }
}

/* ═══════════════════════════════════════
   BOUTONS — STYLE HAND-DRAWN
   ═══════════════════════════════════════ */
.btn {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    -webkit-user-select: none;
    user-select: none;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    position: relative;
    letter-spacing: .3px;
    text-decoration: none;
}

.btn-highlight {
    display: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--pink));
    color: var(--white);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.3);
    color: var(--white);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--pink);
}

.btn-sm { padding: 10px 24px; font-size: .88rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-cross { font-size: 1.1em; }

/* ═══════════════════════════════════════
   VERSET BANNIÈRE
   ═══════════════════════════════════════ */
.verse-banner {
    background: linear-gradient(135deg, var(--cyan), #e8f7fa);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.verse-banner::before {
    content: '✝';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(0,0,0,.02);
    pointer-events: none;
}

.verse-cross {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 16px;
}

.verse-slider {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verse-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}
.verse-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.verse-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.verse-ref {
    display: block;
    margin-top: 16px;
    font-size: .9rem;
    color: var(--pink);
    font-weight: 600;
    font-style: normal;
}

/* ═══════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════ */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-soft { background: var(--cream); }
.section-dark { background: var(--dark-bg); color: var(--white); }

.section-label {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--pink);
    margin-bottom: 8px;
}
.section-label-light { color: var(--pink); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-title .highlight { color: var(--red); }

.section-desc {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   LIVRES
   ═══════════════════════════════════════ */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.book-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}
.book-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.book-cover {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8e8ee, var(--cyan));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--black);
    font-size: .95rem;
    padding: 20px;
    text-align: center;
}
.book-emoji { font-size: 3rem; }

.book-body {
    padding: 28px;
}

.badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.badge-new { background: var(--cyan); color: #1a6b7a; }
.badge-best { background: linear-gradient(135deg, var(--red), var(--pink)); color: var(--white); }

.book-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.book-body p {
    font-size: .92rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.book-quote {
    color: var(--red) !important;
    font-size: .88rem !important;
}

/* ═══════════════════════════════════════
   PRODUITS
   ═══════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--red));
    opacity: 0;
    transition: opacity .3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card:hover::before { opacity: 1; }

.product-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fce4ec, var(--cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: .9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Product card with image */
.product-card.has-image {
    padding: 0;
}
.product-card.has-image .product-body {
    padding: 24px 28px 28px;
}
.product-cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-cover img {
    transform: scale(1.05);
}
.product-price {
    font-size: 1.05rem;
    color: var(--red);
    margin-bottom: 12px;
}

.product-tag {
    display: inline-block;
    padding: 3px 12px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(222,46,75,.08);
    color: var(--red);
    border-radius: 50px;
}

/* ═══════════════════════════════════════
   YOUTUBE SECTION
   ═══════════════════════════════════════ */
.youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.youtube-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.youtube-visual img { width: 100%; display: block; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.youtube-text p {
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    line-height: 1.8;
}
.youtube-text em { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════
   À PROPOS
   ═══════════════════════════════════════ */
.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.apropos-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.apropos-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(243,109,143,.15);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.apropos-photo img { width: 100%; display: block; }

.apropos-role {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--pink);
    margin-bottom: 20px;
}

.apropos-text p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 14px;
}

.apropos-quote {
    margin-top: 20px;
    padding: 20px 24px;
    border-left: 4px solid var(--red);
    background: rgba(222,46,75,.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-serif);
    font-size: .95rem;
    color: #444;
}

.apropos-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.apropos-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--black);
}
.apropos-socials a:hover {
    background: var(--red);
    color: var(--white);
}

/* ═══════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .3s ease;
}
.testimonial-card:hover { transform: translateY(-3px); }

.testi-quote {
    font-family: var(--font-script);
    font-size: 4rem;
    line-height: 1;
    color: var(--pink);
    opacity: .4;
    margin-bottom: -16px;
}

.testimonial-card p {
    font-size: .92rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testi-author {
    display: block;
    margin-top: 16px;
    font-weight: 600;
    font-size: .85rem;
    color: var(--red);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--black);
}
.contact-item svg { color: var(--red); flex-shrink: 0; }
.contact-item a { font-weight: 500; }
.contact-item a:hover { color: var(--red); }

.contact-socials { margin-top: 32px; }
.contact-socials h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.social-row { display: flex; gap: 12px; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cream);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--red);
    color: var(--white);
}
.social-btn:hover svg { fill: var(--white); }

/* Formulaire */
.contact-form-wrap {
    background: var(--cream);
    padding: 36px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .92rem;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(243,109,143,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-feedback {
    margin-top: 16px;
    font-size: .95rem;
    text-align: center;
    padding: 0;
    border-radius: 10px;
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease, padding .4s ease;
}
.form-feedback.success,
.form-feedback.error {
    opacity: 1;
    max-height: 80px;
    padding: 14px 20px;
}
.form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b7dfc6;
}
.form-feedback.success::before {
    content: "\2713  ";
    font-weight: 700;
}
.form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1c0c5;
}
.form-feedback.error::before {
    content: "\2717  ";
    font-weight: 700;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: #111;
    color: rgba(255,255,255,.7);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 80px; margin-bottom: 16px; }

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

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}
.footer-legal { margin-top: 4px; font-size: .75rem; }
.footer-admin-link {
    display: inline-block;
    margin-top: 12px;
    font-size: .72rem;
    color: rgba(255,255,255,.2);
    text-decoration: none;
    transition: color .3s;
}
.footer-admin-link:hover { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════
   MODALS
   ═══════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform .3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    line-height: 1;
}
.modal-close:hover { color: var(--red); }

.modal-box h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cyan);
}

.modal-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--red);
}

.modal-box p {
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════
   PAGE HERO (pages intérieures)
   ═══════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1015 50%, #0d0d0d 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(243,109,143,.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(206,239,244,.06) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-hero-title .highlight {
    font-family: var(--font-script);
    color: var(--pink);
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   PREVIEW GRID (accueil)
   ═══════════════════════════════════════ */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.preview-card {
    display: block;
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--red));
    opacity: 0;
    transition: opacity .3s ease;
}
.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.preview-card:hover::before { opacity: 1; }

.preview-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.preview-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.preview-card p {
    font-size: .92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--red);
    transition: gap .3s ease;
}
.preview-card:hover .preview-link { gap: 12px; }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-cross {
    font-size: 2.4rem;
    color: var(--red);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.8;
}

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

.btn-outline-dark {
    border: 2px solid rgba(0,0,0,.2);
    color: var(--black);
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    text-decoration: none;
}
.btn-outline-dark:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(222,46,75,.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-outline-dark:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ═══════════════════════════════════════
   ANIMATIONS D'APPARITION (scroll)
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .youtube-grid,
    .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform .3s ease;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { padding: 14px 20px; font-size: 1rem; width: 100%; }
    .nav-cta { text-align: center; margin-top: 16px; }
    .nav-socials {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--gray);
    }

    .hero-content { padding: 100px 0 60px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }

    .page-hero { padding: 130px 0 60px; }
    .preview-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .books-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

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

    .section { padding: 70px 0; }

    .intro-logo { width: 360px; }
    .intro-verse { font-size: 1.4rem; }

    .door-cross-ornament { top: 25%; }
    .cross-v { height: 70px; }
    .cross-h { width: 40px; top: 20px; }

    .social-row { flex-direction: column; }

    /* Verset bannière – tablette */
    .verse-banner { padding: 40px 20px; }
    .verse-cross { font-size: 1.5rem; margin-bottom: 12px; }
    .verse-banner::before { font-size: 8rem; }
    .verse-slider { min-height: 120px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .contact-form-wrap { padding: 24px; }
    .modal-box { padding: 24px; }
    .intro-verse { font-size: 1.2rem; }
    .btn-enter { padding: 12px 32px; font-size: .9rem; }
    .btn, .btn-outline-dark { font-size: .85rem; padding: 12px 24px; }

    /* Verset bannière – mobile */
    .verse-banner { padding: 30px 16px; }
    .verse-cross { font-size: 1.2rem; margin-bottom: 8px; }
    .verse-banner::before { font-size: 5rem; }
    .verse-slider { min-height: 100px; }
    .verse-text { line-height: 1.6; }
}

/* ═══════════════════════════════════════
   UTILITAIRES
   ═══════════════════════════════════════ */
::selection {
    background: var(--pink);
    color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }
