/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigasi */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara gambar logo dan teks */
}

.main-logo {
    height: 75px; /* Sesuaikan tinggi logo Anda */
    width: auto;
    object-fit: contain;
}

/* Memastikan teks logo tetap bagus bersanding dengan gambar */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -1px;
}

.logo-text span {
    color: #e67e22; /* Warna oranye kayu */
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .main-logo {
        height: 35px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: #d35400; }

/* Hero Section */
.hero {
    height: 100vh; /* Memenuhi layar smartphone & laptop */
    /* Overlay gradient: Hitam transparan agar teks putih mudah dibaca */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                url('image/banner.png'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Ukuran font otomatis menyesuaikan layar */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: #f39c12; /* Warna oranye kayu untuk penekanan */
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
    border: 2px solid #f39c12;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.navbar {
    background-color: #ffffff; /* Putih bersih agar logo menonjol */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Bayangan tipis agar elegan */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50; /* Warna teks gelap yang elegan */
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f39c12; /* Berubah oranye saat disentuh */
}

.btn-cta {
    background-color: #f39c12;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
}

/* Grid Produk Interaktif */
/* --- Bagian Produk (Ganti Semua Kode Lama dengan Ini) --- */

.products { 
    padding: 80px 5%; 
    background-color: #f9f9f9; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2.5rem; 
    font-weight: 700;
    color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Kolom lebih ramping */
    gap: 30px;
}

.product-card {
    background: #fff;
    height: 650px; /* Tinggi ditambah agar lebih portrait/jenjang */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Mengatur container gambar agar pas di dalam kartu yang tinggi */
.product-image {
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Menjamin gambar tidak gepeng */
    transition: 0.6s;
}

/* Overlay Hitam saat Hover */
.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Overlay awal sedikit di bawah */
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: 0.5s;
    z-index: 1;
}

.product-card:hover::after { 
    height: 100%; /* Gelap merata saat hover */
}

.product-card:hover .product-image img {
    transform: scale(1.1); /* Gambar nge-zoom sedikit saat hover */
}

/* Info Produk (Teks) */
.product-info {
    position: absolute;
    bottom: 20px; /* Posisi teks tetap di bawah */
    left: 20px;
    right: 20px;
    color: white;
    z-index: 2;
    transform: translateY(20px); /* Efek teks muncul dari bawah */
    opacity: 0;
    transition: 0.5s;
}

.product-card:hover .product-info { 
    transform: translateY(0); 
    opacity: 1; 
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Label Badge */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive untuk Smartphone */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Sederhanakan nav di mobile */
    .hero h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: 1fr; }
}
/* Section Tentang Kami */
.about-section {
    padding: 100px 5%;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #d35400; /* Aksen kotak di belakang gambar */
}

.about-text .sub-title {
    color: #d35400;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    line-height: 1.2;
}

/* GANTI DENGAN KODE INI */
.features {
    padding: 100px 5%;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #f39c12;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
/* Contact & Map */
.contact-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: #2c3e50;
    color: white;
}

.contact-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px; /* Sudut melengkung halus */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Bayangan lembut */
    object-fit: cover;
    height: 450px; /* Menyesuaikan dengan tinggi teks di sampingnya */
}

.btn-wa-large {
    display: inline-block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}
.map-container {
    border-radius: 15px; /* Membuat sudut peta melengkung */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Memberi efek bayangan lembut */
    margin-bottom: 20px;
}
/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
}

.floating-wa img { width: 25px; }

.floating-wa:hover { transform: scale(1.1); }

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    background: #1a252f;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }

    .about-text h2 { font-size: 2rem; }
    
    .floating-wa span { display: none; } /* Hanya muncul icon di HP agar ringkas */
    .floating-wa { padding: 15px; border-radius: 50%; }
}
.main-footer {
    background-color: #2c3e50; /* Warna biru gelap elegan */
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-info h3 span { color: #f39c12; }
.footer-info p { opacity: 0.8; line-height: 1.6; margin-top: 15px; }

.footer-contact h4, .footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #f39c12;
}

.footer-links ul { list-style: none; }
.footer-links a { color: white; text-decoration: none; opacity: 0.7; transition: 0.3s; }
.footer-links a:hover { opacity: 1; color: #f39c12; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    opacity: 0.6;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.4rem;
    transition: 0.4s ease;
    text-decoration: none;
}

/* Warna Spesifik saat Hover */
.social-link.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: translateY(-5px);
}

.social-link.yt:hover {
    background: #ff0000;
    transform: translateY(-5px);
}
/* Letakkan di CSS */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.floating-icon:hover { transform: scale(1.1); }