html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
.side-nav {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex; /* desktop default */
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ========================= */
/* MOBILE RESPONSIVE DESIGN  */
/* ========================= */

@media (max-width: 768px) {

  /* Hide side navigation on mobile */
  .side-nav {
    display: none;
  }

  .order-buttons {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 15px;

    display: flex;
    flex-wrap: nowrap;        /* 🔥 prevents stacking */
    justify-content: center;  /* keeps them together */
    gap: 8px;
  }

  .order-btn {
    white-space: nowrap;      /* prevents text breaking */
    font-size: 12px;
    padding: 8px 10px;
  }
  
  /* Adjust hero text size */
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .panel h2 {
    font-size: 28px;
  }

  .panel p {
    font-size: 16px;
  }

  /* Reduce section padding */
  .panel {
    padding: 80px 20px;
  }

}

body {
  background-color: #111; /* dark background */
  color: #eee;            /* light text */
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.side-nav a {
  text-decoration: none;
  background: #222;
  color: #eee;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid #444;
}

.side-nav a:hover {
  background: #28a745;
  color: #000;
}

/* Bigger general paragraph text */
.panel p {
  font-size: 24px;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto;
}

/* Bigger section titles */
.panel h2 {
  font-size: 56px;
  margin-bottom: 30px;
}

/* Hero title larger */
.hero h1 {
  font-size: 200px;
}

/* Hero subtitle */
.hero p {
  font-size: 35px;
}

.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.hero {
  background: url('images/header-new.jpg') no-repeat center center/cover;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #28a745;
}

.hero p {
  font-size: 20px;
}

header {
  background: url('images/header-new.jpg') no-repeat center center/cover;
  color: white;
  position: relative;
  text-align: center;
  padding: 100px 20px;
}

header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

header > .container {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 60px 0;
  background-color: #111; /* dark background */
  color: #eee;
}
.section.dark {
  background-color: #222;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
}

/* Menu gallery / images */
.menu-gallery, .menu-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-gallery img, .menu-images img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.menu-gallery img:hover, .menu-images img:hover {
  transform: scale(1.05);
}

/* Menu PDF section */
.menu-pdf iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 10px;
  background-color: #000; /* dark background */
}

/* Fade Animation */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* Language switcher */
.language-switcher button {
  margin: 3px;
  padding: 5px 10px;
  cursor: pointer;
  background-color: #333;
  color: #eee;
  border: none;
  border-radius: 4px;
  transition: 0.2s ease;
}

.language-switcher button:hover {
  background-color: #555;
}

.order-btn { 
  display: flex;
  align-items: center; 
  gap: 10px; background: #28a745; /* Gold accent */ 
  color: #111; 
  font-size: 16px;
  padding: 14px 20px; 
  border-radius: 10px; 
  font-weight: bold; 
  text-decoration: none; 
  box-shadow: 0 6px 12px rgba(0,0,0,0.3); 
  transition: 0.3s; 
}

.order-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;   /* desktop right */
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.order-btn {
  white-space: nowrap;
  font-size: 14px;
}

.order-btn:hover {
  background: #34d058;
  transform: translateY(-2px);
}

.order-btn img {
  height: 20px;
  width: 20px;
}










