/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: linear-gradient(to bottom right, #d63384, #f8a5c2, #f1f1f1);
    color: #333;
    min-height: 100vh;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 155, 225, 0.9);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    height: 40px;
    width: 40px;
  }
  
  nav {
    display: flex;
    gap: 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: #d63384;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover,
  nav a.active {
    color: #111;
  }
  
  main {
    padding: 2rem;
  }

  .foto-profil {
    text-align: center;
    margin: 40px 0;
  }
  
  .foto-profil img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fdbb2d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .foto-profil p {
    margin-top: 12px;
    font-size: 1.1em;
    font-weight: 600;
    color: #2b2728;
  }
  
  
  section.content {
    background: rgba(255,255,255,0.85);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in-out;
  }
  
  h2 {
    margin-bottom: 1rem;
    color: #d63384;
  }
  
  .form-pemesanan,
  .form-rating,
  .form-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, select, textarea, button {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  button {
    background-color: #d63384;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #b02a6f;
  }
  
  .galery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .galery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .produk-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .produk-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .produk-card:hover {
    transform: scale(1.05);
  }
  
  .produk-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .produk-card h3 {
    margin: 0.5rem 0;
    color: #d63384;
  }
  
  .produk-card p {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }

  .produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
  }
  
  .produk-item {
    background-color: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .produk-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .produk-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .produk-item h3 {
    margin: 0;
    font-size: 1.2em;
    color: #c82c6c; /* pink tua */
  }
  
  .produk-item p {
    font-size: 0.95em;
    margin: 8px 0;
    color: #555;
  }
  
  .produk-item .harga {
    font-weight: bold;
    color: #222;
  }
  
  .keranjang {
    margin-top: 30px;
    background: rgba(255,255,255,0.8);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .keranjang ul {
    padding-left: 20px;
  }

  select {
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
      
  footer {
    text-align: center;
    padding: 1rem;
    background: #faa3d6;
    border-top: 1px solid #ccc;
    margin-top: 3rem;
  }
  
  .map-box {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: linear-gradient(to right, #ffb6c1, #ffe6f0);
  border-radius: 15px;
  margin: 30px 20px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #870058;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  padding: 12px 24px;
  background-color: #870058;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #b3007a;
}

.hero-image img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Tentang Kami Section */
.tentang {
  text-align: center;
  padding: 50px 30px;
  background-color: #fff0f5;
  border-radius: 10px;
  margin: 30px 20px;
}

.tentang h2 {
  color: #870058;
  font-size: 2em;
  margin-bottom: 15px;
}

.tentang p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1em;
  line-height: 1.6;
}

.content {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  margin: 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.foto-profil {
  text-align: center;
  margin-top: 2rem;
}

.foto-profil img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #f8c4d9;
}

.galeri-about {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.galeri-about img {
  width: 200px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.galeri-about img:hover {
  transform: scale(1.05);
}

.testimoni {
  text-align: center;
  font-style: italic;
  margin: 2rem 0;
  padding: 1rem;
  background-color: #fff4f7;
  border-left: 4px solid #e91e63;
  border-radius: 8px;
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta a {
  background: linear-gradient(135deg, #ff4e8b, #ffc1d3);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta a:hover {
  background: linear-gradient(135deg, #e91e63, #ff80aa);
}

/* Galeri Mini */
.galeri-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  justify-content: center;
}

.galeri-mini img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeri-mini img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Timeline */
.timeline {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid #f090c4;
}

.timeline h3 {
  color: #d04a8c;
  margin-bottom: 10px;
}

.timeline ul {
  list-style: none;
  padding-left: 10px;
}

.timeline li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
}

.timeline li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -12px;
  width: 10px;
  height: 10px;
  background-color: #f090c4;
  border-radius: 50%;
}

/* QR Code */
.qr-code {
  margin-top: 40px;
  text-align: center;
}

.qr-code img {
  width: 150px;
  height: auto;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.qr-code img:hover {
  transform: rotate(5deg) scale(1.05);
}

