/* ============================================================
   TENTANG-KAMI.CSS
   Stylesheet khusus untuk halaman tentang-kami/index.html
   Elemen di sini TIDAK memakai class Tailwind — pakai nama class
   custom sendiri, jadi butuh definisi CSS manual di file ini.
   ============================================================ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background: #f8fafc;
}

a {
    color: inherit;
}

/* ===================== TOP BAR ===================== */
.top-bar {
    background: #052e16;
    color: #ffffff;
    font-size: 12px;
    padding: 10px 0;
    overflow: hidden;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.top-bar-features {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.running-text-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-link {
    text-decoration: none;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s;
}

.feature-link:hover {
    color: #4ade80;
}

.icon-eco {
    color: #4ade80;
}

.divider {
    color: #22c55e;
}

.badge-slogan {
    background: linear-gradient(to right, #16a34a, #15803d);
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.top-bar-social a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-social a:hover {
    color: #4ade80;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    gap: 4px;
}

.text-grow {
    color: #16a34a;
}

.text-rinjani {
    color: #0f172a;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.nav-menu a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #16a34a;
}

.nav-actions {
    flex-shrink: 0;
}

.btn-back-home:hover {
    background-color: #e2e8f0 !important;
}

/* ===================== STATISTIK "ABOUT" ===================== */
.about-stat-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.about-stat-item {
    flex: 1 1 0;
    text-align: center;
    padding: 18px 12px;
    min-width: 120px;
}

.about-stat-item h4 {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 900;
    color: #16a34a;
    font-family: 'Montserrat', sans-serif;
}

.about-stat-item span {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.about-stat-divider {
    border-left: 1px solid #e2e8f0;
}

/* ===================== GALERI EKSPEDISI ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(180deg, rgba(5,46,22,0) 40%, rgba(5,46,22,0.85) 100%);
    color: #ffffff;
}

.gallery-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px 0;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.gallery-sub {
    font-size: 12px;
    color: #e2e8f0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ===================== FLOATING WHATSAPP ===================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 50;
    transition: transform 0.2s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5b;
}

/* ===================== MENU DROPDOWN MOBILE (KHUSUS HALAMAN INI) ===================== */
.about-mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-mobile-menu.open {
    display: flex;
}

.about-mobile-menu a {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
}

.about-mobile-menu a.active,
.about-mobile-menu a:hover {
    color: #16a34a;
}

/* ===================== RESPONSIVE (HP) ===================== */
@media (max-width: 767px) {
    .top-bar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-container {
        flex-wrap: nowrap;
    }

    /* Sembunyikan menu horizontal di HP, diganti dropdown hamburger */
    .nav-menu {
        display: none;
    }

    .nav-actions {
        width: auto;
    }

    .btn-back-home span {
        display: none;
    }

    .about-stat-box {
        flex-direction: column;
    }

    .about-stat-divider {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
}

/* Desktop: dropdown mobile selalu tersembunyi */
@media (min-width: 768px) {
    .about-mobile-menu {
        display: none !important;
    }
}
