* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Original Coffee Color Palette */
  --primary-dark: #2c1810;
  --primary-brown: #4b2e05;
  --accent-gold: #f4c27a;
  --accent-brown: #8b4513;
  --bg-cream: #f5f5dc;
  --bg-white: #ffffff;
  --text-dark: #333;
  --text-light: #666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

/* Container Global */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === PARTICLES BACKGROUND === */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--bg-cream);
}

/* === PROGRESS BAR === */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-brown));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* === BACK TO TOP BUTTON === */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-brown);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

/* === NAVBAR - Minimalist Glassmorphism === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(75, 46, 5, 0.08);
  border-bottom: 1px solid rgba(244, 194, 122, 0.15);
  transition: var(--transition);
}

nav .logo {
  color: var(--primary-brown);
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

nav .logo:hover {
  color: var(--accent-gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9em;
  padding: 8px 18px;
  display: inline-block;
  transition: var(--transition);
  border-radius: 8px;
}

nav a:hover {
  color: var(--accent-gold);
  background: rgba(244, 194, 122, 0.1);
}

nav a.active {
  color: var(--primary-brown);
  background: rgba(244, 194, 122, 0.2);
  font-weight: 600;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: var(--primary-brown);
  cursor: pointer;
  z-index: 1100;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--accent-gold);
}

/* === HEADER - Minimalist Hero === */
header {
  background: linear-gradient(rgba(44, 24, 16, 0.5), rgba(75, 46, 5, 0.4)),
              url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1920&q=80') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 140px 40px 100px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out;
  letter-spacing: 0.5px;
}

header p {
  font-size: 1.1em;
  margin: 15px 0 0;
  animation: fadeInUp 1.2s ease-out;
  font-weight: 400;
  opacity: 0.95;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SECTION === */
section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* === PRODUK - Seamless Minimalist === */
#produk {
  background: transparent;
  padding: 80px 40px;
}

#produk h2 {
  text-align: center;
  color: var(--primary-brown);
  margin-bottom: 50px;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

#produk h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.product {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0;
  text-align: left;
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(244, 194, 122, 0.1);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h3 {
  color: var(--primary-brown);
  font-size: 1.1em;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.product p {
  color: var(--text-light);
  font-size: 0.88em;
  line-height: 1.6;
  margin: 0 20px 15px;
}

.product p:last-child {
  font-weight: 600;
  color: var(--accent-brown);
  margin-bottom: 20px;
  font-size: 0.85em;
}

/* === TENTANG - Modern 2 Column Layout === */
#tentang {
  background: var(--bg-cream);
  padding: 100px 40px;
  margin: 0;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tentang-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tentang-content h2 {
  color: var(--primary-brown);
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.tentang-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.tentang-content > p {
  color: var(--text-dark);
  font-size: 1.05em;
  line-height: 1.9;
  margin-bottom: 40px;
  margin-top: 20px;
}

.tentang-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(244, 194, 122, 0.1);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 12px;
}

.feature-item h3 {
  color: var(--primary-brown);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.85em;
  line-height: 1.5;
  margin: 0;
}

.tentang-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tentang-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tentang-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(75, 46, 5, 0.9), transparent);
  padding: 30px 25px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.tentang-image:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay span {
  color: white;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === GALERI - Minimalist Grid === */
#galeri {
  background: transparent;
  padding: 80px 40px;
  text-align: center;
}

#galeri h2 {
  text-align: center;
  color: var(--primary-brown);
  margin-bottom: 50px;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

#galeri h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.view-more-btn {
  display: inline-block;
  background: var(--primary-brown);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(75, 46, 5, 0.2);
  margin-top: 20px;
}

.view-more-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(75, 46, 5, 0.3);
}

/* === PERTANYAAN - Minimalist Accordion === */
#pertanyaan {
  background: transparent;
  padding: 80px 40px;
}

#pertanyaan .container {
  max-width: 800px;
  margin: 0 auto;
}

#pertanyaan h2 {
  text-align: center;
  color: var(--primary-brown);
  margin-bottom: 50px;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}

#pertanyaan h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid rgba(244, 194, 122, 0.15);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(244, 194, 122, 0.05);
}

.faq-question h3 {
  font-size: 1em;
  font-weight: 600;
  color: var(--primary-brown);
  margin: 0;
}

.faq-icon {
  font-size: 1.5em;
  color: var(--accent-gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.92em;
  line-height: 1.7;
  margin: 0;
}

/* === KONTAK - Clean Minimalist === */
#kontak {
  background: var(--bg-cream);
  padding: 100px 40px;
  margin: 0;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center;
}

.kontak-container {
  max-width: 900px;
  margin: 0 auto;
}

#kontak h2 {
  color: var(--primary-brown);
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.kontak-subtitle {
  color: var(--text-light);
  font-size: 1.1em;
  margin-bottom: 60px;
}

.kontak-grid {
  display: flex;
  justify-content: center;   
  align-items: center; 
  margin-bottom: 50px;
}

.kontak-item {
  background: white;
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(244, 194, 122, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kontak-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.kontak-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
}

.kontak-text h3 {
  color: var(--primary-brown);
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.kontak-text p {
  color: var(--text-light);
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.wa-button::before {
  content: '💬';
  font-size: 1.3em;
}

.wa-button:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* === FOOTER - Minimalist === */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 0;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding: 0 40px 40px;
}

.footer-section h3 {
  color: var(--accent-gold);
  font-size: 1.3em;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-section h4 {
  color: var(--accent-gold);
  font-size: 1.1em;
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 0.92em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-section ul li:hover {
  transform: translateX(4px);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.92em;
  font-weight: 400;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 0.92em;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(244, 194, 122, 0.1);
  border: 1px solid rgba(244, 194, 122, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1em;
}

.social-links a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 24px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(244, 194, 122, 0.15);
}

.footer-bottom p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88em;
  font-weight: 400;
}

.footer-bottom p:last-child {
  color: var(--accent-gold);
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  nav .logo {
    font-size: 1em;
  }

  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 24px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    gap: 6px;
    justify-content: flex-start;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9em;
  }

  nav ul li a:hover {
    transform: translateX(6px);
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
  }

  nav ul.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 260px;
    width: calc(100vw - 260px);
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  header {
    padding: 100px 24px 80px;
    min-height: 60vh;
    background-attachment: scroll;
  }

  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

  section {
    padding: 60px 24px;
  }

  #produk, #galeri {
    padding: 60px 24px;
  }

  #produk h2, #galeri h2, #tentang h2, #pertanyaan h2, #kontak h2 {
    font-size: 1.5em;
    margin-bottom: 35px;
  }

  #tentang {
    padding: 60px 24px;
  }

  .tentang-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tentang-content h2 {
    font-size: 2em;
  }

  .tentang-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tentang-image img {
    height: 350px;
  }

  #kontak {
    padding: 60px 24px;
  }

  #kontak h2 {
    font-size: 2em;
  }

  .kontak-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .kontak-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .kontak-item {
    padding: 30px 20px;
  }

  .kontak-icon {
    font-size: 2.5em;
  }

  #pertanyaan {
    padding: 60px 24px;
  }

  .faq-question h3 {
    font-size: 0.95em;
  }

  .faq-icon {
    font-size: 1.3em;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tentang-content > p {
    font-size: 0.95em;
  }

  .wa-button {
    padding: 14px 30px;
    font-size: 0.95em;
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 32px;
  }

  .footer-section h3 {
    font-size: 1.2em;
  }

  .footer-section h4 {
    font-size: 1em;
  }
}

/* Smooth transitions */
a, button, .product, .gallery img, nav a, .social-links a {
  transition: var(--transition);
}

