/* assets/css/style.css */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.5rem;
}
.navbar-brand span {
    color: #ffcc00;
}
.nav-link {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* --- Hero Section --- */
.hero-section {
    
    /* Pastikan bg-header.png yang baru sudah disatukan dengan foto wanita */
    background-image: url('../images/others/bg-headers.png'); 
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: white;
    /* Memberi ruang di atas dan bawah */
    padding: 80px 0 165px 0; 
    position: relative;
}

/* --- Overlap Section --- */
.overlap-section {
    position: relative;
    /* Tarik ke atas agar tombol dan kotak kuning "naik" ke area biru */
    /* Ubah angka -60px ini (misal jadi -80px) jika kurang naik ke atas */
    margin-top: -60px; 
    z-index: 10;
}

/* --- Warning Box --- */
.warning-box {
    background-color: #fff9e6;
    border-left: 5px solid #ffcc00;
    padding: 20px 30px;
    border-radius: 8px;
    position: relative;
}

/* Memastikan icon fontawesome ukurannya pas di kotak fitur */
.feature-icon i {
    font-size: 2.2rem;
}

/* Feature Cards */
.feature-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    height: 100%;
}
.feature-icon {
    font-size: 2.5rem;
    color: #6c757d;
    margin-right: 15px;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Custom Table for Radio Buttons */
.table-criteria td {
    vertical-align: middle;
    border-bottom: 1px dashed #dee2e6;
    padding: 12px 0;
    font-size: 0.9rem;
}
.table-criteria tr:last-child td {
    border-bottom: none;
}
.radio-group {
    white-space: nowrap;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.btn-submit {
    background-color: #ff0000;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s;
}
.btn-submit:hover {
    background-color: #cc0000;
    color: white;
}

/* Footer */
footer {
    background-color: #0b4a8f;
    color: white;
    padding: 50px 0 20px;
}
footer a {
    color: #d1e1f0;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}
footer a:hover {
    color: white;
}
.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: center;
}