/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
    background-color: #0b130a; /* Hijau sangat gelap */
}

/* Navigasi */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #8db38b; /* Hijau daun muda */
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(11, 19, 10, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #a3b18a;
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #dad7cd;
}

/* Tombol */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #3a5a40;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    border: 1px solid #3a5a40;
}

.btn-primary:hover {
    background-color: #588157;
}

.btn-secondary {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}