/* Reset & Variabel */
:root {
    --primary: #f1c40f; /* Kuning Matahari */
    --primary-dark: #f39c12;
    --secondary: #27ae60; /* Hijau Daun */
    --dark: #2c3e50;
    --light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Komponen Umum */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light); }

.btn-main {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: var(--white);
    height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}

.logo .dot { color: var(--primary); }

.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-dark); }
.btn-nav {
    background: var(--secondary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}
.btn-nav:hover { background: #219150; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://mylsunflower.info/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.col-image, .col-text { flex: 1; }
.col-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stats {
    display: flex;
    margin-top: 30px;
    gap: 40px;
}
.stat-item h3 { color: var(--primary-dark); font-size: 2rem; }

/* Gallery */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover { transform: scale(1.03); }

/* Contact Form */
.contact-container { max-width: 600px; text-align: center; }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Mobile Responsive */
.burger { display: none; cursor: pointer; }

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links li { margin: 20px 0; opacity: 0; }
    .burger { display: block; }
    
    .nav-active { transform: translateX(0%); }
    
    .hero-content h1 { font-size: 2.5rem; }
    .row { flex-direction: column; }
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}