/* =====================
   GLOBAL STYLE
===================== */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom, #dbe9f4 0%, #a8d0f0 40%, #eaf3f9 100%);
    color: #111;
}

/* HEADER */
header {
    background: #cde5f5;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
    height: auto;
}

.logo h2 {
    font-size: 20px;
    font-weight: 600;
}

/* PETA SECTION */
.peta-section {
    text-align: center;
    margin-top: 30px;
}

.peta-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.peta-container {
    display: flex;
    justify-content: center;
}

.peta-container img {
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.peta-container img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* RUTE SECTION */
.rute-section {
    background: #fff;
    margin: 50px auto;
    border-radius: 15px;
    padding: 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rute-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.rute-box {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    color: #fff;
}

.rute-box h3 {
    margin: 0 0 5px;
}

.rute-box p.desc {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
}

.rute-box p.rute {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* WARNA KHUSUS PER KATEGORI */
.rute-box.anak {
    background: #2563eb;
}

.rute-box.remaja {
    background: #dc2626;
}

.rute-box.lansia {
    background: #92400e;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #cde5f5;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .peta-container img {
        width: 95%;
    }

    .rute-section {
        margin: 30px 10px;
        padding: 20px;
    }

    .rute-box p.rute {
        font-size: 13px;
    }
}
