/* Reset Dasar & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', Arial, sans-serif; /* Font lebih modern */
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}

body.is-menu-visible {
    overflow: hidden;
}

/* === Gaya Heading (Permintaan Anda) === */
h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4CAF50; /* Warna hijau khas */
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.5rem;
}
/* ================================== */

p {
    margin-bottom: 1rem;
    color: #ccc;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

/* Utilitas Pembungkus (Wrapper) */
.wrapper {
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.wrapper.style-alt {
    background-color: #2a2a2a;
}

.wrapper.style-dark {
    background-color: #111;
}

/* === Header (Permintaan Anda) === */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
    /* Latar Belakang Transparan (70% Opacity = 30% Invisible) */
    background-color: rgba(0, 0, 0, 0.7); 
    
    /* Efek Kaca Buram (Glassmorphism) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* === H1 / Logo (Permintaan Anda) === */
#header .logo a {
    display: flex; /* Membuat gambar dan teks sejajar */
    align-items: center;
    gap: 10px; /* Jarak antara gambar dan teks */
    color: #fff;
}

#header .logo img {
    height: 30px; /* Sesuaikan ukuran logo icon Anda */
    width: auto;
}
/* ================================== */

/* Navigasi Menu (Sama seperti sebelumnya) */
#nav .menuToggle {
    display: block;
    background-color: #4CAF50;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-weight: bold;
}
#menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #111;
    padding-top: 4em;
    transition: right 0.3s ease-in-out;
    z-index: 2000;
}
body.is-menu-visible #menu {
    display: block;
    right: 0;
}
#menu ul { list-style: none; }
#menu ul li a {
    display: block;
    padding: 1em 2em;
    color: #fff;
    font-size: 1.2rem;
    border-bottom: 1px solid #333;
}
#menu ul li a:hover { background-color: #4CAF50; }
body.is-menu-visible::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

/* Banner Utama */
#banner {
    padding: 10em 2em;
    text-align: center;
    background-color: #333;
    /* Ganti dengan gambar background resolusi tinggi */
    background-image: url('images/banner-background.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner .inner {
    background: rgba(0, 0, 0, 0.5); /* Overlay gelap agar teks terbaca */
    padding: 2em;
    border-radius: 10px;
}

#banner h2 {
    font-size: 2.8rem;
    color: #fff; /* Di banner, H2 berwarna putih agar kontras */
}

#banner p {
    font-size: 1.2rem;
    color: #eee;
}

/* Tombol */
.button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #fff;
    color: #111;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.button.special {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}
.button:hover {
    background-color: #ddd;
    color: #111;
}
.button.special:hover {
    background-color: #45a049;
    border-color: #45a049;
}
ul.actions {
    list-style: none;
    margin-top: 2em;
}
ul.actions li {
    display: inline-block;
    margin: 0 0.5em;
}

/* List Promosi */
.promo-list {
    list-style: none;
    margin-top: 2em;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.promo-list li {
    background: #2a2a2a;
    padding: 1.5em;
    margin-bottom: 1em;
    border-radius: 8px;
    border-left: 5px solid #4CAF50;
}
.promo-list h3 {
    margin: 0 0 0.5em 0;
}

/* === Footer Profesional (Permintaan Anda) === */
#footer {
    background-color: #111;
    padding: 4em 2em;
    color: #999;
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    /* Membuat 3 kolom, tapi responsif di HP */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2em;
    text-align: left;
    margin-bottom: 3em;
}

.footer-logo {
    max-width: 150px;
    margin-top: 1em;
    opacity: 0.7;
}

.footer-links h3, .footer-info h3, .footer-about h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5em;
}

.footer-links a {
    color: #999;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2em;
    font-size: 0.9rem;
    color: #777;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: #555;
    margin-top: 0.5em;
}
/* ================================== */


/* Responsif untuk Mobile */
@media (max-width: 768px) {
    #header {
        padding: 1em;
    }
    
    #banner {
        padding: 5em 1em;
    }

    #banner h2 {
        font-size: 2rem;
    }

    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.2rem; }

    .wrapper {
        padding: 2.5em 1em;
    }

    ul.actions li {
        display: block;
        margin: 0.5em 0;
    }

    .button {
        width: 100%;
    }

    .footer-grid {
        text-align: center; /* Pusatkan teks footer di HP */
    }
}