/* =========================
   FUSION SOCIAL MENU PAGE
========================= */

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: rgba(72,101,97,1);
  color: white;
  text-align: center;
}

/* Header */
.menu-header {
  padding: 3rem 1rem 2rem;
  background-color: rgba(72,101,97,1);
}

.logo {
  width: 160px;
  margin-bottom: 1rem;
}

.menu-header h1 {
  font-family: 'Forum', serif;
  color: #cfb76e;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.menu-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
}

/* Menu Gallery */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #ffffff10;
}

.menu-card {
  background-color: #ffffff10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-card h2 {
  color: #cfb76e;
  font-family: 'Forum', serif;
  margin: 1rem 0 0.5rem;
}

.menu-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  padding: 0 1rem 1.5rem;
}

/* Opening Hours */
.hours {
  background: #ffffff15;
  border-radius: 10px;
  padding: 3rem 1rem;
  margin: 2rem auto;
  max-width: 600px;
}

.hours h2 {
  color: #cfb76e;
  font-family: 'Forum', serif;
  margin-bottom: 1.5rem;
}

.hours-grid .day {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
}

/* Order Online */
.order-online {
  margin: 4rem 0 2rem;
}

.order-online h2 {
  color: #cfb76e;
  margin-bottom: 1rem;
  font-family: 'Forum', serif;
}

.order-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.order-btn {
  background-color: #cfb76e;
  color: rgba(72,101,97,1);
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: white;
  color: rgba(72,101,97,1);
}

.order-btn.call {
  background-color: white;
  color: rgba(72,101,97,1);
}

/* Footer */
.menu-footer {
  padding: 2rem;
  background-color: #ffffff10;
  color: #cfb76e;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-header h1 {
    font-size: 2rem;
  }
  .menu-header p {
    font-size: 0.95rem;
  }
}


/* BACK TO HOME BUTTON */
.back-home-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #cfb76e;
  color: rgba(72, 101, 97, 1);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-home-btn:hover {
  background-color: white;
  color: rgba(72, 101, 97, 1);
  transform: translateY(-2px);
}

/* Make it sticky on mobile for convenience */
@media (max-width: 768px) {
  .back-home-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    z-index: 10000;
  }
}
