/* ========================================
   PAGES.CSS — Menu, Story, Reserve styles
   ======================================== */

/* NAV SOLID (for inner pages) */
.nav-solid {
  background: var(--bg);
  border-bottom: 1px solid rgba(240,235,227,0.06);
}

.nav-links a.active {
  color: var(--cream);
  border-bottom: 1px solid var(--red-bright);
  padding-bottom: 2px;
}

/* PAGE HEADER */
.page-header {
  padding: 10rem 3rem 5rem;
  background: var(--bg);
  text-align: center;
}

.page-header-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
}

.page-header-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--cream-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   MENU PAGE
   ======================================== */

.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid rgba(240,235,227,0.06);
}

.menu-section-reverse {
  direction: rtl;
}

.menu-section-reverse > * {
  direction: ltr;
}

.menu-section-image {
  overflow: hidden;
}

.menu-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-section-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-warm);
}

.menu-course-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 2rem;
}

.menu-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240,235,227,0.06);
}

.menu-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cream-muted);
}

/* DRINKS CALLOUT */
.drinks-callout {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 450px;
  background: var(--bg);
  border-top: 1px solid rgba(240,235,227,0.06);
}

.drinks-callout-image {
  overflow: hidden;
}

.drinks-callout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drinks-callout-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}

.drinks-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.drinks-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 480px;
}

/* ========================================
   STORY PAGE
   ======================================== */

.story-block {
  padding: 5rem 3rem;
  background: var(--bg);
}

.story-text-block {
  max-width: 640px;
  margin: 0 auto;
}

.story-text-block p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.story-text-block p:last-child {
  margin-bottom: 0;
}

.story-full-image {
  width: 100%;
}

.story-full-image img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  object-position: center;
}

.story-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.story-image-pair img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.story-cta {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--bg-warm);
}

/* ========================================
   RESERVE PAGE
   ======================================== */

.reserve-page {
  padding: 0 3rem 5rem;
  background: var(--bg);
}

.reserve-info {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.reserve-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reserve-detail-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240,235,227,0.06);
}

.reserve-detail-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.5rem;
}

.reserve-detail-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.reserve-detail-note {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

/* FORM */
.reserve-form-area {
  padding: 2.5rem;
  background: var(--bg-warm);
  border: 1px solid rgba(240,235,227,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(240,235,227,0.04);
  border: 1px solid rgba(240,235,227,0.12);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,235,227,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-bright);
}

.form-group select {
  cursor: pointer;
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: var(--red-bright);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
  text-align: center;
  opacity: 0.6;
}

/* RESERVE IMAGE */
.reserve-image-full {
  width: 100%;
}

.reserve-image-full img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: center;
}

/* LOCATION */
.reserve-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.reserve-location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--bg-warm);
}

.location-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.location-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 440px;
}

.reserve-location-image {
  overflow: hidden;
}

.reserve-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   RESPONSIVE — PAGES
   ======================================== */

@media (max-width: 768px) {
  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .menu-section {
    grid-template-columns: 1fr;
  }

  .menu-section-reverse {
    direction: ltr;
  }

  .menu-section-image img {
    height: 300px;
  }

  .menu-section-content {
    padding: 2.5rem 1.5rem;
  }

  .drinks-callout {
    grid-template-columns: 1fr;
  }

  .drinks-callout-text {
    padding: 2.5rem 1.5rem;
  }

  .story-image-pair {
    grid-template-columns: 1fr;
  }

  .story-image-pair img {
    height: 300px;
  }

  .story-block {
    padding: 3rem 1.5rem;
  }

  .reserve-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reserve-page {
    padding: 0 1.5rem 3rem;
  }

  .reserve-form-area {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reserve-location {
    grid-template-columns: 1fr;
  }

  .reserve-location-text {
    padding: 2.5rem 1.5rem;
  }
}
