/* --- RESET & DASAR --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --- HEADER --- */
header {
    background: #006400;
    color: white;
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    margin: 0;
    font-size: 1.5rem;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}
nav a {
    color: white;
    text-decoration: none;
}
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #228B22, #006400);
    color: white;
}
.hero h2 {
    font-size: 2rem;
}
.hero p {
    font-size: 1.2rem;
}

/* --- GALERI --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
}

/* --- FORM KONTAK --- */
form input, form textarea, form button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
}
form button {
    background: #006400;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
form button:hover {
    background: #004d00;
}

/* --- FOOTER --- */
footer {
    background: #006400;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
        background: #004d00;
        width: 100%;
        padding: 10px 0;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}
.hero-overlay {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero-overlay img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(70%); /* agar teks lebih jelas terlihat */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
}
