/* Reset browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Styling untuk body */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

/* Styling untuk container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling untuk header */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #222;
}

header p {
    font-size: 1.1rem;
    color: #666;
}

/* Styling untuk navigasi */
nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #007bff;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #007bff;
    color: white;
}

/* Styling untuk input pencarian */
input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

/* Styling untuk daftar artikel */
#articleList {
    list-style: none;
    padding: 0;
    margin: 0;
}

#articleList li {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

#articleList li:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#articleList li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #007bff;
    transition: color 0.2s;
}

#articleList li a:hover {
    color: #0056b3;
}

/* Styling untuk artikel */
main article {
    margin-top: 20px;
    line-height: 1.8;
}

article h2 {
    font-size: 2rem;
    color: #222;
}

article h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #444;
}

article p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

/* Styling untuk footer */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */

/* Untuk layar lebih kecil dari 768px (Tablet, mobile) */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    #articleList li {
        padding: 10px;
    }

    #articleList li a {
        font-size: 1rem;
    }

    article h2 {
        font-size: 1.8rem;
    }

    article h3 {
        font-size: 1.3rem;
    }

    article p {
        font-size: 1rem;
    }
}

/* Untuk layar lebih kecil dari 480px (Mobile) */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 1.7rem;
    }

    nav ul li a {
        padding: 8px;
    }

    #articleList li {
        padding: 8px;
    }

    article h2 {
        font-size: 1.5rem;
    }

    article h3 {
        font-size: 1.1rem;
    }

    article p {
        font-size: 0.95rem;
    }
}
