/* assets/css/footer.css */

/* --- CSS Khusus Footer --- */
.footer-top {
    background-color: #f4f4f4;
    color: #555;
    font-size: 0.95rem;
    padding: 7px 0 0px;
}

.footer-top h6 {
    color: #111;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-top p {
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-blue, #003380);
}

.footer-link i {
    font-size: 0.75rem;
    margin-right: 8px;
    color: #888;
}

.footer-bottom {
    background-color: #00205b; /* Warna biru gelap */
    color: #fff;
    padding: 15px 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

.app-badge {
    max-width: 140px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.3s;
}

.app-badge:hover {
    transform: scale(1.05);
}

/* Tombol Scroll to Top (Kotak Abu-abu di Kanan) */
.scroll-top-btn {
    background-color: #949494;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 20px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.scroll-top-btn:hover {
    background-color: #777;
    color: white;
}

/* --- Dekorasi Skyline --- */
.skyline-container {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff; /* Pastikan background putih agar transisi ke footer halus */
    line-height: 0; /* Menghilangkan celah kecil di bawah gambar */
}

.skyline-container img {
    width: 100%;
    height: auto;
    opacity: 0.6; /* Membuatnya tampak lebih halus/soft */
    pointer-events: none; /* Agar tidak bisa diklik */
    display: block;
}