* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar */
header {
    background: #ff8ba7;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin-left: 40px;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin-right: 40px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.navbar ul li a:hover {
    background: #ff5c8a;
    border-radius: 5px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
}

/* Hero */
.hero {
    background: url('images/bakery.jpeg') no-repeat center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    background: #ff5c8a;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #ff2e63;
}

/* About */
.about {
    padding: 50px 20px;
    text-align: center;
    background: #fff0f5;
}

.about h2 {
    margin-bottom: 20px;
}

/* Products */
.products {
    padding: 50px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom */
    gap: 20px;
    margin-top: 20px;
}

/* Saat layar sedang (tablet) jadi 2 kolom */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Saat layar kecil (HP) jadi 1 kolom */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-item img {
    width: 100%;
    height: 200px; /* tinggi gambar seragam */
    object-fit: cover; /* potong gambar sesuai proporsi */
    border-radius: 10px;
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    margin-top: 10px;
}

.product-item p {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}


/* Contact */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: #fff0f5;
}

/* Footer */
footer {
    background: #ff8ba7;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        background: #ff8ba7;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
    }

    .navbar ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
