/* ══════════════════════════════════════════════════════════
   BRIDE — Profil Pemateri, MC & Tilawah
   ══════════════════════════════════════════════════════════ */

.bride {
    width: 100%;
    padding: 5rem 1.6rem 5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #fdf9f0 0%, #f5edd8 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Dekorasi latar ── */
.bride::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 65%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.bride::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,107,90,0.04), transparent 65%);
    bottom: -150px; left: -150px;
    pointer-events: none;
}

/* ── Bismillah ── */
.bride h2 {
    font-size: 1.9rem;
    font-family: var(--font-arabic);
    font-weight: 400;
    color: var(--primary-dark);
    position: relative; z-index: 1;
    margin-bottom: 0.2rem;
}

/* ── Salam ── */
.bride h3 {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-style: italic; font-weight: 400;
    color: var(--primary);
    margin: 0.3rem 0 0.8rem;
    position: relative; z-index: 1;
}

/* ── Narasi pembuka ── */
.bride > p {
    font-size: 0.88rem; color: var(--text-muted);
    max-width: 460px; margin: 0 auto 1.6rem;
    position: relative; z-index: 1; line-height: 1.9;
}
.bride > p strong { color: var(--primary); font-weight: 700; }

/* ── Divider ornamen ── */
.bride-divider {
    display: flex; align-items: center; gap: 0.8rem;
    width: 100%; max-width: 380px;
    margin: 0 auto 1.6rem;
    position: relative; z-index: 1;
}
.bride-divider::before,
.bride-divider::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.bride-divider span {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.7;
}

/* ── Wrapper 3 kartu ── */
.bride .bride_couple {
    margin: 0 0 1.6rem;
    position: relative; z-index: 1;
    width: 100%;
}

.bride .bride_couple ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ══════════════════════
   KARTU INDIVIDUAL
   ══════════════════════ */
.bride .bride_couple li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    background: var(--white);
    border-radius: 20px;
    padding: 0 0 1.4rem;
    box-shadow: 0 8px 32px rgba(10,40,30,0.1), 0 1px 4px rgba(10,40,30,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    position: relative; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.35s ease;
    flex-shrink: 0;
}

.bride .bride_couple li:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(10,40,30,0.18);
}

/* ── Header kartu — background hijau tua ── */
.bride .bride_couple li figure {
    display: flex; flex-direction: column; align-items: center;
    width: 100%;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 1.8rem 1.2rem 1.4rem;
    position: relative; overflow: hidden;
}

/* Pola lingkaran halus di header */
.bride .bride_couple li figure::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    bottom: -100px; right: -50px;
    pointer-events: none;
}

/* ── Foto dengan cincin emas ── */
.photo-ring {
    width: 110px; height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: var(--grad-gold);
    box-shadow:
        0 0 0 4px rgba(201,168,76,0.2),
        0 8px 24px rgba(0,0,0,0.3);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.35s ease;
}

.bride .bride_couple li:hover .photo-ring {
    transform: scale(1.06);
    box-shadow:
        0 0 0 6px rgba(201,168,76,0.3),
        0 12px 32px rgba(0,0,0,0.35);
}

.photo-ring img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    display: block;
}

/* ── Nama & role di area hijau ── */
.bride .bride_couple li figure figcaption {
    margin-top: 0.9rem;
    text-align: center;
    display: flex; flex-direction: column; gap: 0.25rem;
}

/* Badge peran (Pemateri / MC / Tilawah) */
.role-badge {
    display: inline-block;
    font-size: 0.58rem; font-weight: 800;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--gold-light);
    padding: 0.18rem 0.65rem;
    border-radius: 99px;
    margin-bottom: 0.2rem;
}

/* Nama */
.speaker-name {
    display: block;
    font-size: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* Gelar */
.speaker-creds {
    display: block;
    font-size: 0.68rem; font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
    font-style: italic;
}

/* ── Detail bawah — area putih ── */
.speaker-detail {
    padding: 1rem 1.2rem 0;
    width: 100%; text-align: center;
}

.speaker-inst {
    display: flex; align-items: flex-start;
    justify-content: center; gap: 0.35rem;
    font-size: 0.75rem; font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px dashed rgba(201,168,76,0.3);
    line-height: 1.5;
}

.speaker-inst i {
    font-size: 0.9rem; color: var(--gold);
    flex-shrink: 0; margin-top: 1px;
}

.speaker-bio {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* ── Tema Kajian — di atas kartu profil ── */
.tema-kajian {
    position: relative; z-index: 1;
    display: inline-flex; flex-direction: column;
    align-items: center; gap: 0.35rem;
    background: var(--white);
    border: 1.5px solid rgba(201,168,76,0.22);
    border-radius: 16px;
    padding: 0.9rem 2rem;
    box-shadow: 0 4px 16px rgba(10,40,30,0.08);
    max-width: 440px; width: 90%;
    margin: 0 auto 1.4rem;   /* bottom gap ke kartu */
    overflow: hidden;
}

.tema-kajian::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-gold);
}

.tema-kajian .tema-label {
    font-size: 0.64rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-dark);
}

.tema-kajian .tema-text {
    font-size: 0.95rem; font-family: var(--font-display);
    font-weight: 700; color: var(--primary-dark); line-height: 1.4;
}

/* ── Ikon dekoratif melayang ── */
.bride i {
    font-size: 2rem;
    color: rgba(201,168,76,0.14);
    position: absolute; z-index: 0;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}
.bride i:nth-of-type(1) { top: 5rem;  right: 4%;   animation-delay: 0s;   }
.bride i:nth-of-type(2) { left: 4%;   top: 18rem;  animation-delay: 0.9s; }
.bride i:nth-of-type(3) { right: 5%;  bottom: 8rem; animation-delay: 1.8s; }
.bride i:nth-of-type(4) { left: 5%;   bottom: 5rem; animation-delay: 0.5s; }
.bride i:nth-of-type(5) { right: 3%;  top: 45%;    animation-delay: 2.4s; }


/* ══════════════════════════════════════════════════════════
   HADIST — Motivasi Islami
   ══════════════════════════════════════════════════════════ */

.hadist {
    width: 100%;
    padding: 5rem 1.6rem 5rem;
    text-align: center;
    background: linear-gradient(160deg, #0f4538 0%, #1a6b5a 100%);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
}

.hadist::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(201,168,76,0.12), transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(255,255,255,0.03), transparent 45%);
    pointer-events: none;
}

.hadist::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.07);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    animation: spin-slow 60s linear infinite;
}

@keyframes spin-slow {
    to { transform: translate(-50%,-50%) rotate(360deg); }
}

.hadist h2 {
    font-size: 1.35rem; font-family: var(--font-display);
    font-weight: 700; color: var(--gold-light);
    position: relative; z-index: 1;
    letter-spacing: 0.05em; margin-bottom: 1.4rem;
}

/* ── Kotak kutipan hadits ── */
.hadist > p:first-of-type {
    position: relative; z-index: 1;
    font-size: 0.98rem; color: rgba(255,255,255,0.88);
    max-width: 520px; margin: 0 auto 1.1rem;
    font-style: italic; line-height: 2;
    padding: 1.8rem 2rem 1.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-left: 3px solid var(--gold);
    border-radius: 16px;
}

.hadist > p:first-of-type::before {
    content: '"';
    font-size: 5rem; font-family: Georgia, serif;
    color: rgba(201,168,76,0.22);
    position: absolute; top: -1.6rem; left: 0.8rem;
    line-height: 1;
}

.hadist p span {
    display: block; margin-top: 0.7rem;
    font-size: 0.8rem; font-style: normal;
    font-weight: 700; color: var(--gold-light);
    letter-spacing: 0.07em;
}

/* ── Ajakan lanjut ── */
.hadist-sub {
    position: relative; z-index: 1;
    font-size: 0.84rem !important;
    color: rgba(255,255,255,0.5) !important;
    max-width: 390px; margin: 0 auto 0 !important;
    font-style: normal !important; line-height: 1.8 !important;
    background: none !important; border: none !important;
    padding: 0 !important;
}
.hadist-sub::before { display: none !important; }

/* ── Stat mini ── */
.hadist-stats {
    position: relative; z-index: 1;
    display: flex; justify-content: center;
    flex-wrap: wrap; margin-top: 1.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px; overflow: hidden;
    max-width: 360px; width: 90%;
}

.hadist-stats .stat {
    flex: 1; min-width: 90px;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.15rem;
    padding: 1rem 0.6rem;
    border-right: 1px solid rgba(201,168,76,0.15);
}
.hadist-stats .stat:last-child { border-right: none; }

.hadist-stats .stat-num {
    font-size: 1.5rem; font-family: var(--font-display);
    font-weight: 700; color: var(--gold-light); line-height: 1;
}

.hadist-stats .stat-label {
    font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
}

.hadist i {
    color: rgba(201,168,76,0.12); position: absolute;
    font-size: 2rem; top: 2rem; left: 4%;
    animation: float 6s ease-in-out 1s infinite;
    pointer-events: none; z-index: 0;
}
