/* Import font dari Google Fonts (Opsional) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* Reset dasar & gaya untuk body */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* === GAYA FOOTER DIMULAI DI SINI === */

.site-footer {
    background-color: #2c3e50; /* Warna biru gelap */
    color: #bdc3c7; /* Warna teks abu-abu terang */
    padding: 45px 0 20px;
    font-size: 15px;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; /* Agar kolom turun ke bawah di layar kecil */
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin: 15px;
    min-width: 250px; /* Lebar minimum sebelum kolom turun */
}

/* Judul setiap kolom */
.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

/* Garis bawah dekoratif pada judul */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: #3498db; /* Warna biru cerah sebagai aksen */
    height: 2px;
    width: 50px;
}

/* Kolom Tautan Cepat */
.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column.links ul li a:hover {
    color: #3498db;
    padding-left: 5px;
}

/* Kolom Media Sosial */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
}

/* Bagian Bawah Footer (Hak Cipta) */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #34495e; /* Garis pemisah */
}

/* === Penyesuaian untuk Layar Kecil (Responsif) === */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        margin-top: 20px;
    }
}