/* ==============================================================
   STYLING KHUSUS HALAMAN ANJUNGAN (LANDING PAGE)
   ============================================================== */
body, html {
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%;
    overflow: hidden; /* Mencegah scroll pada landing page */
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

/* 1. Video Background Setup */
.video-background {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* 2. Overlay Cerah (Memberikan nuansa terang dan memukau) */
.overlay-cerah {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(5px);
    z-index: -1;
}

/* 3. Main Wrapper (Pusat Konten) */
.anjungan-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

/* 4. Glassmorphism Card (Tampilan Kaca Elegan) */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 650px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.anjungan-logo {
    max-height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.anjungan-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--theme-primary, #b19326); /* Fallback ke warna tema hijau_kuning */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.anjungan-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* 5. Tombol Utama (Call to Action) */
.btn-masuk-anjungan {
    background: var(--theme-gradient, linear-gradient(90deg, #414932 0%, #b3bd05 100%));
    color: white !important;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-masuk-anjungan:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    color: white;
    filter: brightness(1.1);
}

/* ==============================================================
   STYLING MODAL LOGIN (Popup)
   ============================================================== */
.modal-content.glass-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.modal-header-custom {
    border-bottom: none;
    padding: 2rem 2rem 0.5rem 2rem;
    text-align: center;
    display: block;
    position: relative;
}

.modal-header-custom .btn-close {
    position: absolute;
    top: 20px; right: 20px;
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 10px;
    opacity: 0.7;
}

.modal-header-custom i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.modal-title-custom {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.5rem;
}

/* Input Group Login */
.input-group-custom {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.input-group-custom:focus-within {
    border-color: var(--theme-primary, #b19326);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--theme-light, rgba(177, 147, 38, 0.1));
}
.input-group-custom i {
    color: #94a3b8;
    margin-right: 12px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}
.input-group-custom input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Alert Box */
.alert-custom {
    display: none; 
    padding: 1rem; 
    border-radius: 10px; 
    margin-bottom: 1.5rem; 
    font-size: 0.95rem; 
    font-weight: 600; 
    text-align: center;
}
.alert-danger-custom { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success-custom { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }