/* =========================================
   THEME C — Moose On The Loose Food Truck
   Layout Option 4 (Logo Left / Slideshow Right)
   ========================================= */

/* GLOBAL */
body {
    margin: 0;
    background: #1e1209;
    color: #fff8e6;
    font-family: 'Arial', sans-serif;
}

h1, h2 {
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    color: #ffbe55;
    text-decoration: none;
}

/* HEADER */
.site-header {
    background: #2a1a10;
    padding: 10px 20px;
    border-bottom: 3px solid #ff9900;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px;
}

/* NAV */
.top-nav a {
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.tagline {
    font-size: 20px;
    color: #ffbe55;
    margin: 10px 0;
}

.hero-buttons .btn {
    display: inline-block;
    background: #ff9900;
    padding: 10px 20px;
    color: #000;
    margin-right: 10px;
    font-weight: bold;
    border-radius: 6px;
}

/* SLIDESHOW */
.hero-right {
    flex: 1;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 3px solid #ff9900;
    border-radius: 10px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* ABOUT */
.about {
    padding: 40px;
    background: #2a1a10;
}

/* MENU */
.menu {
    padding: 40px;
}

.menu-grid {
    display: flex;
    gap: 20px;
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 2px solid #ff9900;
    border-radius: 6px;
}

/* SCHEDULE */
.schedule {
    padding: 40px;
    background: #2a1a10;
}

.schedule-list li {
    margin: 10px 0;
}

/* CONTACT */
.contact {
    padding: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 4px;
    border: none;
}

.contact-form button {
    padding: 14px 20px;
    background: #ff9900;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #2a1a10;
    color: #ffbe55;
}
/* ---------- MENU LAYOUT FIXES ---------- */

.menu-category h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: bold;
  font-size: 18px;
}

.menu-item-desc {
  font-size: 14px;
  color: #e0d3b5;
  margin-top: 4px;
  max-width: 520px;
}

.menu-item-price {
  font-weight: bold;
  color: #ffb300;
  font-size: 18px;
  white-space: nowrap;
  padding-left: 20px;
}

/* ---------- NOTES (NO PRICE) ---------- */

.menu-note {
  font-style: italic;
  color: #ccc;
  margin: 6px 0 12px 10px;
  font-size: 14px;
}

/* ---------- FAVORITES ---------- */

.menu-item.favorite .menu-item-name {
  color: #ffcc66;
}

.fav-star {
  font-size: 14px;
  margin-left: 6px;
}

/* ---------- FEATURED ITEMS (HOME) ---------- */

.section-title {
  letter-spacing: 3px;
}

/* ===== MENU PAGE LAYOUT FIX ===== */

/* ===== MENU PAGE LAYOUT ONLY ===== */

.menu-page .menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
}

.menu-page .menu-card,
.menu-page .menu-side-card {
  width: 100%;
  max-width: none;
}


.menu-card {
  width: 100%;
  max-width: none;
  padding: 28px;
}

.menu-side-card {
  width: 100%;
  max-width: none;
}
/* ===== HOME PAGE CARD SAFETY ===== */

.hero .menu-grid {
  display: flex;
  gap: 32px;
}

.hero .menu-card {
  flex: 1.5;
}

.hero .menu-side-card {
  flex: 1;
}
/* ===== FORCE HOME HERO LAYOUT (FIX SHRUNK CARD) ===== */

.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.hero-card {
  flex: 1.6;
  min-width: 0;
}

.hero-image-card {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}
/* ===== HERO IMAGE ROTATOR ===== */

.hero-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.hero-rotator img.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-rotator img.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
/* ===== HERO ROTATOR: FIX HEIGHT + STACKING ===== */

.hero-image-placeholder.hero-rotator {
  position: relative;
  width: 100%;
  height: 320px;           /* key: prevents the “tiny strip” */
  border-radius: 14px;
  overflow: hidden;
}

/* If your hero card is taller, match it */
.hero-image-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-rotator img.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-rotator img.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
