/* --- Variables & Reset --- */
:root {
    --primary-text: #fff; /* Teks jadi putih biar kelihatan di dark mode */
    --navy-blue: #1a253a;
    --gold: #c59d5f;
    --gold-hover: #b08d55;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000; /* Fallback kalau video gagal load */
    color: var(--primary-text);
    padding-bottom: 50px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; /* Konten harus di atas video */
}

/* --- VIDEO BACKGROUND --- */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100; /* Paling belakang */
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay gelap transparan (Navy Blue 85%) */
    background: rgba(26, 37, 58, 0.85);
    z-index: -10;
}

/* --- Header --- */
header {
    background-color: rgba(26, 37, 58, 0.9); /* Sedikit transparan */
    padding: 15px 0;
    border-bottom: 2px solid var(--gold);
    color: #fff;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    font-weight: 300;
}

nav a:hover {
    color: var(--gold);
}

/* --- Main Content --- */
.main-wrapper {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05); /* Efek kaca tipis */
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h1, .section-header h2 {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-header h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-header p {
    color: #ddd;
    font-size: 1rem;
}

.text-center { text-align: center; }

.divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 30px 0;
    width: 100%;
}

/* --- Form Styles --- */
.input-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background-color: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: 1rem;
    color: #333;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
}

/* --- Buttons --- */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
}

.btn-block {
    width: 100%;
    display: block;
    margin-top: 10px;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af73 0%, #c59d5f 100%);
    color: #fff;
    box-shadow: 0 4px 6px rgba(197, 157, 95, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #c59d5f 0%, #b08d55 100%);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--navy-blue);
}

/* --- Quote Card --- */
.quote-card {
    background-color: var(--navy-blue);
    /* Ganti URL texture kalau perlu, atau biarkan pattern ini */
    background-image: url("https://www.transparenttextures.com/patterns/black-felt.png"); 
    padding: 60px 40px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.quote-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.quote-text {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Action Area --- */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

/* --- Social Icons --- */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: var(--gold-hover);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .header-content { flex-direction: column; }
    nav { margin-top: 10px; }
    .quote-text { font-size: 1.4rem; }
    .action-buttons { flex-direction: column; }
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background-color: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    resize: vertical; /* Biar bisa ditarik vertikal doang */
    min-height: 120px;
}

textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
}

/* Style untuk Teks Paragraf di Halaman About */
.about-text {
    color: #eee;
    line-height: 1.8;
    text-align: justify; /* Biar rata kiri-kanan rapi */
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--gold);
}

/* Style list di halaman About (kalau ada) */
.about-list {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.about-list li {
    color: #ddd;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-list li::before {
    content: '\f00c'; /* Icon ceklis FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
}

.bahlil {
    width: auto;
    height: 2500px;
}