/* --- DESAIN ELEGAN & TIPOGRAFI --- */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

h1, h2, h4 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
}

/* --- HEADER & LOGO --- */
header {
  background: #ffffff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  max-height: 50px; /* Ukuran logo disesuaikan */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e91e63; /* Warna pink magenta untuk aksen */
}

/* --- HERO SECTION --- */
.hero {
  padding: 120px 20px;
  text-align: center;
  /* Hapus URL gambar di bawah jika tidak ada gambar background, atau ganti dengan nama file fotomu */
  background: linear-gradient(rgba(253, 239, 244, 0.8), rgba(253, 239, 244, 0.8)), url('../images/hero-bg.jpg') center/cover;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #c2185b;
}

/* --- KONTEN & INSTAGRAM --- */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.instagram-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.instagram-section a {
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #f8e6ee;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  font-size: 14px;
}

/* --- WHATSAPP POP-UP --- */
.wa-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-btn {
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.wa-popup {
  display: none;
  position: absolute;
  bottom: 85px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  width: 260px;
  padding: 20px;
  text-align: center;
}

.wa-popup h4 {
  margin: 0 0 15px 0;
}

.wa-option {
  display: block;
  background: #fdf2f6;
  color: #333;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.wa-option:last-child {
  margin-bottom: 0;
}

.wa-option:hover {
  background: #e91e63;
  color: #fff;
}