/**
 * ======================================================
 * BANNER MONSALIDUS — CSS
 * assets/css/banner.css
 * ======================================================
 * ✅ Latar belakang penuh layar
 * ✅ Teks Tengah — Gaya Dark Fantasy Emas
 * ✅ Garis Pembatas Hiasan
 * ✅ Responsif HP / PC
 */

.page-banner {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar Latar */
.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-in-out;
}
.page-banner:hover .banner-bg {
    transform: scale(1.12);
}

/* Lapisan Gelap Transparan */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.85) 100%);
}

/* Kotak Teks di Tengah */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 30px;
    max-width: 860px;
    margin: 0 auto;
}

/* Garis Hias Atas-Bawah */
.banner-line {
    height: 2px;
    width: 120px;
    margin: 18px auto;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Judul Utama */
.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
}

/* Subjudul */
.banner-content h2 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 10px 0;
    letter-spacing: 2px;
    opacity: 0.92;
}

/* Deskripsi */
.banner-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
    padding: 0 10px;
}

/* === RESPONSIF — HP === */
@media (max-width: 600px) {
    .page-banner { height: 280px; }
    .banner-content h1 { font-size: 28px; letter-spacing: 3px; }
    .banner-content h2 { font-size: 15px; }
    .banner-content p  { font-size: 13px; }
    .banner-line { width: 80px; }
}
