/* style.css (Simpel Tapi Berwarna) */

/* 1. Impor Font Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Warna Aksen */
:root {
    --color-primary: #4A90E2; /* Biru Cerah/Modern */
    --color-text: #333333;
    --color-background: #F8F9FA; /* Abu-abu sangat muda */
}

/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

/* Navbar (Warna Solid) */
.navbar {
    background-color: var(--color-primary); /* Latar belakang berwarna */
    padding: 15px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #ffffff; /* Teks putih di atas background berwarna */
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Animasi Hover Tombol (Simpel dan Berwarna) */
.nav-links a:hover {
    background-color: #000000; /* Biru sedikit lebih gelap saat hover */
    transform: translateY(-2px); /* Efek sedikit naik */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Konten Utama (Minimalis) */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff; /* Latar belakang konten putih bersih */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h1 {
    color: var(--color-primary); /* Judul menggunakan warna aksen */
    margin-bottom: 25px;
    font-size: 2.2em;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

/* Khusus halaman Contact */
.contact-info {
    margin-top: 30px;
    padding: 20px;
    border-left: 5px solid var(--color-primary); /* Border kiri berwarna */
    background-color: #f0f3f6;
    border-radius: 4px;
}
    /* Footer (Tambahkan ke style.css) */
.footer {
    background-color: #ffffff;
    color: #D3D3D3; /* Teks abu-abu terang */
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    width: 100%;
    /* Pastikan footer berada di bawah konten */
    margin-top: 50px; 
}

.footer p {
    margin: 0;
    font-weight: 400;
}
