/* ============================================================
   Boutique du Cœur – Landing Page Styles
   Église La Compassion | CREFM
   ============================================================ */

:root {
    --rose:       #e11d48;
    --rose-dark:  #be123c;
    --rose-light: #f43f5e;
    --navy:       #0f172a;
    --navy-mid:   #1e293b;
    --gold:       #f59e0b;
    --gold-light: #fbbf24;
    --cream:      #fdf6f0;
}

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── Hero Slider ── */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide  {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease, transform 6s ease;
    transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(120deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.55) 60%, rgba(225,29,72,.25) 100%);
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(225,29,72,.18); border: 1px solid rgba(225,29,72,.4);
    backdrop-filter: blur(6px); border-radius: 9999px;
    padding: 6px 18px; color: #fda4af; font-size: .75rem;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dot  {
    width: 10px; height: 10px; border-radius: 9999px;
    background: rgba(255,255,255,.4); border: 2px solid rgba(255,255,255,.6);
    cursor: pointer; transition: all .3s;
}
.hero-dot.active  { background: #fff; width: 28px; border-color: #fff; }
.hero-arrows { position: absolute; inset-y-0; top: 50%; z-index: 4; width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; transform: translateY(-50%); pointer-events: none; }
.hero-arrow {
    pointer-events: all; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px); cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.hero-arrow:hover { background: rgba(225,29,72,.5); border-color: rgba(225,29,72,.7); }

/* ── Section titles ── */
.section-eyebrow {
    font-size: .7rem; font-weight: 800; letter-spacing: .15em;
    text-transform: uppercase; color: var(--rose);
    display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: ''; display: block; height: 2px; width: 30px;
    background: linear-gradient(90deg, var(--rose), transparent);
    border-radius: 1px;
}
.section-eyebrow::after { background: linear-gradient(90deg, transparent, var(--rose)); }

/* ── Products Slider ── */
.products-track-wrap { overflow: hidden; position: relative; }
.products-track {
    display: flex; gap: 1.5rem;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.product-slide-card {
    flex-shrink: 0; width: 280px; border-radius: 1.25rem; overflow: hidden;
    background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08);
    position: relative; cursor: default;
    transition: transform .3s, box-shadow .3s;
}
.product-slide-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.product-slide-img {
    width: 100%; height: 200px; object-fit: cover;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: block;
}
.product-slide-img-placeholder {
    width: 100%; height: 200px; background: linear-gradient(135deg, #fef2f2, #fee2e2);
    display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.product-slide-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1rem .875rem;
    background: linear-gradient(0deg, rgba(15,23,42,.85) 0%, transparent 100%);
    color: #fff; font-weight: 700; font-size: .9rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.product-slide-cat {
    font-size: .7rem; font-weight: 500; color: #fda4af;
    display: block; margin-bottom: 2px;
}
.slider-nav-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff; border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .2s; color: #475569;
}
.slider-nav-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; box-shadow: 0 4px 16px rgba(225,29,72,.35); }

/* ── Wishlist cards ── */
.wish-card {
    background: #fff; border-radius: 1.25rem; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: all .25s;
    border: 1.5px solid #f1f5f9;
}
.wish-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: #fecdd3; }
.wish-card-image { width: 100%; height: 160px; object-fit: cover; display: block; }
.wish-card-img-ph { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(135deg, #fef2f2, #fee2e2); }
.wish-card-body { padding: 1.25rem; }
.wish-card-body h3 { font-size: .95rem; font-weight: 700; color: #1e293b; margin-bottom: .25rem; }
.wish-card-body p  { font-size: .8rem; color: #64748b; margin: 0; line-height: 1.5; }

/* ── Schedule section ── */
.schedule-card {
    background: #fff; border-radius: 1.5rem; overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,.08); border: 1px solid #f1f5f9;
}
.schedule-header {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
}
.schedule-header.reception {
    background: linear-gradient(135deg, #064e3b, #065f46);
}
.schedule-body { padding: 1.5rem 1.75rem; }
.schedule-slot {
    display: flex; align-items: center; gap: 1rem;
    padding: .875rem 1rem; border-radius: .875rem;
    background: #f8fafc; margin-bottom: .625rem;
    transition: background .15s;
}
.schedule-slot:hover { background: #fef2f2; }
.schedule-day-badge {
    min-width: 80px; text-align: center; padding: .375rem .75rem;
    border-radius: .625rem; background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.schedule-day-badge.green { background: linear-gradient(135deg, #059669, #047857); }
.schedule-time { font-size: .875rem; font-weight: 600; color: #1e293b; }
.schedule-time span { color: #94a3b8; font-weight: 400; font-size: .8rem; }

/* ── Collect methods ── */
.collect-card {
    background: #fff; border-radius: 1.25rem; padding: 1.5rem;
    border: 2px solid #f1f5f9; transition: all .25s;
    display: flex; flex-direction: column; gap: .875rem;
}
.collect-card:hover { border-color: #fecdd3; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(225,29,72,.12); }
.collect-icon {
    width: 52px; height: 52px; border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fef2f2, #ffe4e6);
}
.collect-type-tag {
    font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: .2rem .6rem; border-radius: 9999px;
    background: #fef2f2; color: var(--rose);
}
.collect-number { font-size: 1.1rem; font-weight: 800; color: #1e293b; letter-spacing: .02em; }
.collect-desc   { font-size: .8rem; color: #64748b; line-height: 1.5; }

/* ── Mission section ── */
.mission-bg { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a1035 100%); }
.value-pill {
    display: flex; align-items: center; gap: .625rem;
    padding: .875rem 1.25rem; border-radius: 1rem;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px); transition: all .2s;
}
.value-pill:hover { background: rgba(225,29,72,.2); border-color: rgba(225,29,72,.5); }
.value-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
.stat-box {
    text-align: center; padding: 1.5rem 1rem;
    background: rgba(255,255,255,.05); border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,.08);
}

/* ── CTA Registration ── */
.cta-reg-card {
    border-radius: 1.5rem; padding: 2.5rem 2rem; text-align: center;
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.cta-reg-card:hover { transform: translateY(-6px); }
.cta-reg-card.beneficiary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1.5px solid rgba(225,29,72,.3);
    box-shadow: 0 8px 40px rgba(225,29,72,.15);
}
.cta-reg-card.volunteer {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    border: 1.5px solid rgba(5,150,105,.3);
    box-shadow: 0 8px 40px rgba(5,150,105,.15);
}
.cta-reg-card::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 200px; height: 200px; border-radius: 50%;
    opacity: .08; background: radial-gradient(circle, #fff, transparent);
}

/* ── Contact form ── */
.contact-bg { background: linear-gradient(135deg, #f8fafc 0%, #fef2f2 100%); }
.form-label {
    display: block; font-size: .8125rem; font-weight: 600; color: #374151;
    margin-bottom: .4rem; letter-spacing: .01em;
}
.form-input {
    display: block; width: 100%; padding: .75rem 1rem;
    border: 1.5px solid #e5e7eb; border-radius: .75rem;
    background: #f9fafb; font-size: .9375rem; color: #1f2937;
    transition: border-color .15s, box-shadow .15s;
    outline: none; appearance: none;
    font-family: inherit;
}
.form-input:focus {
    border-color: var(--rose); background: #fff;
    box-shadow: 0 0 0 3px rgba(225,29,72,.12);
}
.form-input::placeholder { color: #9ca3af; }
.form-error { font-size: .78rem; color: #ef4444; margin-top: .3rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 700; border-radius: .875rem; cursor: pointer;
    transition: all .2s; border: none; font-family: inherit; font-size: .9375rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff; box-shadow: 0 4px 20px rgba(225,29,72,.3);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(225,29,72,.4); }
.btn-primary:disabled { opacity: .65; cursor: not-allowed; }
.contact-card {
    background: #fff; border-radius: 2rem;
    box-shadow: 0 16px 64px rgba(0,0,0,.08);
    overflow: hidden;
}
.contact-side {
    background: linear-gradient(160deg, var(--navy) 0%, #1e1035 100%);
    padding: 3rem 2.5rem; color: #fff; position: relative; overflow: hidden;
}
.contact-side::before {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(225,29,72,.15);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
    width: 40px; height: 40px; border-radius: .875rem; flex-shrink: 0;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

/* ── Footer ── */
.footer-bg { background: #030712; }
.footer-link { color: #6b7280; font-size: .875rem; transition: color .15s; }
.footer-link:hover { color: #e11d48; }
.social-btn {
    width: 38px; height: 38px; border-radius: .625rem;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; transition: all .2s;
}
.social-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ── Navbar ── */
.navbar-glass {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1px 24px rgba(0,0,0,.06);
}
.nav-active-link::after {
    content: ''; display: block; height: 2px; background: var(--rose);
    border-radius: 1px; margin-top: 2px;
}

/* ── Animations ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(225,29,72,.4)} 70%{box-shadow:0 0 0 20px rgba(225,29,72,0)} 100%{box-shadow:0 0 0 0 rgba(225,29,72,0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { from{background-position:-200% 0} to{background-position:200% 0} }

.animate-float  { animation: float 3s ease-in-out infinite; }
.animate-pulse-ring { animation: pulse-ring 2s ease infinite; }
.fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .25s; }
.fade-up-3 { animation-delay: .4s; }
.fade-up-4 { animation-delay: .55s; }

/* ── Loading shimmer ── */
.shimmer {
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ── Misc ── */
.divide-rose > *:not(:last-child) { border-bottom: 1px solid #fce7f3; padding-bottom: 1rem; margin-bottom: 1rem; }
.text-gradient { background: linear-gradient(135deg, #e11d48, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Responsive — Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .contact-side { padding: 2rem 1.5rem; }
    .schedule-header { padding: 1.25rem 1.5rem; }
    .schedule-body   { padding: 1.25rem 1.5rem; }
}

/* ── Responsive — Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    /* Hero */
    .hero-slider { min-height: 100svh; height: 100svh; }
    .hero-arrow  { width: 38px; height: 38px; }
    .hero-dots   { bottom: 1rem; gap: 6px; }
    /* Force responsive font-size on hero content */
    .hero-slide h1 { font-size: clamp(1.875rem, 8vw, 2.75rem) !important; line-height: 1.15; }
    .hero-slide > div > div > .max-w-3xl > p,
    .hero-slide p.text-xl  { font-size: clamp(.9rem, 3.5vw, 1.1rem) !important; }
    /* Hero buttons */
    .hero-btn-primary,
    .hero-btn-secondary,
    .hero-btn-ghost { font-size: .875rem; padding: .75rem 1.25rem; border-radius: .75rem; }

    /* Products carousel */
    .product-slide-card { width: 200px; }
    .product-slide-img,
    .product-slide-img-placeholder { height: 170px; }

    /* Wishlist */
    .wish-card-image,
    .wish-card-img-ph { height: 140px; }

    /* Schedule */
    .schedule-header    { padding: 1rem 1.125rem; }
    .schedule-body      { padding: 1rem 1.125rem; }
    .schedule-day-badge { min-width: 56px; font-size: .6rem; padding: .3rem .5rem; }
    .schedule-time      { font-size: .8rem; }
    .schedule-time span { font-size: .75rem; }

    /* Collect methods */
    .collect-card   { padding: 1.125rem; }
    .collect-icon   { width: 44px; height: 44px; font-size: 1.25rem; border-radius: .875rem; }
    .collect-number { font-size: .975rem; }

    /* Mission */
    .value-pill { padding: .75rem 1rem; }
    .stat-box   { padding: 1rem .75rem; }

    /* CTA cards */
    .cta-reg-card { padding: 1.75rem 1.25rem; }

    /* Contact */
    .contact-side { display: none; }
    .contact-card { border-radius: 1.25rem; }

    /* Footer */
    .footer-link { font-size: .8125rem; }
    .social-btn  { width: 34px; height: 34px; border-radius: .5rem; }

    /* Section eyebrow */
    .section-eyebrow::before,
    .section-eyebrow::after { width: 16px; }
}

/* ── Responsive — Small phones (≤ 480px) ── */
@media (max-width: 480px) {
    /* Even smaller hero headings */
    .hero-slide h1 { font-size: clamp(1.625rem, 7vw, 2.125rem) !important; }

    /* Stack hero CTA buttons vertically */
    .hero-cta { flex-direction: column !important; align-items: center !important; }
    .hero-btn-primary,
    .hero-btn-secondary,
    .hero-btn-ghost { width: 100%; max-width: 280px; justify-content: center; font-size: .85rem; padding: .7rem 1rem; }

    /* Schedule slot: time wraps below day name */
    .schedule-slot { flex-wrap: wrap; }

    /* Wishlist cards shorter image */
    .wish-card-image,
    .wish-card-img-ph { height: 120px; }

    /* Collect card */
    .collect-card { padding: .875rem; }

    /* Footer condensed */
    .social-btn { width: 32px; height: 32px; }
}
