* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #111;
  color: #eee;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffcc00;
}

nav a {
  margin: 0 10px;
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}
nav a:hover { color: #ffcc00; }

/* Hero dengan efek parallax */
.hero {
  height: 100vh;
  background: url('img/wrg.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-attachment: fixed; /* Parallax */
}

.hero .overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 12px;
  animation: fadeIn 1.5s ease forwards;
}

.hero h1 {
  font-size: 3em;
  color: #ffcc00;
  opacity: 0;
  animation: slideInLeft 1.5s ease forwards;
  animation-delay: 0.5s;
}

.hero p {
  margin-top: 15px;
  font-size: 1.3em;
  color: #fff;
  opacity: 0;
  animation: slideInRight 1.5s ease forwards;
  animation-delay: 1s;
}

.section {
  padding: 80px 20px;
  text-align: center;
}
.section h2 {
  margin-bottom: 20px;
  color: #ffcc00;
}

.menu-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.menu-card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: 0.3s;
}
.menu-card:hover { transform: scale(1.05); }
.menu-card img { width: 100%; height: 180px; object-fit: cover; }
.menu-card h3 { margin: 10px 0; }
.menu-card p { color: #ccc; }
.btn {
  display: inline-block;
  padding: 8px 12px;
  background: #ffcc00;
  color: #111;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: 0.3s;
}
.btn:hover { background: #ffaa00; }

.album-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.album-container img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

footer {
  background: #222;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
}
footer a { color: #ffcc00; text-decoration: none; }

/* Animasi Fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animasi Slide-in dari kiri */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Animasi Slide-in dari kanan */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
