* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: #4a4a4a;
  overflow-x: hidden;
  background: #faf9f7;
  min-height: 100vh;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(221, 184, 146, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #d4a574;
  text-decoration: none;
  font-family: "Brush Script MT", cursive;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: #6b5b73;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 500;
}

.nav-links a:hover {
  color: #d4a574;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a574;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("toko.jpg"); /* Gambar kamu */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  font-family: "Brush Script MT", cursive;
  color: #d4a574;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #d4a574;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
  background: #c59660;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Sections */
.section {
  padding: 5rem 7%;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #6b5b73;
  position: relative;
  font-family: "Brush Script MT", cursive;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d4a574;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: justify;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  background: linear-gradient(135deg, #d4a574 0%, #c59660 100%);
  height: 350px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: "🧁";
  font-size: 5rem;
  position: absolute;
  opacity: 0.3;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(221, 184, 146, 0.2);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 220px;
  background: linear-gradient(135deg, #f8e7d8 0%, #e8ddd4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b5b73;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}

.card-content {
  padding: 2rem;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: #6b5b73;
  font-size: 1.4rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d4a574;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  height: 250px;
  background: linear-gradient(135deg, #f8e7d8 0%, #e8ddd4 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b5b73;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(212, 165, 116, 0.1) 50%,
    transparent 51%
  );
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #6b5b73 0%, #5a4a5e 100%);
  color: white;
  text-align: center;
}

.contact h2 {
  color: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #d4a574;
}

/* Footer */
.footer {
  background: #4a4a4a;
  color: white;
  text-align: center;
  padding: 2rem 5%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  25% {
    transform: rotate(90deg) translateX(10px);
  }
  50% {
    transform: rotate(180deg) translateX(0);
  }
  75% {
    transform: rotate(270deg) translateX(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 5%;
  }

  .section h2 {
    font-size: 2.2rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
