warna seperti contoh ini :root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #fbbf24;
    --dark2: #334155;
    --white: #ffffff;
    --text: #f1f5f9;
    --bg-color: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(
            rgba(120, 53, 15, 0.80),
            rgba(194, 65, 12, 0.80),
            rgba(249, 115, 22, 0.75)
        ),
        url("assets/varianmakanan.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 8%;
    background: rgba(124, 45, 18, 0.80);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: white;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    background: rgba(251, 191, 36, 0.20);
    color: #fbbf24;
    transform: translateY(-2px);
}

nav ul li a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 140px 8% 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.hero-content {
    flex: 1;
}

.hero-content h2,
.hero-content h3,
.hero-content h4 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

.hero-content p {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
    font-size: 0.95rem;
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    z-index: -1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 32px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50px;

    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;

    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.6);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    width: 480px;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    animation: float 5s ease-in-out infinite;
}

/* FLOAT */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* FEATURES */
.features {
    padding: 100px 8%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-heading p {
    color: #e5e7eb;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-box .icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.feature-box h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-box p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* STEP */
.steps-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-num {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.step-card h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-card p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    background: #7c2d12;
    padding: 50px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-content p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ANIMATION */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeLeft 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    header {
        padding: 15px 5%;
    }

    .logo {
        font-size: 24px;
    }

    nav ul li {
        margin-left: 15px;
    }

    nav ul li a {
        font-size: 13.5px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 180px;
    }

    .hero-content p {
        margin: auto auto 35px;
    }

    .floating-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .feature-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .step-card {
        padding: 25px 20px;
        min-width: 250px;
    }
    
}

/* MOBILE MENU FIX */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        display: block;
        padding: 8px 14px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
    }

    .hero {
        padding-top: 190px;
    }
}