/* --- RESET & VARIABLES --- */
:root {
    --bg-sand: #EFE8D3;
    --brand-yellow: #D49D2C;
    --ocean-blue: #2D5E8C;
    --text-dark: #221A15;
    --font-heading: 'Syne', sans-serif; /* Font tegas berkarakter surf rock */
    --font-nav: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-sand);
    font-family: var(--font-nav);
    color: var(--text-dark);
}

/* --- HEADER DESKTOP --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: var(--brand-yellow);
    border-bottom: 4px solid var(--ocean-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-container img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* Navigasi Desktop */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    position: relative; /* Wajib agar ::after posisinya presisi di bawah teks */
    text-decoration: none;
    padding-bottom: 5px; /* Memberi sedikit ruang antara teks dan garis */
}

/* Underline Animation */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--ocean-blue, #2D5E8C);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%; /* Garis penuh saat hover atau active */
}

.main-nav a:hover {
    color: #FFFFFF;
}

/* --- HAMBURGER BUTTON (MOBILE) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animasi Hamburger ke Icon X saat di-klik */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}



/* --- RESPONSIVE MOBILE (HP) --- */
@media (max-width: 900px) {
    header {
        height: 70px;
        padding: 0 20px;
    }

    .logo-container img {
        max-height: 48px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px; /* Sesuai tinggi header mobile */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--brand-yellow);
        border-top: 2px solid var(--ocean-blue);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.6rem; /* Ukuran font lebih besar di HP agar gampang di-tap */
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-top: 0; /* Pastikan tidak ada margin negatif */
}
.slider-container { width: 100%; height: 100%; }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Fokus di tengah */
}

/* Animasi Waving Logo */
.logo-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; }
.waving-logo { width: 400px; animation: waveEffect 3s infinite ease-in-out; }

/* --- RESPONSIVE MOBILE (HP) --- */
@media (max-width: 900px) {
    
    /* Sembunyikan logo waving/overlay di Hero section khusus di HP */
    .logo-overlay,
    .waving-logo {
        display: none !important;
    }

}

/* Styling Tombol Panah */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #4A3525;
    border: 2px solid #4A3525;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 999; /* Pastikan ini sangat tinggi */
    transition: 0.3s;
}

.arrow:hover { background: #D49D2C; color: #fff; }
.left { left: 20px; }
.right { right: 20px; }

/* Styling Indikator Dot */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #fff;
    border: 2px solid #4A3525;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background-color: #D49D2C; }

@keyframes waveEffect {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-2deg); }
}




.about-us-container {
    position: relative;
    display: flex;
    flex-wrap: wrap; /* Agar bisa turun ke bawah di layar HP */
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: var(--bg-sand); /* #EFE8D3 */
}

.about-image {
    flex: 1;
    min-width: 300px; /* Lebar minimum sebelum teks turun */
}

.about-image img {
    width: 100%;
    height: auto;
    border: 3px solid #2D2926; /* Bingkai retro */
    filter: sepia(20%); /* Sedikit efek retro pada foto */
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1rem;
    letter-spacing: 5px;
    color: #D49D2C; /* Warna mustard khas kita */
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2D2926;
    font-family: 'Courier New', monospace; /* Tetap konsisten dengan gaya mesin ketik */
    border-left: 5px solid #D49D2C; /* Aksen garis samping */
    padding-left: 15px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A3525;
    margin-bottom: 20px;
}

/* Styling Tiki yang lebih 'nongkrong' di dalam konten */
.tiki-about {
    position: absolute; 
    width: 150px;        /* Sedikit lebih kecil agar lebih proporsional dengan teks */
    z-index: 5;         /* Pastikan di atas background tapi di bawah elemen penting */
    animation: tikiBobbing 4s infinite ease-in-out;
}

/* Posisi Kiri Atas (Inside) */
.tiki-about-1 { 
    top: 100px; 
    right: 620px; 
}

/* Posisi Kanan Bawah (Inside) */
.tiki-about-2 { 
    bottom: 80px; 
    right: 20px; 
    transform: scaleX(-1); 
}

/* Tambahkan padding pada container agar teks tidak tertutup Tiki */
.about-us-container {
    position: relative;
    padding: 80px 60px; /* Tambahkan padding kanan-kiri yang cukup besar */
    /* ... properti lainnya ... */
}

/* Pastikan di HP tidak menutupi teks */
@media (max-width: 768px) {
    .tiki-about { display: none; }
}


/* Container Tiki */
.tiki {
    position: sticky; /* Biar dia tetap di tempatnya saat scroll */
    bottom: 20px;
    width: 100px; /* Atur ukuran sesuai kebutuhan */
    z-index: 5;   /* Supaya Tiki di belakang konten utama, tapi di depan background */
    pointer-events: none; /* Penting: agar Tiki tidak menghalangi klik mouse */
    animation: tikiBobbing 4s infinite ease-in-out;
}

.tiki-left { left: 20px; }
.tiki-right { right: 20px; transform: scaleX(-1); } /* Flip horizontal untuk yang kanan */

/* Animasi Melayang (Bobbing) */
@keyframes tikiBobbing {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Responsif: Hilangkan atau kecilkan di HP agar tidak menutupi konten */
@media (max-width: 768px) {
    .tiki { width: 60px; }
}

/* --- SECTION DISCOGRAPHY --- */
.discography-section {
    padding: 80px 20px;
    background-color: #2D2926; 
    color: #F4F1EA;
    position: relative; /* PENTING: Untuk jangkar posisi Tiki */
    overflow: hidden;   /* Mencegah Tiki keluar layar */
}

/* --- TIKI BACKGROUND (Nongkrong di Hitam) --- */
.tiki-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 500px; /* Ukuran besar sesuai permintaan */
    z-index: 1;
    animation: tikiBobbing 4s infinite ease-in-out;
    pointer-events: none; /* Agar tidak mengganggu klik */
    filter: invert(1);
}

.tiki-left { left: 1%; }
.tiki-right { right: 1%; transform: translateY(-50%) scaleX(-1); }

/* Container Utama Discography */
.discography-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.album-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.album-art {
    flex: 1;
    max-width: 450px;
}

.album-art img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.album-details {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Merapikan semua elemen ke kiri */
}

/* Badge Tag 2025 di luar foto */
.release-tag {
    display: inline-block;
    position: static; /* Memastikan tidak menempel melayang di atas gambar */
    background-color: var(--brand-yellow, #D49D2C);
    color: #000000;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px; /* Jarak antara tag tahun dan Judul Album */
    letter-spacing: 1px;
    border: 2px solid var(--ocean-blue, #2D5E8C);
}

/* Responsif Mobile (HP) */
@media (max-width: 768px) {
    .album-wrapper {
        flex-direction: column; /* Menumpuk foto di atas, teks di bawah */
        gap: 20px;
    }
    
    .album-details {
        align-items: center; /* Merapikan teks ke tengah khusus di HP */
        text-align: center;
    }
}

.btn-listen {
    display: inline-block;
    padding: 12px 25px;
    background: #2D5E8C;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    margin-top: 20px;
    border: 2px solid #2D2926;
    transition: 0.3s;
}

.btn-listen:hover {
    background: #D49D2C;
    color: #2D2926;
}

/* Responsif */
@media (max-width: 768px) {
    .album-wrapper { flex-direction: column; }
    .tiki-bg { display: none; } /* Hilangkan Tiki di HP agar konten tidak sesak */
}


.archive-section {
    padding: 80px 20px;
background-color: #F4F1EA;
    color: #2D2926;
}

.archive-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* KUNCI: Membuat teks kiri & grid kanan sejajar di tengah secara vertikal */
    gap: 60px;
    width: 90%;          /* Mengisi 90% lebar layar agar tidak terlalu sempit ke tengah */
    max-width: 1400px;   /* Diperlebar dari 1100px agar pas di laptop */
    margin: 0 auto;
}

/* Sisi Kiri (Teks Narasi) */
.archive-description {
    flex: 1; 
    font-family: 'Courier New', monospace;
    font-size: 1.1rem; 
    line-height: 1.8;
    max-width: 550px;    /* Ruang ekstra agar paragraf tidak terlalu kurus */
    text-align: left;    /* Memastikan teks rata kiri */
}

/* Judul Section (Rata Kiri & Berwarna Mustard) */
.archive-description h2,
.archive-description .section-title {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;    /* Paksa judul ikut rata kiri sejajar dengan paragraf */
    margin-bottom: 25px;
    letter-spacing: 3px;
    color: #D49D2C;
}

/* Sisi Kanan (Grid Lagu) */
.archive-grid {
    flex: 1.2; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

/* Card Polaroid Retro */
.single-card {
    background: #ffffff;
    padding: 15px;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid #2D2926;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

/* Gambar Album di Kartu */
.single-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px auto;
    border: 1px solid #ddd;
}

/* Font Judul Lagu & Link di Kartu */
.single-card h3 {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin: 6px 0 4px 0;
}

.single-card .btn-sm {
    font-size: 0.8rem;
    color: #1DB954;
    text-decoration: underline;
    font-weight: bold;
}

/* Efek Rotasi Kartu Pos */
.single-card:nth-child(1) { transform: rotate(-2deg); }
.single-card:nth-child(2) { transform: rotate(2deg); }
.single-card:nth-child(3) { transform: rotate(1.5deg); }
.single-card:nth-child(4) { transform: rotate(-2deg); }

.single-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 8px 12px 0px rgba(0,0,0,0.25);
}

/* Responsif HP */
@media (max-width: 850px) {
    .archive-container { 
        flex-direction: column; 
        gap: 40px;
        text-align: center;
    }
    .archive-description { 
        max-width: 100%; 
    }
    .archive-grid { 
        width: 100%; 
    }
    .single-card { 
        transform: rotate(0deg) !important; 
    }
}

.video-section {
    padding: 80px 20px;
background-color: var(--ocean-blue); /* #2D5E8C */
    color: #FFFFFF;
    text-align: center;
}

.video-section .section-title {
    color: var(--brand-yellow); /* #D49D2C */
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Membuat 3 kolom sejajar */
    gap: 30px; /* Jarak antar video */
    margin-top: 40px;
}

.video-card {
    background: #FFFFFF;
    padding: 10px;
    box-shadow: 6px 6px 0px #2D2926; /* Effect shadow retro yang tegas */
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Menjaga rasio video YouTube agar tidak gepeng */
    display: block;
}

/* Responsif: Jika dibuka di HP, video akan menumpuk ke bawah */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
    }
}

/* --- SHOW & DATE SECTION --- */
.show-section {
    background-color: var(--brand-yellow); /* #D49D2C */
    color: #2D2926;
    
    /* 1. PERBAIKAN SPACING: Tambahkan padding atas agar jauh dari Video Section */
    padding-top: 100px;    /* Sebelumnya 80px, diperbesar agar lebih lega */
    padding-bottom: 100px;
    
    border-top: 4px solid var(--ocean-blue);
    border-bottom: 4px solid var(--ocean-blue);
}

/* 2. ATUR POSISI & SPACING TEKS JUDUL SHOWS */
.show-section .section-title {
    color: #2D2926;
    text-align: center;      /* Bisa ganti 'left' jika ingin rata kiri */
    margin-bottom: 40px;     /* Memberi jarak antara Judul "SHOWS" dengan daftar konser */
    
    /* Opsional: Jika ingin menggeser posisi judul secara fleksibel */
    /* transform: translateY(-10px); */
}

/* 3. MEMASIKAN CONTAINER MELEKAP DI TENGAH */
.show-container {
    max-width: 800px;
    margin: 0 auto;
}

.events-list {
    margin-top: 20px; /* Dikurangi sedikit karena judul sudah punya margin-bottom */
}

.event-row {
    display: flex;
    align-items: center;
    background: #e8ece5;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    transition: transform 0.2s;
}

.event-row:hover {
    transform: translateX(5px); /* Sedikit efek gerak saat disorot */
}

/* Bagian Tanggal (Sisi Kiri) */
.event-date {
    background: #2D2926;
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-family: 'Courier New', monospace;
    min-width: 70px;
}

.day { 
    display: block; 
    font-size: 1.5rem; 
    font-weight: bold; 
}

.month { 
    font-size: 0.8rem; 
    text-transform: uppercase;
}

/* Bagian Info (Tengah) */
.event-info {
    flex: 1;
    padding: 0 30px;
    font-family: 'Courier New', monospace;
}

.event-info h3 { 
    margin: 0; 
    font-size: 1.2rem; 
    color: #2D2926;
}

.event-info p { 
    margin: 5px 0 0; 
    color: #555; 
    font-size: 0.9rem;
}

/* Bagian Tombol (Kanan) */
.event-action .btn-sm {
    background: transparent;
    border: 2px solid #2D2926;
    color: #2D2926;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    transition: 0.3s;
}

.event-action .btn-sm:hover {
    background: #2D2926;
    color: white;
}

/* Responsif untuk HP */
@media (max-width: 600px) {
    .event-row {
        flex-direction: column;
        text-align: center;
    }
    .event-info {
        padding: 20px 0;
    }
    .event-date {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Styling Section Merch */
.merch-section { 
    background-color: var(--bg-sand); /* #EFE8D3 */
    padding: 80px 20px;
}
.merch-section .section-title {
    color: #2D2926;
}

.merch-card {
    background: #FFFFFF;
    border: 2px solid #2D2926;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.15);
}
.merch-container { 
    max-width: 1000px; 
    margin: 0 auto; 
    position: relative; /* PENTING */
    padding: 0 50px;    /* Memberi ruang di kiri-kanan untuk arrow */
}
.section-title { text-align: center; margin-bottom: 30px; }

/* Swiper Adjustment */
.swiper { padding: 20px 0; }
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    z-index: 10;
    color: #2D2926 !important;
}
.swiper-button-prev { left: 10px !important; }
.swiper-button-next { right: 0px !important; }
.merch-card {
    background: white;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
    max-width: 300px; 
    width: 100%;
    margin: 0 auto; /* Menjaga kartu di tengah slider */
}

.merch-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.btn-main { 
    background: #2D2926; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    cursor: pointer; 
    width: 100%;
    position: relative; /* Penting */
    z-index: 10;        /* Penting */
}
/* Modal tetap sama */
.modal-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.7); z-index:9999; justify-content:center; align-items:center; }
.modal-box { background:white; padding:30px; width:300px; text-align:center; border-radius:8px; }
.modal-btn { display: block; width: 100%; padding: 10px; margin: 5px 0; text-decoration: none; border: 1px solid #333; cursor: pointer; }

.size-tag {
    font-size: 0.9em;
    color: #555;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}


.site-footer {
background: #221A15;
    color: var(--bg-sand);
    border-top: 4px solid var(--brand-yellow);
    padding: 80px 20px; /* Padding besar memberikan kesan 'luas' */
    text-align: center;
    font-family: 'Courier New', monospace; /* Mengikuti style referensi */
}

.footer-container { max-width: 1100px; margin: 0 auto; }

.footer-logo { max-width: 150px; margin-bottom: 20px; }

.footer-socials { margin: 40px 0; font-size: 24px; }
.footer-socials a { color: #fff; margin: 0 15px; text-decoration: none; }

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.info-item { display: flex; align-items: flex-start; gap: 10px; }
.info-item i { margin-top: 5px; }

.footer-nav { margin: 40px 0; border-top: 1px solid #333; padding-top: 30px; }
.footer-nav a { color: #fff; text-decoration: none; margin: 0 15px; text-transform: uppercase; }

.footer-bottom { font-size: 0.8em; color: #666; margin-top: 20px; }

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00ff00;
    color: #000;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .footer-info { flex-direction: column; align-items: flex-start; padding-left: 20px; }
    .footer-nav a { display: block; margin: 10px 0; }
}


/* --- Pengaturan Responsif Mobile --- */
@media (max-width: 768px) {
    
    /* 1. Mengurangi padding container agar layar tidak penuh sesak */
    .merch-container {
        padding: 0 15px;
    }

    /* 2. Mengatur ulang Footer agar menumpuk ke bawah (Vertical) */
    .footer-info {
        flex-direction: column; /* Mengubah row menjadi column */
        align-items: center;    /* Rata tengah */
        text-align: center;
        gap: 20px;              /* Jarak antar item */
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;        /* Agar menu turun ke bawah jika penuh */
        justify-content: center;
        gap: 10px;
    }

    .footer-nav a {
        margin: 5px;            /* Mengurangi margin agar tidak terlalu lebar */
    }

    /* 3. Menyesuaikan ukuran font (Opsional) */
    h2.section-title { font-size: 24px; }
}


/* Styling Header Dasar */



.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 0 15px;
    font-weight: bold;
}

/* Sembunyikan hamburger di desktop */
.menu-toggle { display: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: white; margin: 5px 0; }

/* Tampilan Mobile (Responsive) */
@media (max-width: 768px) {
    .menu-toggle { display: block; } /* Munculkan hamburger di HP */

    .main-nav {
        display: none; /* Sembunyikan menu secara default */
        position: absolute;
        top: 80px; /* Sesuaikan dengan tinggi header */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        text-align: center;
    }

    .main-nav.active {
        display: block !important; 
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav ul li { margin: 10px 0; }
}