/* ================================
   Moose on the Loose - Theme C
   Rustic + Fun + Moose
   ================================ */

/* GLOBAL ------------------------ */
:root {
  --moose-orange: #f39c12;
  --moose-deep-orange: #e67e22;
  --moose-dark: #1f1f1f;
  --moose-forest: #1f5c2e;
  --moose-wood: #f4e7d3;
  --moose-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2b2b2b 0, #101010 55%);
  color: var(--moose-white);
}

/* LAYOUT WRAPPER ---------------- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* HEADER / NAV ------------------ */
.site-header {
  background: linear-gradient(90deg, #141414 0, #2a2218 35%, #141414 100%);
  border-bottom: 3px solid var(--moose-deep-orange);
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .name {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--moose-orange);
}

.brand-text .tagline {
  font-size: 0.75rem;
  color: #fcebd0;
}

/* NAV LINKS --------------------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--moose-deep-orange);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.9rem;
}

/* HERO -------------------------- */
.hero {
  max-width: 1100px;
  margin: 24px auto 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 24px;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(243,156,18,0.1) 0, #121212 55%);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(230,126,34,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fcebd0;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 2.3rem;
  margin: 0 0 10px;
  text-shadow: 0 0 18px rgba(0,0,0,0.8);
}

.hero-subtitle {
  color: #f5e4c4;
  font-size: 1rem;
  margin-bottom: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--moose-deep-orange), #ff6a00);
  color: #fff;
  box-shadow: 0 0 20px rgba(230,126,34,0.7);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(252,235,208,0.5);
  color: #fcebd0;
}

.btn-ghost:hover {
  background: rgba(252,235,208,0.08);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.85rem;
}

.hero-highlight-pill {
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(230,126,34,0.4);
  color: #fcebd0;
}

/* Hero image card */
.hero-image-card {
  background: radial-gradient(circle at top, #333 0, #111 65%);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.8);
  position: relative;
}

.hero-image-placeholder {
  border-radius: 14px;
  background-image: linear-gradient(135deg, #4a2c15, #1f1f1f);
  border: 2px dashed rgba(252,235,208,0.5);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcebd0;
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
}

.hero-sticker {
  position: absolute;
  bottom: 16px;
  right: 18px;
  background: rgba(31,92,46,0.95);
  color: #f8fdf8;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  box-shadow: 0 0 18px rgba(31,92,46,0.7);
}

/* SECTION WRAPPERS ------------- */
.section {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 18px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--moose-orange);
}

.section-subtle {
  font-size: 0.9rem;
  color: #e0d3bf;
}

/* MENU PAGE -------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.15fr);
  gap: 22px;
}

.menu-card,
.menu-side-card {
  border-radius: 18px;
  padding: 18px;
  background: radial-gradient(circle at top left, rgba(243,156,18,0.07) 0, #171717 55%);
  border: 1px solid rgba(230,126,34,0.5);
  box-shadow: 0 10px 26px rgba(0,0,0,0.75);
}

.menu-category {
  margin-bottom: 20px;
}

.menu-category h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fcebd0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(252,235,208,0.2);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: #e0d3bf;
}

.menu-item-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--moose-orange);
}

/* Moose favorite tag */
.menu-item.favorite .menu-item-name::after {
  content: "  • Moose Favorite";
  font-size: 0.78rem;
  color: #ffedb3;
}

/* SCHEDULE PAGE ---------------- */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-card {
  background: linear-gradient(135deg, #241b15, #171717);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(243,156,18,0.5);
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.schedule-main {
  text-align: left;
}

.schedule-date {
  font-size: 0.9rem;
  color: #fcebd0;
}

.schedule-location {
  font-size: 1rem;
  font-weight: 600;
}

.schedule-time {
  font-size: 0.9rem;
  color: #e0d3bf;
}

.schedule-pill {
  background: rgba(31,92,46,0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

/* CONTACT PAGE ----------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
}

.contact-card,
.contact-side-card {
  border-radius: 18px;
  padding: 18px;
  background: radial-gradient(circle at top right, rgba(243,156,18,0.08) 0, #181818 55%);
  border: 1px solid rgba(230,126,34,0.6);
  box-shadow: 0 10px 26px rgba(0,0,0,0.75);
}

.contact-form label {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
  color: #fcebd0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(252,235,208,0.35);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-notice {
  font-size: 0.8rem;
  color: #f5e4c4;
  margin-bottom: 6px;
}

/* ALERTS ----------------------- */
.alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.alert-success {
  background: rgba(31,92,46,0.15);
  border: 1px solid rgba(31,92,46,0.9);
  color: #d9ffdf;
}

.alert-error {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.9);
  color: #ffe0dd;
}

/* FOOTER ----------------------- */
.site-footer {
  background: #101010;
  border-top: 2px solid rgba(230,126,34,0.7);
  padding: 12px 18px;
  font-size: 0.8rem;
  color: #b9b9b9;
  text-align: center;
}

/* RESPONSIVE ------------------- */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-grid,
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-placeholder {
    height: 220px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 18px;
    top: 60px;
    flex-direction: column;
    background: #181818;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.8);
  }

  .nav-links.open {
    display: flex;
  }
}