* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== HEADER ===== */
header {
    width: 100%;
    background-color: rgba(29, 53, 87, 0.2); /* #1D3557 transparan 80% */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: #ffa726;
}

.logo-text p {
    font-size: 13px;
    color: #f1c40f;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    background-image: url('{{ asset("gambar/latar.png") }}');
    background-size: cover;        /* tampilan penuh */
    background-position: center center; 
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 36, 71, 0.3); /* #0B2447 transparan 70% */
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(11, 36, 71, 0.5);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
    font-size: 28px;
    color: #ffa726;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 15px;
    color: #f1f1f1;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===== BUTTON ===== */
.btn {
    background-color: rgba(255, 122, 0, 0.25); /* #FF7A00 transparan 75% */
    color: white;
    padding: 12px 30px;
    border: 2px solid #ff7a00;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

.btn:hover {
    background-color: #ff7a00;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    background-color: rgba(29, 53, 87, 0.2); /* selaras dengan header */
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #ddd;
    backdrop-filter: blur(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    .hero-content {
        padding: 25px;
        max-width: 90%;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
    }
}
