/* Struktur Folder: project-root/assets/css/style-pc.css */

/* 1. Gaya Dasar dan Container */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Warna latar belakang umum PC */
    /* Mengatur body agar konten di tengah vertikal dan horizontal */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Wrapper utama untuk menjaga konten agar tidak terlalu lebar di layar ultra-wide */
.main-wrapper {
    width: 100%;
    max-width: 1400px; /* Batas lebar tampilan di layar sangat besar */
    padding: 20px;
    box-sizing: border-box;
}

/* Box putih seperti kartu di desain */
.card-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* Shadow yang lebih dalam untuk PC */
    padding: 60px 80px; /* Padding yang lebih besar untuk tampilan desktop */
}

/* 2. HEADER/NAVIGASI */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo img {
    height: 45px; 
}

.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links ul li {
    margin-left: 35px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #555;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #21401f;
}

/* 3. HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 50px;
    overflow: hidden; /* Penting untuk ilustrasi petani */
}

.hero-content {
    max-width: 45%; /* Konten teks di sisi kiri */
    z-index: 10;
}

.hero-content h1 {
    font-size: 52px; /* Ukuran font lebih besar */
    color: #21401f; 
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 25px;
    background-color: #21401f; 
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #386134;
}

.hero-image {
    /* Posisi gambar petani di kanan atas */
    position: absolute;
    right: 0;
    top: -40px; 
    width: 55%; 
    max-width: 600px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 4. ABOUT SECTION */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.about-content {
    max-width: 80%;
}

.about-content h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
}

.about-content p {
    color: #666;
    line-height: 1.7;
    font-size: 17px;
}

.about-content p strong {
    color: #21401f;
}

.about-icon img {
    height: 100px; /* Ikon lebih besar untuk desktop */
    min-width: 100px;
    margin-left: 40px;
}