@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,600&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 100%; }

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #333334;
  background: #fff;
}

p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; vertical-align: middle; border: 0; }

a { color: #febe00; text-decoration: none; }
a:hover, a:focus { color: #333333; text-decoration: underline; }

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
  color: #e40000;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  margin-top: 0;
  text-rendering: optimizelegibility;
}

h1 {
  color: #000;
  font-size: 40px;
  font-weight: normal;
  line-height: 50px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  line-height: 36px;
  margin-top: 35px;
  margin-bottom: 8px;
  text-align: center;
}

/* h3 used for uppercase black labels (e.g., locations footer, breakfast served until) */
h3 {
  color: #000;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* h4 used for serving/price info lines */
h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  text-align: center;
}

/* h5 used for subtitle detail lines */
h5 {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 16px;
  text-align: center;
}

/* ===== Page Wrapper ===== */
.page-wrapper {
  min-height: calc(100vh - 150px);
  padding-top: 109px;
}

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 109px;
  background: #f7e0c8;
  z-index: 9999;
  display: flex;
  align-items: stretch;
}

#logo {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  flex-shrink: 0;
}

#logo a { display: block; }
#logo img { height: 78px; width: auto; }

/* ===== Desktop Navigation ===== */
#main-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

#main-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

#main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

#main-nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 27px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #000;
  background: #f7e0c8;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s;
}

#main-nav > ul > li > a:hover,
#main-nav > ul > li > a.active {
  background: #fdc488;
  color: #000;
  text-decoration: none;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f7e0c7;
  min-width: 220px;
  z-index: 10000;
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 17px;
  font-family: 'Open Sans', sans-serif;
  color: #000;
  border-top: 1px solid #f0e8dc;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #fdc488;
  color: #000;
  text-decoration: none;
}

/* ===== Hamburger Button ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 15px;
  flex-direction: column;
  gap: 6px;
  align-self: center;
  margin-right: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* ===== Mobile Overlay ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1005;
}
.mobile-overlay.open { display: block; }

/* ===== Mobile Nav ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  background: #fff;
  z-index: 1010;
  overflow-y: auto;
  transform: translateX(-270px);
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  box-shadow: 3px 0 8px rgba(0,0,0,0.1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  background: #f7e0c8;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 0;
  flex-shrink: 0;
}

.mobile-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav > ul > li {
  position: relative;
}

.mobile-nav > ul > li > a {
  display: block;
  padding: 14px 25px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f0e8dc;
  text-decoration: none;
}

.mobile-nav > ul > li > a:hover {
  background: #f7e0c8;
  color: #000;
  text-decoration: none;
}

.mobile-nav .expand-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 49px;
  width: 48px;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fafafa;
}
.mobile-sub.open { display: block; }

.mobile-sub li a {
  display: block;
  padding: 10px 20px 10px 35px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0e8dc;
  text-decoration: none;
}

.mobile-sub li a:hover {
  background: #f7e0c8;
  color: #000;
  text-decoration: none;
}

/* ===== Main Content ===== */
main {
  padding: 30px 0 40px;
}

.content-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Home Page ===== */
.hero-image {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.home-text h1 { text-align: center; }
.home-text p { margin-bottom: 14px; }

/* ===== Menu/Table Styles ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}

tr.menuItems { line-height: 21px; }

tr.menuItems td {
  font-weight: bold;
  padding: 10px 14px;
  vertical-align: top;
  border: 1px solid #ddd;
}

/* Remove paragraph spacing inside item cells so name and description stay tight */
tr.menuItems td p { margin: 0; }

td[style*="width: 10%"],
td[style*="width:10%"] {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

.menuitemdesc {
  font-weight: normal;
  font-style: italic;
  margin: 0;
  line-height: 20px;
}

p.addonitem {
  margin-top: 14px;
  font-style: italic;
  color: #555;
}

.menuItemNumbers {
  width: 35px;
  font-weight: bold;
  vertical-align: top;
  color: #333;
}

/* Price column alignment */
.price-col {
  width: 10%;
  text-align: right;
  white-space: nowrap;
}

/* Section food images */
.section-img {
  display: block;
  margin: 20px auto 10px;
}

/* ===== Locations Page ===== */
.locations-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.location-col {
  flex: 1;
}

.location-col h2 {
  text-align: left;
  font-size: 21px;
  line-height: 22px;
  font-style: normal;
  margin-top: 16px;
  margin-bottom: 4px;
}

.location-col h2:first-child {
  margin-top: 0;
}

.location-col p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

.current-location h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 2px;
  text-transform: uppercase;
}

/* ===== Footer ===== */
#footer-wrapper {
  background: #f7e0c8;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-location-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-maps {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.footer-maps a { display: block; }

.footer-maps img {
  border: 1px solid #f7e0c8;
  max-width: 200px;
  transition: border-color 0.2s, opacity 0.2s;
}

.footer-maps img:hover {
  border-color: #fdc488;
  opacity: 0.5;
}

.footer-text { flex: 1; min-width: 200px; }

.footer-text p { margin-bottom: 6px; }

.footer-text hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 10px 0;
}

.footer-address {
  font-size: 18px;
  line-height: 30px;
  margin-top: 4px;
}

.footer-address a {
  color: #333334;
  text-decoration: none;
}
.footer-address a:hover { text-decoration: underline; }

.footer-phone {
  font-size: 25px;
  font-weight: bold;
  color: #333334;
  display: block;
}

.copyright {
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 15px;
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  #header { height: 64px; }
  .page-wrapper { padding-top: 64px; }
  #logo img { height: 46px; }
  #main-nav > ul > li > a { padding: 0 18px; font-size: 15px; }
}

@media (max-width: 960px) {
  #main-nav > ul > li > a { padding: 0 13px; font-size: 14px; }
}

@media (max-width: 767px) {
  #header { height: 60px; }
  .page-wrapper { padding-top: 60px; }
  #main-nav { display: none; }
  .hamburger { display: flex; }
  #logo { padding: 10px 15px; }
  #logo img { height: 40px; }
  main { padding: 20px 0 30px; }
  h1 { font-size: 32px; line-height: 40px; }
  h2 { font-size: 26px; line-height: 32px; }
  h3 { font-size: 18px; }
  .locations-grid { flex-direction: column; }
  /* Footer: stack images above text */
  .footer-location-block { flex-direction: column; gap: 12px; }
  .footer-maps { flex-direction: row; width: 100%; }
  .footer-maps a { flex: 1; }
  .footer-maps img { width: 100%; max-width: none; height: auto; }
  .footer-text { width: 100%; min-width: 0; }
}

@media (max-width: 479px) {
  .location-col h2 { font-size: 18px; }
  .location-col p { font-size: 12px; line-height: 14px; }
}
