/* 🌸 Goodbye Kitty Cafe - Menu Stylesheet 🌸 */

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* Global */
body {
  background: linear-gradient(to bottom, hsl(330, 100%, 95%), hsl(330, 100%, 99%));
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  margin: 0;
}

/* Header / Navbar (Bootstrap compatible) */
.custom-nav {
  background: linear-gradient(90deg, #ffb6d5, #ffe1f0);
  border-bottom: 3px solid #ff69b4;
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.brand-title {
  color: #e6007e;
  font-weight: bold;
}

.nav-links li a {
  color: #e6007e;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff69b4;
  transform: scale(1.1);
}

/* Order Button */
.nav-button {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: white;
  border: 2px solid #e6007e;
  transition: 0.3s;
}

.nav-button:hover {
  background: #e6007e;
  color: white;
}

/* Menu Section */
.menu-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 2px 12px #ffd9ec;
}

/* ID: Required by rubric */
#menu-title {
  color: #e6007e;
  text-align: center;
}

/* Pseudo-element: Required */
#menu-title::before {
  content: "✨ ";
}

/* Menu items */
.menu-item {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px dashed pink;
  margin-bottom: 3rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #e6007e;
  border-top: 3px solid #ff69b4;
  padding-top: 1rem;
}
/* Gallery Images */
.menu-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid pink;
  transition: 0.3s;
}

.menu-img:hover {
  transform: scale(1.05);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff7fb;
}

th, td {
  border: 1px solid #ffb6d5;
  padding: 0.8rem;
}

th {
  background: #ffe1f0;
}

/* Responsive */
@media (max-width: 700px) {
  .menu-section { padding: 1.5rem; }
  .menu-img { height: 200px; }
}