*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.container-navbar {
    background-color: #4feded;
    width: 100%;
    padding: 10px 0;  /* biar tinggi otomatis */
}

.ul-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.li-navbar {
    padding: 10px 20px;
    margin: 5px;
    list-style: none;
}

.a-navbar {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.li-navbar:hover {
    background-color: #2ed5ff;
    border-radius: 10px;
    transition: 0.3s;
}

/* CONTENT */
.container-content {
    background: #7ccae3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;  /* lebih fleksibel, tidak dipaksa */
    padding: 20px 0;
}

.content-box {
    background-color: white;
    width: 90%;
    max-width: 820px;
    padding: 20px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.75);
}

.image {
    width: 100%;
    max-width: 320px; /* responsif untuk HP */
    border-radius: 10px;
}

.text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.btn-visit {
    padding: 12px 25px;
    background: #2ed5ff;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    font-size: 20px;
}

.btn-visit:hover {
    background: #18b2d8;
}

/* FOOTER */
.container-footer {
    background-color: #c59fac;
    padding: 20px 0; /* tinggi otomatis */
    text-align: center;
}

.h1-footer {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 480px) {
    .a-navbar {
        font-size: 18px;
    }

    .text {
        font-size: 20px;
    }

    .btn-visit {
        font-size: 18px;
    }
}