/* Gaya dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 100vw;
    background-color: #f4f4f4;
}

.header-image {
    width: 100%;
    height: 250px;
    filter: blur(3px);
    object-fit: cover;
}

.foto-profile {
    position: relative;
    bottom: 50px;
    left: 0;
    width: 150px; /* Ukuran lebih kecil untuk layar kecil */
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 30px rgba(85, 147, 254, 0.5));
}

h1 {
    position: relative;
    bottom: 20px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.5em;
    color: #333;
    padding: 10px;
}

.tombol-kembali {
    position: fixed;
    left: 20px;
    z-index: 4;
    transition: 0.3s ease;
}

.tombol-kembali:hover {
    transform: translateX(-1rem);
}

.container {
    width: 90%;
    max-width: 600px; /* Batasi lebar maksimum pada layar lebar */
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr; /* Tampil dalam satu kolom di layar kecil */
    gap: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    bottom: 100px;
}

.column p {
    margin-bottom: 20px;
}

.column p strong {
    display: block;
    color: #666;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.footer .logo-footer {
    flex: 1 1 100px;
    text-align: end;
}

.footer .logo-footer img {
    width: 100px;
    height: auto;
}

.footer .info-footer {
    flex: 5;
    margin: 10px 0;
}

.footer .info-footer p {
    margin: 5px 0;
}

iframe {
    width: 100vw;
    height: 100vh;
    border: none;
}

/* Responsif untuk ukuran layar sedang */
@media (max-width: 992px) {
    .container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .h1 {
        margin-left: 200px;
        font-size: 1.8em;
    }

    .foto-profile {
        bottom: 120px;
        left: 50px;
    }
}

/* Responsif untuk ukuran layar kecil */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        width: 90%;
    }

    h1 {
        position: static;
        text-align: center;
        margin-top: 10px;
    }

    .foto-profile {
        bottom: 100px;
        left: 0;
        margin: 0 auto;
        display: block;
    }
}

/* Responsif untuk ukuran layar sangat kecil */
@media (max-width: 600px) {

    .container {
        width: 100%;
        padding: 15px;
    }
    
    h1 {
        font-size: 1.3em;
    }
        
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer .logo-footer, .footer .info-footer {
        text-align: center;
        flex: 1 1 100%;
    }
}
