/* GLOBAL */
body {
    font-family: "Times New Roman", Times, serif;
    background: linear-gradient(135deg, #9ee1dc, #e3e8ee);
    color: #1f2933;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(90deg, #60d3e4, #2c4f7c);
}

/* HERO */
.hero-section {
    background: linear-gradient(
        rgba(53, 227, 172, 0.85),
        rgba(44, 79, 124, 0.85)
    );
    border-radius: 0 0 28px 28px;
}

/* JUDUL */
.section-title {
    font-weight: bold;
    color: #1e3a5f;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #2c4f7c;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

/* MAP */
.map-frame {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* SERTIFIKAT */
.sertifikat-img {
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sertifikat-img:hover {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background: linear-gradient(90deg, #8ebbe6, #dbe3ec);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .map-frame {
        height: 200px;
    }

    #clock {
        display: none;
    }
}

/* LOGO NAVBAR */
.logo-navbar {
    height: 80px;
    width: auto;
}

/* Mobile */
@media (max-width: 576px) {
    .logo-navbar {
        height: 34px;
    }

    .navbar-brand span {
        font-size: 14px;
    }
}


/* SOCIAL ICONS */
.social-icons img {
    width: 50px;
    height: 32px;
    object-fit: contain;
    margin: 0 6px;
    transition: transform 0.3s ease;
}

/* efek hover halus */
.social-icons img:hover {
    transform: scale(1.15);
}

/* versi HP */
@media (max-width: 576px) {
    .social-icons img {
        width: 26px;
        height: 26px;
        margin: 0 4px;
    }
}


.hero-section h4 {
    border-bottom: 2px solid rgba(255,255,255,0.4);
    display: inline-block;
    padding-bottom: 6px;
}



.misi-list {
    padding-left: 30px;   /* geser ke kanan */
}

/* versi HP */
@media (max-width: 576px) {
    .misi-list {
        padding-left: 15px;
    }
}



.misi-col {
    padding-left: 80px;   /* geser blok Misi ke kanan */
}

/* Mobile */
@media (max-width: 768px) {
    .misi-col {
        padding-left: 15px; /* normal di HP */
    }
}

/* HERO SECTION DENGAN FOTO */
.hero-section {
    position: relative;
    background: url("../assets/img/poster.jpg") center center / cover no-repeat;
    min-height: 450px;
}

/* OVERLAY GELAP BIAR TEKS TERBACA */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* atur gelap-terang */
}

/* KONTEN DI ATAS OVERLAY */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
}




/* NAVBAR TETAP DI ATAS */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Supaya konten tidak ketutup navbar */
body {
    padding-top: 80px;
}

