@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --primary: #D35400;
  --accent: #E67E22;
  --dark: #222;
  --light: #f9f6ea;
  --gray: #777;
}

/* GLOBAL */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--dark); background: var(--light); line-height:1.6; }

/* NAVIGATION */
.nav {
  position: fixed; top:0; left:0; width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 40px;
  background: rgb(249, 246, 234);
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  z-index:10000;
}
.nav a { margin-left:28px; text-decoration:none; font-weight:500; color:var(--dark); transition:.2s; }
.nav a:hover { color: var(--primary); }
.logo { font-weight:700; font-size:24px; display:flex; align-items:center; gap:10px; }

.nav-logo {
  height: 40px;
  width: auto;
}

/* ORDER NOW BUTTON */
.nav-links {
  display: flex;
  align-items: center;
}

.order-btn {
  margin-left: 32px;
  padding: 10px 18px;
  background: #E67E22;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.order-btn:hover {
  background: #cf711f;
  transform: translateY(-2px);
}

/* HERO + SLIDESHOW */
.hero { position:relative; min-height:100vh; padding-top:120px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; color:white; overflow:hidden; }
.hero::before { content:""; position:absolute; inset:0; background:rgba(0,0,0,0.45); z-index:2; }
.hero h2, .hero p, .hero .btn { position:relative; z-index:3; }
.slideshow { position:absolute; inset:0; z-index:1; }
.slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease-in-out; }
.slide.active { opacity:1; }
.slide span { position:absolute; bottom:30%; left:50%; transform:translateX(-50%); font-size:42px; font-weight:700; color:white; text-shadow:0 4px 12px rgba(0,0,0,0.7); }

.btn { display:inline-block; background:var(--primary); color:white; padding:14px 28px; margin-top:18px; font-weight:600; border-radius:6px; text-decoration:none; transition: background .3s; }
.btn:hover { background: var(--accent); }

/* INFO SECTION */
.info-section { padding:80px 40px; max-width:1100px; margin:auto; }
.info { display:flex; align-items:center; gap:40px; margin-bottom:60px; animation: fadeUp 0.8s ease both; }
.info.reverse { flex-direction:row-reverse; }
.info img { width:50%; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.15); }
.info h3 { font-size:28px; color:var(--primary); }
.info p { font-size:16px; color:var(--gray); }
@media (max-width:768px) {
  .info { flex-direction:column; }
  .info img { width:100%; }
}

/* ===================== */
/* MENU SECTION (UPDATED) */
/* ===================== */

/* MENU PAGE FULL WIDTH SECTIONS */
.menu {
  background: #fafafa;
  padding: 120px 20px 60px; /* extra top padding for navbar */
}

/* Menu main title */
.menu h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  color: var(--primary);
}

/* Each menu section wrapper */
.menu-section-wrapper {
  width: 100%;
  padding: 60px 20px; /* space around each section */
  background: #fff;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.note {
width: 100%;
bacground: #fff;
text-align: left;


}

/* Section title (Appetizers, Soups, etc.) */
.menu-section-wrapper .menu-section {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  border-bottom: 0px solid var(--accent);
  padding-bottom: 8px;
  text-align: left;
}

/* Menu items container */
/* MENU GRID FIX: items stay close together even if few in a row */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 24px;
  justify-content: start; /* align items to left instead of spreading */
  align-items: start;     /* align items to top if they have different heights */
}

/* Optional: make mobile rows stack nicely */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr; /* full width on mobile */
    gap: 20px;
  }
}

/* Menu item card */
.menu-item {
  flex: 1 1 280px; /* grow, shrink, minimum width */
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.menu-item h4 {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  font-weight: 600;
}

.menu-item .price {
  color: var(--primary);
  white-space: nowrap;
}

.menu-item p {
  font-size: 14px;
  color: var(--gray);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .menu-item {
    flex: 1 1 45%; /* 2 items per row on tablets */
  }
}

@media (max-width: 768px) {
  .menu-item {
    flex: 1 1 100%; /* 1 item per row on mobile */
  }

  .menu-section-wrapper {
    padding: 40px 15px;
  }
}

/* REVIEWS */
.google-reviews { text-align:center; padding:60px 40px; background:#f9f6ea; }
.reviews, .review { animation: fadeUp 0.8s ease both; }

/* ABOUT */
.about { padding:60px 40px; }
.about h2, .about h3 { color:var(--primary); }
.about p { font-size:16px; margin-bottom:12px; }
iframe { width:100%; height:300px; border-radius:8px; border:none; }

/* CONTACT FOOTER */
.contact-footer {
  position:relative;
  z-index:10;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  padding:48px 40px;
  background:#111;
  color:#eee;
}

.contact-footer div { max-width:400px; }
.contact-footer h4 { margin-bottom:12px; font-size:18px; font-weight:600; color:var(--accent); }
.contact-footer p { font-size:14px; line-height:1.6; color:#ccc; }

@media (max-width:768px) {
  .contact-footer {
    flex-direction:column;
    text-align:center;
    align-items:center;
  }
  .contact-footer div { max-width:100%; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

/* ========================= */
/* ABOUT PAGE LAYOUT UPDATE */
/* ========================= */

.about-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 0 40px;
}

.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text h3 {
  margin-top: 30px;
  font-size: 22px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 14px;
}

.about-map {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.about-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
  }

  .about-map iframe {
    height: 280px;
  }
}

/* ==============================
   STICKY NAV (FIXED)
================================ */

.nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* REMOVE any body padding-top you added earlier */
body {
  padding-top: 0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  transition: all 0.4s ease;
}

/* MOBILE MENU FIX */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    position: absolute;
    top: 100%; /* now works correctly */
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px;
    font-size: 18px;
  }

  /* HAMBURGER → X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Scroll shadow */
.nav.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* =========================
   OUR MOTTO SECTION
========================= */

.motto-section {
  padding: 70px 20px;
  background: #faf7f2; /* warm neutral tone */
  text-align: center;
}

.motto-title {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a4a2e;
}

.motto-text {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  color: #333;
}

.motto-author {
  display: block;
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .motto-text {
    font-size: 19px;
  }

  .motto-title {
    font-size: 22px;
  }
}

/* HERO SLIDESHOW TEXT MOBILE ADJUSTMENT */
@media (max-width: 1000px) {
  .slide span {
    bottom: 55%; /* move text higher up on mobile */
    font-size: 24px; /* adjust font size */
    max-width: 100%;  /* prevent overflow */
    line-height: 1.5;
    text-align: center;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* Fix for info sections on mobile */
@media (max-width: 768px) {
  .info-section {
    padding: 60px 20px; /* reduce padding on mobile */
  }

  .info, .info.reverse {
    flex-direction: column;  /* stack image above text */
    align-items: center;     /* center content */
    gap: 20px;               /* spacing between image and text */
    margin-bottom: 50px;     /* spacing between sections */
  }

  .info img, .info.reverse img {
    width: 100%;             /* make images full width */
    max-width: 500px;        /* optional: prevent overly wide images */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }

  .info div, .info.reverse div {
    width: 100%;
    text-align: center;      /* center the text */
  }

  .info h3, .info.reverse h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .info p, .info.reverse p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.5;
  }
}

