/* Reset Margin dan Padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Latar Belakang Berwarna-Warni Bergerak */
body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    min-height: 100vh;
    position: relative;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Kontainer Utama */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1; /* Agar kontainer berada di atas overlay */
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

header hr {
    border: 0;
    height: 2px;
    background: #fff;
    margin-bottom: 20px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Styling untuk Tombol Navigasi */
.nav-button {
    background-color: #fff; /* Warna latar belakang tombol */
    color: #000; /* Warna teks tombol */
    border: none; /* Menghilangkan border default */
    border-radius: 5px; /* Sudut melengkung */
    padding: 10px 20px; /* Padding di dalam tombol */
    font-size: 1.2em; /* Ukuran font tombol */
    cursor: pointer; /* Mengubah cursor saat hover */
    margin-top: 10px; /* Jarak atas untuk tombol */
    transition: background-color 0.3s; /* Transisi untuk hover */
    text-decoration: none; /* Menghilangkan garis bawah */
    display: inline-block; /* Agar tombol berdampingan */
    margin: 10px; /* Jarak antar tombol */
}

.nav-button:hover {
    background-color: #e73c7e; /* Warna saat hover */
    color: #fff; /* Warna teks saat hover */
}

/* Profil dan Konten */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile img {
    border-radius: 50%;
    width: 250px;
    max-width: 100%;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.profile-info {
    width: 100%;
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 1.5em;
}

section p, section ul {
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #fff;
    font-size: 0.9em;
}

/* Responsif */
@media (max-width: 768px) {
    .profile img {
        width: 150px;
        height: 150px;
    }

    .profile-info {
        padding: 10px 0;
    }
}

/* Styling untuk Audio */
.audio-player {
    display: none; /* Menyembunyikan pemutar audio */
}

/* Overlay untuk Instruksi Memulai Musik */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    cursor: pointer;
}
