/* 🎨 Theme Variables */
:root {
  --primary: #007bff;
  --accent: #ffc107;
  --success: #28a745;
  --danger: #dc3545;
  --text: #333;
  --bg-light: #f9f9f9;
}

/* 🌍 Base Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 🏠 Homepage container */
#homepageContainer {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 🎯 Hero Section */
/* 📱 Hero Section */
.hero {
  background: linear-gradient(to right, #fffbe7, #ffe0c8);
  text-align: center;
  padding: 2.5rem 1rem;
}
.hero h1 {
  font-size: 2.3rem;
  color: #d35400;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cta-btn {
  display: inline-block;
  background-color: #d35400;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
}

/* 🍱 Menu Panel */
#menuPanel {
  max-width: 680px;
  margin: 2rem auto;
  background-color: #fff8f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-top: 3px solid #f39c12;
}
#menuTitle {
  font-size: 1.6rem;
  color: #e67e22;
  margin-bottom: 1rem;
}
#menuList {
  list-style: none;
  padding: 0;
}
#menuList li {
  background-color: #ffffff;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  border-left: 4px solid #f39c12;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#menuList li::before {
  content: "🍽️ ";
}

/* ℹ️ About Section */
.about {
  max-width: 680px;
  margin: 3rem auto;
  text-align: center;
  color: #555;
}
.about h2 {
  color: #e67e22;
  margin-bottom: 0.75rem;
}

/* 🧡 Footer */
footer {
  text-align: center;
  background-color: #ffe7d6;
  padding: 2rem;
  font-size: 0.9rem;
  color: #a84300;
  border-top: 2px solid #f39c12;
}

/* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
.store-label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.25rem;
}


/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  /* 📱 Hero Section */
.hero {
  background: linear-gradient(to right, #fffbe7, #ffe0c8);
  text-align: center;
  padding: 2.5rem 1rem;
}
.hero h1 {
  font-size: 2.3rem;
  color: #d35400;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cta-btn {
  display: inline-block;
  background-color: #d35400;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
}

/* 🍱 Menu Panel */
#menuPanel {
  max-width: 680px;
  margin: 2rem auto;
  background-color: #fff8f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-top: 3px solid #f39c12;
}
#menuTitle {
  font-size: 1.6rem;
  color: #e67e22;
  margin-bottom: 1rem;
}
#menuList {
  list-style: none;
  padding: 0;
}
#menuList li {
  background-color: #ffffff;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  border-left: 4px solid #f39c12;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#menuList li::before {
  content: "🍽️ ";
}

/* ℹ️ About Section */
.about {
  max-width: 680px;
  margin: 3rem auto;
  text-align: center;
  color: #555;
}
.about h2 {
  color: #e67e22;
  margin-bottom: 0.75rem;
}

/* 🧡 Footer */
footer {
  text-align: center;
  background-color: #ffe7d6;
  padding: 2rem;
  font-size: 0.9rem;
  color: #a84300;
  border-top: 2px solid #f39c12;
}

/* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
}
