* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    background: #cff198;
    color: #333;
}

/* NAV */
header {
    background: #fffec1;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: 0.3s;
}

/* efek pas scroll (dipake JS) */
header.scroll {
    background: #9bdda1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: #2e7d32;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HERO */
.hero {
    height: 90vh;
    background: url("18.\ Menu\ Makanan\ 4\ Sehat\ 5\ Sempurna\ Pagi\ Siang\ Malam.avif") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    background: rgb(255, 255, 255);
    padding: 40px;
    color: #057927;
    text-align: center;
    border-radius: 15px;
}

.hero-text h1 {
    font-size: 48px;
}

/* SECTION */
.section {
    padding: 60px 80px;
    text-align: center;

    /* animasi (dipake JS) */
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

.section.light {
    background: #cbf799;
}

.desc {
    margin: 15px 0 40px;
}

/* CARD */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.card {
    background: #c7f3c9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tag {
    background: #2e7d32;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin: 10px 0;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item p {
    padding: 10px;
    font-weight: 500;
}

/* PROFIL */
.profil-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.profil-card {
    background: #cae9b5;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge {
    background: #2e7d32;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

/* BUTTON */
.btn {
    margin-top: 30px;
    padding: 12px 25px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #2e7d32;
    color: #fff;
    padding: 20px;
    text-align: center;
}
