/* Warna Primer: #454792 */
:root {
    --primary-color: #454792;
    --text-color: #f0f0f0; /* Teks cerah agar mudah dibaca di atas background gelap */
}

body {
    /* Gunakan font Poppins yang diimpor */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #333; /* Fallback color */
    
    /* Pengaturan Background Gambar Kapal Kontainer */
    /* Anda bisa mengganti URL ini dengan link gambar Anda sendiri */
    background-image: url('https://images.unsplash.com/photo-1629654291886-c439f041de45?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); 
    background-size: cover; /* Pastikan gambar menutupi seluruh layar */
    background-position: center;
    background-attachment: fixed; /* Membuat gambar tetap saat konten di-scroll */
}

/* Layer overlay gelap agar teks lebih mudah dibaca */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay hitam transparan */
    z-index: -1;
}

.header, .content {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 50px auto 20px;
    border-radius: 10px;
    background-color: rgba(69, 71, 146, 0.9); /* Menggunakan warna primer dengan transparansi */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h1 {
    font-weight: 700;
    margin-top: 0;
    color: white; 
    font-size: 2.5em;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.destinations {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.destinations li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-weight: 400;
    transition: background-color 0.3s;
}

.destinations li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.7);
}
