html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff8f0;
  color: #333;
}

/* header changes */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 96%;
  /* background-color: #d32f2f; */
  background: linear-gradient(135deg, #d85454, #fff3e0); /* subtle gradient */
  color: white;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between; /* logo+title left, nav right */
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid #ddd;
}

/* Logo + Title side by side */
.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo {
  height: 60px;
}

.site-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
  margin-left: 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgb(228, 78, 78);
  font-weight: 500;
  white-space: nowrap;
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: green;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #d32f2f;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
    gap: 20px; /* spacing between links */
    margin-left: 40px; /* add left space from logo/title */
  }

  .hamburger {
    display: block;
  }
}

/* Prevent content hiding behind fixed header */
body {
  padding-top: 100px; /* adjust to header height */
}

/* Prevent content hiding behind fixed header */
body {
  padding-top: 100px; /* adjust to header height */
}

/* Prevent content hiding behind fixed header */
body {
  padding-top: 90px; /* adjust to header height */
}

/* Product grid adapts to screen size */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 24px;
}

/* Product card with image background */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-color: #fffaf0; /* warm off-white */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Overlay for text readability */
.product-card .overlay {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  color: white;
  font-size: 0.9rem;
  border-radius: 0 0 12px 12px;
  text-align: center;
}

/* Highlight selected */
.product-card.selected {
  border: 2px solid #a5d6a7;
  background-color: #fff3cd;
}

/* Quantity input */
/* .qty-input {
  width: 60px;
  padding: 6px;
  margin-top: 8px;
  font-size: 1rem;
} */

/* Product title */
.overlay h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffeb3b; /* bright yellow for contrast */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* glow effect */
  transition: color 0.3s ease;
}

.overlay h3:hover {
  color: #ffc107; /* amber on hover */
}

/* Product description */
.overlay p {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #f1f1f1; /* soft white */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.overlay p:hover {
  color: #ffccbc; /* warm peach highlight */
}

/* Quantity input */
.qty-input {
  width: 80px;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

/* Footer styling */
.site-footer {
  background: linear-gradient(135deg, #d85454, #fff3e0); /* vibrant gradient */
  color: whitesmoke;
  text-align: center;
  padding: 25px 15px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 80px; /* space for order bar */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.site-footer p {
  margin: 8px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr; /* stack cards */
    padding: 12px;
  }

  .overlay {
    font-size: 0.8rem;
    padding: 10px;
  }

  .order-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .order-button {
    width: 100%;
    max-width: none;
    font-size: 1rem;
  }

  .table-display {
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #d32f2f;
    position: absolute;
    top: 60px;
    right: 24px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* .qty-input {
  width: 60px;
  padding: 6px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
} */

.order-button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 24px;
  width: 100%;
}

.order-button:hover {
  background-color: #128c7e;
}

/* Highlight selected product */
.product-card.selected {
  background-color: #fbcdff; /* soft yellow */
  border: 5px solid gold; /* amber border */
  transition: background-color 0.3s ease, border 0.3s ease;
}

/* Sticky order bar */
.order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff8f0;
  border-top: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.table-display {
  font-weight: bold;
  color: #d32f2f;
  font-size: 0.9rem;
}

.order-button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 90%;
  max-width: 400px;
  flex-shrink: 0;
}

.order-button:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .order-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .order-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-footer {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
  .order-bar {
    padding: 10px;
  }
}

/* Mobile nav tweaks */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #d32f2f;
    position: absolute;
    top: 60px;
    right: 24px;
    padding: 12px;
    border-radius: 8px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/* Contact Section */
.contact-section {
  padding: 60px 20px; /* balanced spacing */
  background: linear-gradient(135deg, #d85454, #fff3e0); /* subtle gradient */
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d32f2f; /* brand color */
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Contact details layout */
.contact-details {
  display: flex;
  flex-wrap: wrap; /* responsive wrapping */
  justify-content: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  flex: 1 1 250px; /* responsive width */
  max-width: 300px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 1.4rem;
  color: #d32f2f;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: #d32f2f;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .contact-item {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Location Section */

.location-section {
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    #ffebee,
    #e3f2fd,
    #fff3e0
  ); /* colorful blend */
  text-align: center;
  margin-top: 2px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.2s ease-in; /* smooth entry */
}

.location-section h2 {
  margin-bottom: 12px;
  color: #d32f2f;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #f44336, #ff9800, #4caf50, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* colorful gradient text */
  animation: slideDown 1s ease-out;
}

.location-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
  animation: fadeInUp 1.5s ease-out;
}

/* Map container as a card */
.map-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .location-section {
    padding: 40px 15px;
  }
  .location-section h2 {
    font-size: 1.6rem;
  }
  .map-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .location-section h2 {
    font-size: 1.4rem;
  }
  .location-section p {
    font-size: 1rem;
  }
}

/* Seating Table Selector */

.table-selector {
  padding: 20px;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  text-align: center;
  border-bottom: 2px solid #ddd;
  margin-top: 1px;
}

.table-selector h3 {
  margin-bottom: 12px;
  color: #d32f2f;
  font-size: 1.2rem;
}

.table-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.table-btn {
  background: #ffc107;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.table-btn:hover {
  background: #ff9800;
  color: white;
  transform: scale(1.05);
}

.table-btn.active {
  background: #4caf50;
  color: white;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .table-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .table-btn {
    width: 100%;
    font-size: 1.1rem;
  }
}

.notice-bar {
  position: relative;
  text-align: center; /* center the text */
  background: linear-gradient(
    90deg,
    #ff8a65,
    #fbc02d,
    #4caf50,
    #29b6f6,
    #ab47bc
  );
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 1px; /* push below fixed header */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .notice-bar {
    font-size: 1rem;
    padding: 10px 15px;
    margin-top: 70px;
  }
}

@media (max-width: 480px) {
  .notice-bar {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin-top: 60px;
  }
}
