body {
    font-family: "Segoe UI", sans-serif;
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    background-color: #2e7d32;
}

.navbar .nav-link,
.navbar-brand {
    color: white !important;
}

.navbar .nav-link:hover {
    text-decoration: underline;
}

.hero {
    background-color: #e8f5e9;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2e7d32;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

.placeholder-box {
    width: 100%;
    height: 250px;
    background-color: #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-weight: bold;
    border-radius: 8px;
}

footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    /* padding: 20px; */
    margin-top: 50px;
}

.team-card {
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    background-color: #c8e6c9;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2e7d32;
}

.gallery-img {
    width: 100%;
    height: 180px;
    background-color: #c8e6c9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2e7d32;
}

.footer {
    width: 100%;
    background: #155d2d; /* hijau tua */
    color: #fff;
    padding: 40px 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* samakan tinggi semua kolom */
    gap: 30px;
    flex-wrap: wrap; /* biar responsif di HP */
}

.footer-col {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* biar isi mulai dari atas */
}

.footer-col h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col .social-links a {
    margin-right: 15px;
    color: #f0c674;
    text-decoration: none;
}

.footer-col .social-links a:hover {
    text-decoration: underline;
}

.btn-footer {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 15px;
}

.btn-footer:hover {
    background: white;
    color: #155d2d;
}

/* Maps */
.footer-col iframe {
    width: 100%;
    max-width: 250px; /* batasi lebar */
    aspect-ratio: 1/1; /* biar persegi */
    height: auto !important; /* override height bawaan google */
    border: 0;
    border-radius: 10px;
    display: block;
    margin: 0 auto; /* center */
}

/* QRIS Box */
.qris-box {
    background: #fff;
    color: #333;
    text-align: center;
    width: 100%;
    max-width: 250px; /* batasi lebar */
    aspect-ratio: 1/1; /* persegi */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto; /* center */
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0e3f1d;
    margin-top: 30px;
}

.team-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    /* border: 4px solid #28a745; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-photo img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero {
    height: 100vh; /* penuh layar */
}

.hero .carousel-item img {
    width: 100vw; /* full lebar viewport */
    height: 100vh; /* full tinggi viewport */
    object-fit: cover; /* isi layar tanpa distorsi */
    filter: blur(1px);
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.4); /* overlay hitam transparan */
    z-index: 1;
}

/* .hero-text {
    z-index: 2;
    color: #fff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
} */

.hero-text {
    z-index: 2;
    color: #fff !important;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.4); /* kotak transparan */
    padding: 20px 30px;
    border-radius: 12px;
    display: inline-block; /* supaya background pas di teks */
    animation: fadeInUp 1.5s ease;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 400;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

footer.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0d552e; /* hijau tua */
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 50px; /* padding dalam */
    max-width: 1200px;
    margin: 0 auto; /* biar isi tetap rapih di tengah */
}

.footer-col {
    flex: 1;
    min-width: 280px;
    background: #166534; /* hijau lebih terang untuk kotak isi */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Reset body biar nggak ada ruang putih */
body {
    margin: 0;
    padding: 0;
}

/* Footer full width */
/* FOOTER */
.footer {
    position: relative;
    left: 0;
    right: 0;

    width: 100vw; /* paksa selebar viewport */
    margin: 0;
    padding: 50px 0;
    background: #0d552e; /* hijau tua */
    color: #fff;
}

/* Container dalam footer */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;

    /* hilangkan pembatas */
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px; /* kasih jarak biar isi ga terlalu nempel ke pinggir */
    box-sizing: border-box;
}

/* Kolom isi */
.footer-col {
    flex: 1;
    min-width: 280px;
    background: #166534; /* hijau lebih muda untuk kotak */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Bagian bawah */
.footer-bottom {
    text-align: center;
    padding: 12px;
    background-color: #094522; /* hijau lebih gelap */
    font-size: 14px;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0d552e; /* hijau tua */
    color: #fff;
}

/* Container isi */
.footer-container {
    max-width: 1200px; /* biar konten nggak kepanjangan */
    margin: 0 auto; /* center */
    padding: 30px 20px; /* jarak dalam */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Kolom */
.footer-col {
    flex: 1;
    min-width: 280px;
    background: #166534; /* hijau muda kotak */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
