/* styles.css */

/* Animasi Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Navbar */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.logo h1 {
  color: #b68d40;
  font-size: 1.5rem;
}

/* Tombol WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px 60px; /* tambahkan padding kanan & kiri biar ga nempel */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Judul */
.navbar h1 {
  color: #b68d40;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}

/* Menu Navigasi */
.menu {
  list-style: none;
  display: flex;
  gap: 30px; /* kasih jarak antar menu biar lapang */
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
  color: #b68d40;
}



body {
  font-family: 'Poppins', sans-serif;
  background-color: #faf8f5;
  color: #2b2b2b;
  margin: 0;
  padding: 0;
}

/* Navbar Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu a:hover {
  color: #b68d40;
}

/* Hero Section */
.hero {
  background: url('2057ed31-ee6a-4eda-a197-a97e1513dc01.png') center/cover no-repeat;
  height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 10;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Button */
.btn-primary {
  background-color: #b68d40;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #8d6a2b;
}

/* Footer */
.footer {
  background-color: #b68d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* menu.css */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #faf8f5;
  color: #333;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #b68d40;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu a.active,
.menu a:hover {
  color: #b68d40;
}

.menu-section {
  padding: 120px 40px 60px;
}

.menu-section h2 {
  text-align: center;
  color: #b68d40;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.menu-section .desc {
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px;
  transition: 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.menu-item img {
  width: 100%;
  height: 220px;              /* tinggi seragam */
  object-fit: cover;          /* potong gambar proporsional */
  border-radius: 12px;        /* sudut lembut */
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* efek bayangan halus */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item img:hover {
  transform: scale(1.05);     /* efek zoom pas di-hover */
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


.menu-item h3 {
  color: #b68d40;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.menu-item p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.price {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

.footer {
  background-color: #b68d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* galeri/*

body {
  font-family: 'Poppins', sans-serif;
  background-color: #faf8f5;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #b68d40;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu a.active,
.menu a:hover {
  color: #b68d40;
}

/* Galeri Section */
.galeri-section {
  padding: 120px 40px 60px;
}

.galeri-section h2 {
  text-align: center;
  color: #b68d40;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.galeri-section .desc {
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Galeri Grid */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.galeri-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeri-item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeri-item:hover img {
  transform: scale(1.07);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}


.galeri-item:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeri-item:hover .caption {
  opacity: 1;
}

.caption h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  color: #f8d477;
}

.caption p {
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #b68d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

