/* Reset tampilan bawaan browser */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header di atas dengan logo di tengah */
header {
  background-color: #ffffff; /* warna putih */
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Logo di header */
.logo {
  width: 160px; /* bisa kamu ubah ukurannya di sini */
  height: auto;
}

/* Isi utama halaman */
main {
  text-align: center;
  padding: 40px 20px;
}

@media (prefers-color-scheme: dark) {
  header {
    background-color: #ffffff; /* tetap putih di mode gelap */
  }
  body {
    background-color: #f9f9f9; /* tetap terang */
    color: #333;
  }
}




/* Bagian judul utama (Catalogue) */
.title-section {

  text-align: center;
  padding: 20px 0 10px;
}

.title-section h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 3em;
  color: #333;
  margin: 10px 0 0;
  letter-spacing: 1px;
}




.catalogue-section {
  text-align: center;
  background-color: #ffffff; /* biar nyatu sama header putih */
  padding: 40px 20px;
}

.catalogue-title {
  font-family: 'Great Vibes', cursive; /* font sambung elegan */
  font-size: 48px;
  color: #5a4635;
  margin-bottom: 10px;
}

.catalogue-description {
  font-family: 'Merriweather', serif; /* elegan dan mudah dibaca */
  font-size: 18px;
  line-height: 1.6;
  color: #3d3d3d;
  max-width: 800px;
  margin: 0 auto;
}

/* Bagian Produk */
.products-section {
  background-color: #9c9b7a; /* hijau earthy */
  padding: 60px 20px;
  text-align: center;
}

.products-title {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Grid untuk menata kotak produk */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Setiap kotak produk */
.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
}

.product-card p {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  margin-top: 10px;
  color: #3d3d3d;
}

/* Hover effect biar terasa interaktif */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* halaman tentang ecoprint */
.ecoprint-section {
  margin-top: 100px; /* jarak jauh dari products section */
}

.ecoprint-section p {
  text-align: left;  /* rata kiri */
  margin-bottom: 20px; /* jarak antar paragraf */
  font-size: 18px;
  line-height: 1.8;
  color: #3a2f24;
  max-width: 800px;  /* biar paragraf tidak terlalu lebar di layar besar */
  margin-left: auto;
  margin-right: auto; /* biar paragraf tetap di tengah secara horisontal */
}

/* halaman about us */

.about-section p {
  text-align: left;  /* rata kiri */
  margin-bottom: 20px; /* jarak antar paragraf */
  font-size: 18px;
  line-height: 1.8;
  color: #3a2f24;
  max-width: 800px;  /* biar paragraf tidak terlalu lebar di layar besar */
  margin-left: auto;
  margin-right: auto; /* biar paragraf tetap di tengah secara horisontal */
}



.catalogue-section {
  text-align: center;
  background-color: #ffffff; /* biar nyatu sama header putih */
  padding: 40px 20px;
}

.catalogue-title {
  font-family: 'Great Vibes', cursive; /* font sambung elegan */
  font-size: 48px;
  color: #5a4635;
  margin-bottom: 10px;
}

.about-text {
  font-family: 'Poppins', sans-serif;
  color: #3a2f24;
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* HERO SLIDER — Full viewport, responsive */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh; /* full viewport height */
  overflow: hidden;
  background: #000; /* fallback while images load */
}

/* wrapper uses flex horizontal */
.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease;
  will-change: transform;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* ideal, tidak terlalu tinggi */
  background-image: url("images/tampak depan galeri- pratisthaku ecoprint.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* gradasi hitam */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.6)
  );
}

/* teks */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 10px;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  max-width: 600px;
}

@media (max-width: 600px) {
  .hero {
    height: 70vh;
  }
}


/* footer */
.site-footer {
  background-color: #1f1f1f;
  color: #eaeaea;
  padding: 50px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  margin-bottom: 8px;
}

.footer-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto 22px;
  opacity: 0.85;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #eaeaea;
  font-size: 20px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.footer-marketplace {
  margin: 18px 0;
  display: flex;
  justify-content: center;
}

.shopee-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background-color: #2a2a2a;
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 30px;
  cursor: not-allowed;
  opacity: 0.75;
}

.shopee-btn img {
  width: 24px;
  height: auto;
}

.shopee-btn span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #ffffff;
}


.footer-copy {
  margin-top: 28px;
  font-size: 12px;
  opacity: 0.6;
}


.feature-box {
  background-color: #f4f5f0; /* earthy soft */
  padding: 80px 20px;
}

.feature-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* gambar kiri */
.feature-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  display: block;
}

/* teks kanan */
.feature-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: #2f2f2f;
}

.feature-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .feature-inner {
    flex-direction: column;
    text-align: left;
  }

  .feature-image img {
    max-width: 100%;
  }
}


.info-box {
  padding: 80px 5%;
}

.info-box.alt {
  background-color: #f5f5f5;
}

.info-box-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.info-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #222;
}

.info-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .info-box-inner {
    grid-template-columns: 1fr;
  }

  .info-image img {
    height: 260px;
  }
}


.souvenir-section {
  padding: 90px 20px;
  background-color: #ffffff;
  text-align: center;
}

.souvenir-title {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  color: #5a4635;
  margin-bottom: 10px;
}

.souvenir-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #777;
  max-width: 520px;
  margin: 0 auto 50px;
}

/* cards */
.souvenir-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.souvenir-card {
  background-color: #f6f6f2;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.souvenir-card:hover {
  transform: translateY(-6px);
}

.souvenir-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.souvenir-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin: 16px 18px 6px;
  color: #333;
}

.souvenir-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0 18px 18px;
  color: #666;
}

@media (max-width: 900px) {
  .souvenir-cards {
    grid-template-columns: 1fr;
  }

  .souvenir-card img {
    height: 240px;
  }
}


.floral-divider {
  width: 100%;
  height: 160px;
  background-color: #fff; /* ← PENTING */
  background-image: url("images/simpurmark.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  margin: 0;        /* ← ini kuncinya */
  padding: 0;
}

@media (max-width: 600px) {
  .floral-divider {
    height: 110px;
    margin: 0;
  }
}

.leaf-divider {
  width: 100%;
  height: 160px;
  background-color: #fff; /* ← PENTING */
  background-image: url("images/ecoprintmark.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  margin: 0;        /* ← ini kuncinya */
  padding: 0;
}

@media (max-width: 600px) {
  .leaf-divider {
    height: 110px;
    margin: 0;
  }
}

/* WHATSAPP BUTTON */

.whatsapp-section,
.catalog-whatsapp {
  text-align: center;
  margin: 30px 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #25D366;
  color: white;

  text-decoration: none;

  padding: 12px 24px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.whatsapp-btn img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
  display: block;
}

.whatsapp-btn:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}