* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Bebas Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Hero section */
.hero {
    background-image: url('../img/bck gas.jpg'); /* Ganti dengan path gambar Anda */
    background-size: cover; /* Agar gambar menutupi seluruh area header */
    background-position: center; /* Agar gambar terpusat */
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Image gallery */
.gallery {
    padding: 2rem 0;
    overflow-x: auto;
    white-space: nowrap;
    background: white;
}

.gallery-container {
    display: inline-flex;
    gap: 1rem;
    padding: 0 2rem;
}

.gallery-item {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #5b9c7a;
}

.section p {
    color: #666;
    margin-bottom: 1rem;
}

/* Founder section */
.founder {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #5b9c7a;
    margin: 2rem 0;
}

/* Features section */
.features {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
}

.features h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    color: #5b9c7a;
    margin-bottom: 2rem;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    width: 500px; /* Ubah ukuran gambar di sini */
    height: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-grid,
    .founder-content,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Dark Mode Styles */
body.dark {
    background-color: #121212; /* Warna latar belakang gelap */
    color: #ffffff; /* Warna teks putih */
}

body.dark h1, 
body.dark h2, 
body.dark h3, 
body.dark h4, 
body.dark h5, 
body.dark h6 {
    color: #ffffff; /* Warna teks untuk heading dalam dark mode */
}

body.dark p {
    color: #bbbbbb; /* Warna teks untuk paragraf dalam dark mode */
}

/* Gaya untuk section atau div */
body.dark .features {
    background-color: #1e1e1e; /* Warna latar belakang untuk section features */
    padding: 20px; /* Padding untuk section */
    border-radius: 8px; /* Sudut melengkung */
}

body.dark .features h2 {
    color: #ffffff; /* Warna teks untuk judul section features */
}

body.dark .features p {
    color: #dddddd; /* Warna teks untuk paragraf dalam section features */
}

.image img {
    max-width: 400px; /* Atur ukuran gambar maksimal */
    width: 100%;
    height: auto;
    border-radius: 10px; /* Memberikan efek sudut membulat */
}

