/* ============================================
   NATE'S VAPE AND BAIT — Styles
   Palette: cream, deep green, muted navy, warm orange
   ============================================ */

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7DA;
  --green: #2D4A3E;
  --green-light: #3A6152;
  --navy: #1B2838;
  --navy-muted: #2C3E50;
  --orange: #D4792A;
  --orange-light: #E8943F;
  --orange-glow: rgba(212, 121, 42, 0.15);
  --brown: #6B5B47;
  --text: #2B2B2B;
  --text-light: #F5F0E8;
  --text-muted: #7A7062;
  --shadow: rgba(27, 40, 56, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

img { max-width: 100%; display: block; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 40, 56, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 5%;
}

.nav-brand {
  font-family: 'Passion One', cursive;
  font-size: 1.3rem;
  color: var(--orange);
  letter-spacing: 1px;
}

.nav-links { display: flex; gap: 24px; }

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy);
  padding: 120px 5% 80px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,121,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(45,74,62,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  display: inline-block;
  margin-bottom: 24px;
}

.hero-logo {
  width: 320px;
  max-width: 70vw;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 0 4px rgba(212,121,42,0.25);
}

.hero-title {
  font-family: 'Passion One', cursive;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title .amp {
  color: var(--orange);
  font-size: 0.85em;
}

.hero-tagline {
  font-family: 'Passion One', cursive;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-quip {
  color: rgba(245,240,232,0.6);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,74,62,0.5);
  border: 1px solid rgba(58,97,82,0.6);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #5ecc7b;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94,204,123,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(94,204,123,0); }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Passion One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--green);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-title--light {
  color: var(--cream);
}

/* ---- ABOUT ---- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text);
}

.about-text em {
  color: var(--orange);
  font-style: italic;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 2px 12px var(--shadow);
  border-left: 4px solid var(--orange);
}

.about-card-icon { font-size: 1.5rem; }

.about-card p {
  font-size: 0.92rem;
  color: var(--text);
}

/* ---- MENU ---- */
.menu {
  position: relative;
  background: var(--green);
  overflow: hidden;
}

.menu-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212,121,42,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.menu .container { position: relative; z-index: 2; }

.menu-subtitle {
  text-align: center;
  color: rgba(245,240,232,0.55);
  font-style: italic;
  margin-top: -28px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.menu-category {
  font-family: 'Passion One', cursive;
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212,121,42,0.3);
}

.menu-hours {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,240,232,0.45);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.menu-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.2s, background 0.2s;
}

.menu-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
}

.menu-card-name {
  font-family: 'Passion One', cursive;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.menu-card-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 8px;
}

.menu-card-desc {
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
  line-height: 1.55;
}

.menu-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--orange);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- HOURS ---- */
.hours {
  background: var(--cream-dark);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 750px;
  margin: 0 auto 32px;
}

.hours-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
}

.hours-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hours-card-header h3 {
  font-family: 'Passion One', cursive;
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-icon { font-size: 1.6rem; }

.hours-card--bait {
  border-top: 4px solid var(--green);
}

.hours-card--kitchen {
  border-top: 4px solid var(--orange);
}

.hours-schedule {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.hours-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.hours-card--kitchen .hours-time {
  color: var(--orange);
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.hours-sub {
  padding: 10px 0;
}

.hours-sub:first-of-type {
  border-bottom: 1px solid #eee;
}

.hours-label {
  font-family: 'Passion One', cursive;
  font-size: 1.1rem;
  color: var(--navy-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.hours-quip {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.location {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.location-pin { margin-right: 6px; }

/* ---- RESERVATIONS ---- */
.reservations {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.res-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,121,42,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.reservations .container { position: relative; z-index: 2; }

.res-subtitle {
  text-align: center;
  color: rgba(245,240,232,0.5);
  font-style: italic;
  margin-top: -28px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.res-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
}

/* Progress dots */
.res-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.res-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.res-progress-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 8px rgba(212,121,42,0.4);
}

.res-progress-dot.completed {
  background: var(--orange);
  border-color: var(--orange);
}

.res-progress-line {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.res-progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: var(--orange);
  transition: width 0.4s ease;
}

.res-progress-fill.filled {
  width: 100%;
}

/* Steps container */
.res-steps-container {
  position: relative;
}

.res-step {
  display: none;
  animation: stepFadeIn 0.35s ease-out;
}

.res-step--active {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.res-step-label {
  font-family: 'Passion One', cursive;
  font-size: 1.3rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.res-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.res-back-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245,240,232,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.res-back-btn:hover {
  color: var(--cream);
}

.res-step-summary {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
  text-align: right;
}

/* Party size picker */
.party-picker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 360px;
  margin: 0 auto 8px;
}

.party-btn {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.party-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,240,232,0.3);
}

.party-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 2px 12px rgba(212,121,42,0.35);
}

/* Date input */
.res-date-input {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  outline: none;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.res-date-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* Closed message */
.closed-msg {
  background: rgba(212,121,42,0.12);
  border: 1px solid rgba(212,121,42,0.3);
  color: var(--orange-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Time slot grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.time-btn {
  padding: 16px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: transparent;
  border: 1.5px solid rgba(245,240,232,0.25);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.time-btn:hover {
  border-color: var(--orange);
  background: rgba(212,121,42,0.08);
}

.time-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 2px 12px rgba(212,121,42,0.35);
}

.time-btn.taken {
  border-color: rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.2);
  background: rgba(255,255,255,0.02);
  cursor: not-allowed;
  text-decoration: line-through;
  font-size: 0.85rem;
}

/* Step 3: Details form fields */
.form-row {
  margin-bottom: 20px;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.req { color: var(--orange); }
.opt { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5F0E8' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: 'Passion One', cursive;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
  transform: none;
}

/* Confirmation card (Step 4) */
.res-confirmation {
  text-align: center;
  padding: 20px 0;
}

.res-confirm-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.res-confirm-title {
  font-family: 'Passion One', cursive;
  font-size: 2rem;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.res-confirm-sub {
  color: rgba(245,240,232,0.55);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.res-confirm-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 340px;
  margin: 0 auto 28px;
  text-align: left;
}

.res-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.res-confirm-row:last-child {
  border-bottom: none;
}

.res-confirm-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,240,232,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.res-confirm-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

.btn-again {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-again:hover {
  background: rgba(212,121,42,0.1);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-brand {
  font-family: 'Passion One', cursive;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-copy {
  color: rgba(245,240,232,0.35);
  font-size: 0.82rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .form-row--2col {
    grid-template-columns: 1fr;
  }

  .party-picker {
    grid-template-columns: repeat(4, 1fr);
    max-width: 260px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .res-confirm-card {
    padding: 16px 20px;
  }

  .hero { padding: 100px 5% 60px; }
  .hero-logo { width: 240px; }
  .section { padding: 60px 0; }
  .res-form-wrap { padding: 28px 20px; }

  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.82rem; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-logo { width: 200px; }
  .menu-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 0.78rem; }
}
