/* Speise Qora Restaurant Page Styles */

#restaurant-main {
  min-width: 0;
}

.restaurant-eyebrow {
  display: inline-block;
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  text-transform: uppercase;
  letter-spacing: var(--label-letter-spacing);
  font-weight: 600;
  color: var(--color-burgundy);
  margin-block-end: var(--space-2);
}

.restaurant-eyebrow-on-dark {
  color: var(--color-cream-foreground);
}

.restaurant-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-midnight-foreground);
  margin-block-end: var(--space-4);
}

.restaurant-section-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  margin-block-end: var(--space-6);
}

.restaurant-section-heading .restaurant-lead {
  max-width: 65ch;
  margin-inline: auto;
}

/* Hero */
.restaurant-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-midnight-blue);
}

.restaurant-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.restaurant-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.restaurant-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(26, 42, 58, 0.35) 0%, rgba(26, 42, 58, 0.65) 55%, rgba(26, 42, 58, 0.85) 100%);
}

.restaurant-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: var(--space-6) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.restaurant-hero__content h1 {
  color: var(--color-cream-foreground);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  max-width: 20ch;
  margin-block-end: 0;
}

.restaurant-hero__lead {
  color: var(--color-cream-foreground);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 55ch;
  margin-block-end: 0;
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-block-start: var(--space-3);
}

.restaurant-hero__actions .btn {
  min-width: 200px;
}

/* Concept */
.restaurant-concept__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.restaurant-concept-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  height: 100%;
}

.restaurant-concept-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-burgundy);
  color: var(--color-burgundy-foreground);
  flex-shrink: 0;
}

.restaurant-concept-card h3 {
  margin-block-end: 0;
}

.restaurant-concept-card p {
  margin-block-end: 0;
  max-width: 55ch;
}

/* Highlights */
.restaurant-highlights__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-6);
  align-items: start;
}

.restaurant-highlights__text {
  min-width: 0;
}

.restaurant-highlights__text h2 {
  margin-block-end: var(--space-3);
}

.restaurant-highlights__text .restaurant-lead {
  max-width: 70ch;
}

.restaurant-dish-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block-end: var(--space-4);
}

.restaurant-dish-item {
  border-left: 3px solid var(--color-burgundy);
  padding-left: var(--space-4);
}

.restaurant-dish-item h3 {
  margin-block-end: var(--space-1);
}

.restaurant-dish-item p {
  margin-block-end: 0;
  max-width: 70ch;
}

.restaurant-text-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.restaurant-text-link:hover {
  color: var(--color-dark-walnut);
}

.restaurant-highlights__media {
  min-width: 0;
}

.restaurant-highlights__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

/* Atmosphere */
.restaurant-atmosphere .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.restaurant-atmosphere__content {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.restaurant-atmosphere__content h2 {
  color: var(--color-cream-foreground);
}

.restaurant-atmosphere__content p:not(.eyebrow) {
  color: var(--color-cream-foreground);
  max-width: 70ch;
  margin-inline: auto;
  margin-block-end: 0;
}

.restaurant-atmosphere__media {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}

.restaurant-atmosphere__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

/* Casino Link */
.restaurant-casino-link__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: center;
}

.restaurant-casino-link__text {
  min-width: 0;
}

.restaurant-casino-link__text h2 {
  margin-block-end: var(--space-3);
}

.restaurant-casino-link__text p {
  max-width: 70ch;
  margin-block-end: var(--space-4);
}

.restaurant-casino-link__text .content-list {
  margin-block-end: var(--space-4);
}

.restaurant-casino-link__media {
  min-width: 0;
}

.restaurant-casino-link__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

/* Events */
.restaurant-events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-block-end: var(--space-6);
}

.restaurant-event-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  height: 100%;
}

.restaurant-event-card h3 {
  margin-block-end: 0;
}

.restaurant-event-card p {
  margin-block-end: 0;
  max-width: 55ch;
}

.restaurant-events__cta {
  display: flex;
  justify-content: center;
}

.restaurant-events__cta .btn {
  min-width: 220px;
}

/* Reservation */
.restaurant-reservation__content {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.restaurant-reservation__content h2 {
  margin-block-end: 0;
}

.restaurant-reservation__content p {
  max-width: 55ch;
  margin-block-end: 0;
}

.restaurant-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-block-end: var(--space-3);
}

.restaurant-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.restaurant-contact-label {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: var(--color-dark-walnut);
}

.restaurant-contact-list a {
  color: var(--color-burgundy);
  font-weight: 600;
}

.restaurant-contact-list a:hover {
  color: var(--color-dark-walnut);
}

.restaurant-reservation__content .btn {
  min-width: 220px;
}

/* Final CTA */
.restaurant-final-cta__content {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.restaurant-final-cta__content h2 {
  color: var(--color-cream-foreground);
  margin-block-end: 0;
}

.restaurant-final-cta__content p:not(.eyebrow) {
  color: var(--color-cream-foreground);
  max-width: 55ch;
  margin-block-end: 0;
}

.restaurant-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-block-start: var(--space-3);
}

.restaurant-final-cta__actions .btn {
  min-width: 220px;
}

/* Tablet */
@media (max-width: 1024px) {
  .restaurant-concept__grid,
  .restaurant-events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-highlights__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .restaurant-highlights__media {
    order: -1;
  }

  .restaurant-casino-link__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .restaurant-casino-link__media {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .restaurant-hero {
    min-height: 80vh;
  }

  .restaurant-hero__content {
    padding: var(--space-5) var(--space-4);
  }

  .restaurant-hero__content h1 {
    font-size: 2rem;
  }

  .restaurant-hero__lead {
    font-size: 1rem;
  }

  .restaurant-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .restaurant-hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .restaurant-concept__grid,
  .restaurant-events__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .restaurant-section-heading {
    margin-block-end: var(--space-4);
  }

  .restaurant-highlights__grid {
    gap: var(--space-4);
  }

  .restaurant-atmosphere .container {
    gap: var(--space-4);
  }

  .restaurant-casino-link__grid {
    gap: var(--space-4);
  }

  .restaurant-final-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .restaurant-final-cta__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .restaurant-events__cta .btn,
  .restaurant-reservation__content .btn {
    width: 100%;
    min-width: 0;
  }
}
