/* === Variabel CSS untuk Tema === */
:root {
  --primary-color: #00A99D; /* Teal Segar */
  --accent-color: #FF6B6B;  /* Pink Buah Naga */
  --bg-color: #FFFBEB;      /* Krem Cerah */
  --card-bg: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-light: #FFFFFF;
  --font-heading: 'Lilita One', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-arabic: 'Amiri', serif; 
}

/* === Style Dasar === */
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  position: relative; /* Diperlukan untuk background animasi */
}

/* === Animasi Background === */
.background-shapes div {
    position: fixed;
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    animation: drift 25s infinite linear;
}
.background-shapes .shape1 { width: 80px; height: 80px; left: 10%; bottom: -150px; background-color: var(--primary-color); animation-duration: 22s;}
.background-shapes .shape2 { width: 40px; height: 40px; left: 25%; bottom: -150px; background-color: var(--accent-color); animation-duration: 30s; animation-delay: 5s;}
.background-shapes .shape3 { width: 120px; height: 120px; left: 40%; bottom: -150px; background-color: #FFC107; animation-duration: 18s; animation-delay: 2s;}
.background-shapes .shape4 { width: 60px; height: 60px; left: 70%; bottom: -150px; background-color: var(--accent-color); animation-duration: 25s; animation-delay: 8s;}
.background-shapes .shape5 { width: 90px; height: 90px; left: 85%; bottom: -150px; background-color: var(--primary-color); animation-duration: 20s; animation-delay: 1s;}

@keyframes drift {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-100vh) rotate(360deg); }
}

/* === Animasi Lainnya === */
@keyframes bubble-rise {
  0% { background-position: 5% 100%, 20% 120%, 40% 110%, 65% 100%, 85% 130%, 95% 110%, 15% 125%, 55% 105%; }
  100% { background-position: 5% -10%, 20% 0%, 40% -20%, 65% -15%, 85% -5%, 95% -25%, 15% -15%, 55% -20%; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Header dengan Gaya Asli & Warna Baru === */
header {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background-image: 
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 6%, transparent 15%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 4%, transparent 12%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 5%, transparent 10%);
  background-size: 30px 30px, 50px 50px, 40px 40px;
  background-repeat: no-repeat;
  animation: bubble-rise 12s linear infinite;
}
header > * { position: relative; z-index: 1; }
.bismillah {
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 0.2rem;
}
.judul-utama {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin: 0.2rem 0;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #FFFFFF 50%, #b2fcf7 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.5px #005a53; 
  text-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}
.subjudul {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-top: -0.5rem;
  background: linear-gradient(180deg, #FFFFFF 60%, #b2fcf7 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px #005a53;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/* === Konten Utama === */
main { 
  padding: 2rem 1rem; 
  max-width: 1100px;
  margin: 0 auto;
  position: relative; 
  z-index: 1;
}
.hero {
  text-align: center;
  padding-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
}
.hero img {
  width: clamp(200px, 50vw, 280px);
  border-radius: 25px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 5px solid white;
}
.hero-intro { 
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem auto;
  max-width: 600px;
}
.hero-intro strong {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
}
.hero-text { 
  font-size: 1.1rem;
  margin: 1rem auto 2rem auto;
  max-width: 600px;
  color: #555;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  text-align: center;
}
.feature-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.feature-item .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}
.feature-item h3 {
  font-family: var(--font-heading);
  margin: 0.5rem 0;
  color: var(--text-dark);
}
.feature-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.produk-card {
  background-color: var(--card-bg);
  text-align: center;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; 
  flex-direction: column;
  overflow: hidden; 
}
.produk-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.produk-card img { 
  width: 100%; 
  height: 220px;
  object-fit: cover; 
  border-radius: 15px; 
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.produk-card.jeruk { border-top: 6px solid #FFA500; }
.produk-card.stroberi { border-top: 6px solid #FF6384; }
.produk-card.cokelat { border-top: 6px solid #8B5A2B; }
.produk-card.leci { border-top: 6px solid #F08080; }
.produk-card h3 { 
  font-family: var(--font-heading); 
  margin: 0.5rem 0; 
  color: var(--text-dark);
  font-size: 1.8rem;
}
.produk-card p { 
  color: #666;
  font-size: 0.95rem; 
  margin: 0 0 1.5rem 0;
  flex-grow: 1; 
}
.harga {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.btn-pesan {
  background-color: var(--accent-color); 
  color: var(--text-light);
  border: none; 
  padding: 0.8rem 1.5rem; 
  border-radius: 50px;
  cursor: pointer; 
  font-size: 1rem; 
  font-family: var(--font-body);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}
.btn-pesan:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}
.produk-bundling {
  background: linear-gradient(45deg, var(--primary-color), #00c4b6);
  color: var(--text-light);
}
.produk-bundling img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}
.produk-bundling h3, .produk-bundling p {
  color: var(--text-light);
}
.produk-bundling .harga {
  display: inline-block; 
  background-color: #ffeb3b; 
  color: var(--text-dark);
  padding: 0.5rem 1.2rem; 
  border-radius: 50px;
  font-size: 1.4rem;
}

.testimonials {
    padding: 3rem 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}
.testimonial-card .stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}
.testimonial-card .author {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

footer {
  background-color: #2D2D2D;
  color: var(--text-light);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 4rem;
}
.footer-links a {
  display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.5rem;
  padding: 0.7rem 1.5rem; 
  background-color: var(--primary-color); 
  color: var(--text-light);
  border-radius: 50px; 
  text-decoration: none; 
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.footer-links a:hover {
    background-color: #007a71;
}
.footer-links svg { width: 20px; height: 20px; }
footer p {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}
.zoom-modal {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000; display: none;
  justify-content: center; align-items: center; cursor: zoom-out;
}
.zoom-modal img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 10px; }

@media (max-width: 600px) {
    .judul-utama { font-size: 2.5rem; letter-spacing: 1px; -webkit-text-stroke: 1px #005a53; }
    .subjudul { font-size: 1.1rem; -webkit-text-stroke: 0.5px #005a53;}
    .hero-intro { font-size: 1.2rem; }
    .hero-intro strong { font-size: 1.5rem; }
    .section-title { font-size: 2.2rem; }
    .produk-bundling img { height: 250px; }
}