/*
  Gusto Italian: Booking Page CSS
  Standalone premium reservation layout
*/

/* --- 1. HERO --- */
.book-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ds-ivory);
}
.book-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,38,61,0.5); /* Subtle dark overlay */
}
.book-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

/* --- 2. BOOKING WIDGET SECTION --- */
.book-widget-section {
  padding: 160px 40px; /* Increased vertical padding to compensate for missing sections */
  background-color: var(--ds-sage);
}
.book-widget-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.book-widget-header {
  margin-bottom: 60px;
}
/* Restaurant Selector */
.book-location-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.book-location-btn {
  background: transparent;
  border: 1px solid rgba(8,38,61,0.2);
  color: var(--ds-navy);
  padding: 12px 24px;
  font-family: var(--ds-font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--ds-transition-fast);
}
.book-location-btn:hover,
.book-location-btn.is-active {
  background: var(--ds-navy);
  color: var(--ds-ivory);
  border-color: var(--ds-navy);
}
/* DMN Placeholder */
.dmn-widget-placeholder {
  background: var(--ds-ivory);
  box-shadow: 0 20px 40px rgba(8,38,61,0.05);
  border: 1px solid rgba(8,38,61,0.05);
  padding: 100px 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.dmn-widget-placeholder h3 {
  font-family: var(--ds-font-serif);
  font-size: 1.5rem;
  color: var(--ds-navy);
  margin-bottom: 16px;
}
.dmn-widget-placeholder p {
  font-family: var(--ds-font-sans);
  color: var(--ds-navy);
  opacity: 0.7;
}

/* --- 3. FAQ ACCORDION --- */
.book-faq-section {
  padding: 160px 0; /* Increased vertical padding */
}
.book-faq {
  padding: 120px 40px;
  background-color: var(--ds-sage);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
}
.book-faq-list {
  margin-top: 60px;
}
.book-faq-item {
  border-bottom: 1px solid rgba(8,38,61,0.1);
}
.book-faq-item:last-child {
  border-bottom: none;
}
.book-faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ds-font-serif);
  font-size: 1.5rem;
  color: var(--ds-navy);
  cursor: pointer;
  text-align: left;
}
.book-faq-icon {
  font-family: var(--ds-font-sans);
  font-size: 1.5rem;
  color: var(--ds-peach);
  transition: transform var(--ds-transition-fast);
}
.book-faq-item.is-open .book-faq-icon {
  transform: rotate(45deg);
}
.book-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.book-faq-content p {
  padding-bottom: 32px;
  font-family: var(--ds-font-sans);
  color: var(--ds-navy);
  opacity: 0.8;
  max-width: 800px;
  line-height: 1.6;
}
.editorial-link:hover {
  color: var(--ds-peach) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .book-widget-section { padding: 100px 24px; }
  .book-faq-section { padding: 100px 0; }
  .book-faq { padding: 80px 24px; margin: 0 24px; }
  .book-faq-btn { font-size: 1.25rem; padding: 24px 0; }
  .dmn-widget-placeholder { padding: 60px 24px; }
}

.hero-title { font-family: var(--ds-font-gallins); }


label { font-family: var(--ds-font-neutra); }


input { font-family: var(--ds-font-neutra); }


.booking-desc { font-family: var(--ds-font-minion); }

