/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* === NAVBAR === */
/* === NAVBAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fbeee0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c0392b;
}

.menu {
    display: flex;
}

.menu a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #e74c3c;
}

/* Sembunyikan checkbox */
#menu-toggle {
    display: none;
}

/* Tombol hamburger */
.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #c0392b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 70px;
        right: 10%;
        flex-direction: column;
        background-color: #fbeee0;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .menu a {
        margin: 10px 0;
    }

    /* Tampilkan tombol hamburger */
    .menu-icon {
        display: block;
    }

    /* Saat checkbox dicentang, menu muncul */
    #menu-toggle:checked~.menu {
        max-height: 300px;
        opacity: 1;
    }
}


/* === HERO SECTION === */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    background: #fff8f3;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #c0392b;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #e74c3c;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #c0392b;
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* === STATS SECTION === */


/* === ABOUT SECTION === */
.about-blur-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.about-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/cabe-utama.jpg') center center/cover no-repeat;
    filter: blur(8px);
    z-index: 1;
}

.about-blur-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 80px 10%;
    border-radius: 16px;
    max-width: 1100px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-blur-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-label {
    text-transform: uppercase;
    color: #ff6f00;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 1rem;
}

.about-text {
    max-width: 700px;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 250px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.value-card h3 {
    color: #ffe66d;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fefefe;
}

.signature {
    margin-top: 40px;
}

.signature .name {
    font-family: 'Playfair Display', cursive;
    font-size: 1.5rem;
}

.signature .title {
    font-size: 1rem;
    margin-top: 5px;
}

/* === SERVICES === */
/* Import font elegan */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@400;500;600&display=swap');

.layanan {
    padding: 70px 10%;
    background: linear-gradient(180deg, #fff8f3, #fff);
    text-align: center;
}

.layanan h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c0392b;
}

.layanan-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.layanan-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    max-width: 280px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    animation: floatCard 3s ease-in-out infinite;
}

/* Border gradient elegan */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #c0392b, #ff7e5f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Hover animasi dramatis */
.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 18px 38px rgba(192, 57, 43, 0.18);
}

/* Ikon animasi */
.card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.card:hover .icon {
    transform: scale(1.25) rotate(12deg);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Animasi melayang pelan */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* === PRODUCTS === */
.produk-single {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin: 60px auto;
    max-width: 1200px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.produk-single:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(255, 94, 0, 0.3);
}

.produk-img img {
    width: 360px;
    max-width: 100%;
    border-radius: 16px;
    border: 4px solid #ff471a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.produk-info {
    flex: 1;
    color: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

.produk-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5c33;
    font-family: 'Playfair Display', serif;
}

.produk-info h3 span {
    font-size: 20px;
    font-weight: 400;
    display: block;
    color: #ccc;
}

.highlight {
    font-weight: 500;
    color: #ffd580;
    margin-bottom: 10px;
    font-style: italic;
}

.produk-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.produk-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.produk-info ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
}

.produk-info ul li::before {
    content: '🌶';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.cta {
    display: inline-block;
    padding: 12px 24px;
    background: #ff471a;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.5);
}

.cta:hover {
    background: #ff6f3c;
    transform: translateY(-3px);
}

.produk-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ff884d;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.produk-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #c0392b;
}


/* === TESTIMONIAL === */



/* === CONTACT === */
/* === CONTACT SECTION === */
.kontak {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff5ef, #ffe9df);
    /* gradasi lembut */
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* pastikan section ini berada di atas elemen lain */
}

/* Ilustrasi cabai samar */
.kontak::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: url('assets/chili-illustration.png') no-repeat center/contain;
    opacity: 0.08;
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
    /* Biar gambar dekorasi tembus klik */
}

/* Kotak pembungkus seluruh konten kontak */
.contact-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* di atas dekorasi */
    border: 2px solid #ffdccd;
    /* aksen elegan */
}

/* Judul */
.kontak h2 {
    font-size: 2.5rem;
    color: #b02a1e;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

/* Subtext */
.kontak .subtext {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Contact Info Box */
.contact-info {
    margin: 0 auto 30px auto;
    max-width: 600px;
    padding: 20px;
    background: #fff7f2;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 3;
    /* di atas wrapper */
}

/* Social Icons */
.sosial-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    position: relative;
    z-index: 4;
    /* di atas semuanya */
}

.sosial-icons a {
    width: 40px;
    height: 40px;
    background: #d43f00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    /* Pastikan ikon ada di atas layer dekorasi */
}

.sosial-icons a:hover {
    background: #aa2f00;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.kontak-form textarea {
    resize: vertical;
    min-height: 120px;
}

.kontak-form button {
    width: 100%;
    background: #d43f00;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.kontak-form button:hover {
    background: #aa2f00;
}



/* === FOOTER BARU === */
.footer {
    background-color: #fbeee0;
    padding: 40px 10%;
    text-align: center;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.footer-address {
    margin-bottom: 15px;
}

.footer-address h4 {
    font-size: 1.2rem;
    color: #c0392b;
    margin-bottom: 5px;
}

.footer-address p {
    font-size: 0.95rem;
    color: #555;
}

.footer .sosial {
    margin-bottom: 15px;
}

.footer .sosial a {
    color: #c0392b;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.footer .sosial a:hover {
    text-decoration: underline;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .layanan-container,
    .produk-grid {
        flex-direction: column;
        align-items: center;
    }
}

.produk-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.produk-card h3,
.produk-card p {
    text-decoration: none !important;
    color: inherit !important;
}

.produk-card:hover h3,
.produk-card:hover p {
    text-decoration: none !important;
    color: #d43f00;
    /* Optional hover color */
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

a h3,
a p {
    text-decoration: none !important;
    color: inherit !important;
}

a:hover h3,
a:hover p {
    color: #d43f00;
    /* opsional untuk efek hover */
}

* {
    transition: all 0.3s ease-in-out;
}

.produk-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-blur-bg {
    background-attachment: fixed;
}

/* Fallback untuk elemen AOS agar tetap muncul di HP */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 880px) {

    .kontak h2,
    .kontak .subtext {
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
    }
}