* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* === GENERAL PAGE STYLE === */
.page {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* === PAGE 1 === */
.page1 {
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
}

.page1 .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.page1 .content {
  position: relative;
  z-index: 2;
}

.page1 .logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.page1 .logo:hover {
  transform: scale(1.1);
}

.page1 h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.page1 p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
}

button {
  background: #ffb703;   /* warna kuning */
  border: none;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #fb8500;   /* warna oranye saat hover */
  transform: scale(1.05);

}

/* === PAGE 2 === */
.page2 {
  background: #fff;
  color: #333;
}

.page2 .content {
  max-width: 800px;
}

.page2 h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #0041c2;
}

.page2 ol {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
}
.page2 li {
    margin-bottom: 10px;
    text-align: left;
}
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* === PAGE 3 === */
.page3 {
  background: #f5f5f5;
  color: #333;
  flex-direction: column;
  padding: 40px 20px;
}

.page3 h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #023047;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.menu-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 180px;
  height: 180px;
  text-decoration: none;
  color: #023047;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .page1 h1 {
    font-size: 2.3rem;
  }

  .menu-container {
    flex-direction: column;
    align-items: center;
  }

  .menu-card {
    width: 80%;
    height: auto;
    padding: 20px;
  }
}
