/* General Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf0;
  color: #333;
  scroll-behavior: smooth;
}

/* Header */
header {
  background-color: #ff914d;
  color: white;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Brand Logo + Name */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo {
  width: 50px;
  height: 50px;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #222;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Animasi Fade-in */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* Tentang Kami */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  background-color: #fff8ee;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #ff914d;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.product-card span {
  font-weight: bold;
  color: #222;
  display: block;
  margin-top: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.order-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.order-button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}

.order-button img {
  width: 24px;
  height: 24px;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* WhatsApp */
.order-button.whatsapp {
  background-color: #25D366;

}

/* Instagram */
.order-button.instagram {
  background-color: #E1306C;
}


