* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: white;
  line-height: 1.6;
}

header {
  position: relative;
  height: 100vh;
  background: url('images/rumah.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

header h1 {
  color: #d4af37;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
}

.hero h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
}

.section {
  padding: 80px 10%;
  text-align: center;
}

.section-title {
  color: #white;
  margin-bottom: 50px;
  font-size: 30px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.card {
  background: #d4af37;
  color: black;
  width: 260px;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.card:hover {
  transform: translateY(-10px);
}

footer {
  background: black;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.paket {
  padding: 100px 10%;
  background: #0b0b0b;
  text-align: center;
}

.paket-title {
  color: white;
  font-size: 32px;
  margin-bottom: 60px;
}

.paket-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.paket-card {
  background: #111;
  border: 1px solid #d4af37;
  padding: 35px;
  width: 280px;
  border-radius: 15px;
  transition: 0.3s;
}

.paket-card h3 {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 10px;
}

.harga {
  font-size: 22px;
  margin-bottom: 20px;
  color: white;
}

.paket-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.paket-card ul li {
  margin: 8px 0;
  color: #ccc;
}

.paket-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #d4af37;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.paket-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: #d4af37;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.paket-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.paket-card ul li::marker {
  color: #d4af37;
}

.tengah {
  transform: scale(1.08);
  background: #151515;
}

.paket-note {
  margin-top: 50px;
  font-size: 18px;
  color: #d4af37;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.paket-note p {
  margin-bottom: 3px;
}

.paket-note {
  border-top: 2px solid #333;
  padding-top: 30px;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {

  header {
    height: auto;
    padding: 60px 20px;
  }

  header img {
    height: 200px !important;
  }

  .section {
    padding: 60px 20px;
  }

  .card-container {
    flex-direction: column;
    gap: 25px;
  }

  .card {
    width: 100%;
  }

  .paket-container {
    flex-direction: column;
    gap: 30px;
  }

  .paket-card {
    width: 100%;
  }

  .paket-note {
    font-size: 14px;
    padding: 0 10px;
  }

}

.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 30px 0;
}

.social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

/* WARNA BRAND */
.social a.whatsapp { background: #25D366; color: white; }
.social a.tiktok   { background: #000000; color: white; }
.social a.youtube  { background: #FF0000; color: white; }
.social a.email    { background: #444444; color: white; }
.social a.facebook { background: #1877F2; color: white; }

.social a:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.portfolio {
  padding: 80px 8%;
  background: #0f0f0f;
}

.portfolio-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.portfolio-subtitle {
  font-size: 22px;
  margin: 40px 0 20px;
  color: #c89b3c;
  text-align: center;
  letter-spacing: 1px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
