/* Reset Dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F7F7F7; /* Latar belakang abu-abu muda */
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* 1. HEADER NAVIGASI */
header {
  background-color: #4B0082; /* Ungu Tua/Biru Gelap */
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8em;
  color: #FFD700; /* Kuning Cerah */
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s;
  font-weight: 600;
}

header nav ul li a:hover,
header nav ul li a.active {
  background-color: #FF4500; /* Merah Oranye */
  border-radius: 4px;
}


/* 2. HERO SECTION */
.hero {
  background: #FFD700; /* Kuning Cerah */
  color: #4B0082;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 5px solid #FF8C00;
}

.hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5em;
  margin-bottom: 5px;
  text-shadow: 1px 1px #FFFFFF;
}

.hero h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero .tagline {
  font-size: 1.1em;
  margin-bottom: 30px;
  font-style: italic;
  color: #333;
}

/* Tombol Grab & Gojek */
.delivery-buttons {
  margin-top: 30px;
}

.grabfood-button, .gofood-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.grabfood-button {
  background-color: #00B140; /* Hijau Grab */
  color: white;
}

.gofood-button {
  background-color: #00AA13; /* Hijau Gojek */
  color: white;
}

.grabfood-button:hover, .gofood-button:hover {
  transform: translateY(-3px);
}


/* 3. MENU SECTION (CONTAINER GAMBAR) */
.menu-section {
  background-color: white;
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  color: #FF4500; /* Merah Oranye */
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}

.menu-image-container {
  /* Batasi lebar maksimum agar gambar terlihat bagus di desktop */
  max-width: 600px; 
  margin: 0 auto 30px; /* Tengahkan gambar */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-image {
  width: 100%; /* Membuat gambar responsif */
  height: auto;
  display: block;
  border-radius: 4px;
}

.callout {
  font-size: 0.9em;
  color: #FF4500;
  font-style: italic;
  font-weight: 600;
}


/* 4. CATERING SECTION */
.catering-section {
  background-color: #228B22; /* Hijau */
  color: white;
  padding: 40px 0;
  text-align: center;
}

.catering-section h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #4B0082;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #FFC700;
}


/* 5. FOOTER/CONTACT SECTION */
.contact-footer {
  background-color: #36454F; /* Abu-abu Arang */
  color: white;
  padding: 40px 0;
  text-align: center;
}

.contact-footer h4 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.phone-number {
  display: inline-block;
  background-color: #FF4500;
  color: white;
  font-size: 1.8em;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 10px 0;
  transition: background-color 0.3s ease;
}

.phone-number:hover {
  background-color: #DC143C;
}

.copyright {
  margin-top: 20px;
  font-size: 0.8em;
  color: #aaa;
}


/* 6. RESPONSIVITAS (Mobile View) */
@media (max-width: 768px) {
  .header-container {
      flex-direction: column;
      text-align: center;
  }
  
  header nav ul {
      margin-top: 10px;
      justify-content: center;
  }

  .hero h1 {
      font-size: 2.8em;
  }

  .delivery-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  
  .grabfood-button, .gofood-button {
      margin: 0;
  }
}