/* Bellucci Components */

/* =====================
   FLOATING PARTICLES (Stars)
   ===================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(207, 190, 145, 1) 0%, rgba(207, 190, 145, 0.5) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 1;
  animation: float 20s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(207, 190, 145, 0.6);
  will-change: transform;
}

.particle:nth-child(1) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(2) { width: 6px; height: 6px; animation-duration: 5.5s; }
.particle:nth-child(3) { width: 3px; height: 3px; animation-duration: 3.3s; }
.particle:nth-child(4) { width: 5px; height: 5px; animation-duration: 6.6s; }
.particle:nth-child(5) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(6) { width: 7px; height: 7px; animation-duration: 7.7s; }
.particle:nth-child(7) { width: 3px; height: 3px; animation-duration: 3.3s; }
.particle:nth-child(8) { width: 5px; height: 5px; animation-duration: 5.5s; }
.particle:nth-child(9) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(10) { width: 6px; height: 6px; animation-duration: 6.6s; }
.particle:nth-child(11) { width: 3px; height: 3px; animation-duration: 3.3s; }
.particle:nth-child(12) { width: 5px; height: 5px; animation-duration: 5.5s; }
.particle:nth-child(13) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(14) { width: 6px; height: 6px; animation-duration: 6.6s; }
.particle:nth-child(15) { width: 3px; height: 3px; animation-duration: 3.3s; }
.particle:nth-child(16) { width: 5px; height: 5px; animation-duration: 5.5s; }
.particle:nth-child(17) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(18) { width: 7px; height: 7px; animation-duration: 7.7s; }
.particle:nth-child(19) { width: 3px; height: 3px; animation-duration: 3.3s; }
.particle:nth-child(20) { width: 5px; height: 5px; animation-duration: 5.5s; }
.particle:nth-child(21) { width: 4px; height: 4px; animation-duration: 4.4s; }
.particle:nth-child(22) { width: 6px; height: 6px; animation-duration: 6.6s; }
.particle:nth-child(23) { width: 3px; height: 3px; animation-duration: 3.3s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-40px) translateX(30px);
  }
  50% {
    transform: translateY(20px) translateX(-20px);
  }
  75% {
    transform: translateY(-30px) translateX(-25px);
  }
}

/* =====================
   HEADER (Floating Navbar)
   ===================== */
.header {
  position: fixed;
  top: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  height: var(--header-height);
  background: var(--bg-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 0 var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-dark);
}

.header__logo {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
  color: var(--text-light);
}

.header__logo:hover {
  color: var(--text-light);
}

/* Desktop: Nav sichtbar */
.header__nav {
  display: none;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-small);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-dropdown__toggle:hover {
  color: var(--accent-gold);
}

.nav-dropdown__arrow {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown.active .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: rgb(17, 17, 17);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.active .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__menu a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(239, 231, 210, 0.8);
  transition: all var(--transition-fast);
}

.nav-dropdown__menu a:hover {
  background: rgba(239, 231, 210, 0.05);
  color: var(--accent-gold);
}

/* Mobile: CTA versteckt */
.header .header__cta {
  display: none;
}

/* Mobile: Hamburger sichtbar - elegant wie Original */
.header__menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(239, 231, 210, 0.25);
  border-radius: 8px;
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition-fast);
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Outline Button für Header CTA - elegant wie Original */
.btn--outline {
  background: rgba(24, 24, 24, 0.8);
  color: var(--text-light);
  border: 1px solid rgba(239, 231, 210, 0.25);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.btn--outline:hover {
  background: rgba(40, 40, 40, 0.9);
  border-color: rgba(239, 231, 210, 0.4);
  color: var(--text-light);
}

/* Mobile Navigation - Fullscreen Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(17, 17, 17);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  pointer-events: none;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.mobile-nav__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
}

.mobile-nav__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-light);
  stroke-width: 1.5;
}

.mobile-nav__close:hover {
  border-color: rgba(239, 231, 210, 0.4);
}

/* Decorative Divider - Two diamonds with line */
.mobile-nav__divider {
  display: flex;
  align-items: center;
  gap: 0;
}

.mobile-nav__divider::before,
.mobile-nav__divider::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid var(--border-dark);
  transform: rotate(-45deg);
}

.mobile-nav__divider span {
  width: 32px;
  height: 1px;
  background: var(--border-dark);
  margin: 0 -2px;
}

/* Menu List */
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
}

.mobile-nav__link {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--accent-gold);
}

/* Mobile Nav Dropdown */
.mobile-nav__dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.mobile-nav__dropdown-toggle:hover {
  color: var(--accent-gold);
}

.mobile-nav__dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.mobile-nav__dropdown.active .mobile-nav__dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-nav__dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding-top: var(--spacing-sm);
}

.mobile-nav__dropdown.active .mobile-nav__dropdown-menu {
  display: flex;
}

.mobile-nav__dropdown-menu a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 231, 210, 0.7);
  transition: color var(--transition-fast);
}

.mobile-nav__dropdown-menu a:hover {
  color: var(--accent-gold);
}

/* Hide CTA in mobile nav (links are enough) */
.mobile-nav__cta {
  display: none;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 var(--spacing-lg);
  font-size: var(--font-size-small);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.btn--primary {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn--primary:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

.btn--secondary:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn--full {
  width: 100%;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--spacing-md);
}

.hero__title {
  font-size: var(--font-size-hero-mobile);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
  line-height: var(--line-height-tight);
}

.hero__subtitle {
  font-size: var(--font-size-h3-mobile);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
  margin-top: var(--spacing-sm);
  color: var(--accent-gold);
}

/* =====================
   NAVIGATION CARDS
   ===================== */
.nav-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: 0;
  width: 100%;
}

.nav-card {
  position: relative;
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.nav-card__image img,
.nav-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.nav-card:hover .nav-card__image img,
.nav-card:hover .nav-card__image video {
  transform: scale(1.05);
}

.nav-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 10, 0.5);
  z-index: 2;
  transition: background var(--transition-fast);
}

.nav-card:hover .nav-card__overlay {
  background: rgba(10, 11, 10, 0.3);
}

.nav-card__title {
  position: relative;
  z-index: 3;
  font-size: var(--font-size-h3-mobile);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
}

/* =====================
   MENU TABS
   ===================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-label);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--text-light);
  color: var(--text-dark);
  border-color: var(--text-light);
}

/* =====================
   MENU ITEMS
   ===================== */
.menu-section {
  padding: var(--spacing-xl) var(--spacing-md);
}

.menu-section__title {
  font-size: var(--font-size-h3-mobile);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.menu-section__title::before,
.menu-section__title::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-gold);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.menu-item__header {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
}

.menu-item__name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-dark);
  margin-bottom: 4px;
}

.menu-item__price {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-gold);
}

.menu-item__description {
  font-size: var(--font-size-small);
  color: rgba(239, 231, 210, 0.7);
  line-height: 1.5;
}

.menu-item__description-en {
  font-size: var(--font-size-small);
  color: rgba(239, 231, 210, 0.5);
  font-style: italic;
}

/* =====================
   FORMS
   ===================== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-size: var(--font-size-label);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: var(--input-height);
  padding: 0 var(--spacing-md);
  font-size: var(--font-size-body);
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-input::placeholder {
  color: rgba(10, 11, 10, 0.5);
}

.form-textarea {
  height: 120px;
  padding: var(--spacing-md);
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a0b0a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-md) center;
  padding-right: var(--spacing-2xl);
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.time-slot {
  padding: var(--spacing-sm);
  font-size: var(--font-size-small);
  text-align: center;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--accent-gold);
}

.time-slot.active {
  background: var(--text-dark);
  color: var(--text-light);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: var(--spacing-2xl) var(--spacing-md);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  text-align: center;
}

.footer__logo {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.footer__section h4 {
  font-size: var(--font-size-label);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-sm);
}

.footer__section p,
.footer__section a {
  font-size: var(--font-size-small);
  color: rgba(239, 231, 210, 0.8);
  line-height: 1.8;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer__bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-dark);
  font-size: var(--font-size-label);
  color: rgba(239, 231, 210, 0.5);
}

/* =====================
   CURVED CORNER BLOCK
   Wiederverwendbarer Block mit geschwungenen Ecken
   ===================== */
.curved-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

/* Linke Curve SVG */
.curved-corner__curve-left {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Content Container - passt sich dem Inhalt an */
.curved-corner__content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  height: 40px;
  padding: 8px 0 0 16px;
  background: var(--bg-dark);
  position: relative;
  border-top-left-radius: 24px;
}

/* Obere Curve SVG - rechts positioniert */
.curved-corner__curve-top {
  position: absolute;
  width: 24px;
  height: 24px;
  top: -24px;
  right: 0;
  flex-shrink: 0;
}

/* Social Icons Style innerhalb curved-corner */
.curved-corner__social {
  display: flex;
  gap: var(--spacing-sm);
  padding: 0 8px;
}

.curved-corner__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(218, 197, 167, 0.15);
  border-radius: 50%;
  background: transparent;
  transition: all var(--transition-fast);
}

/* Social-Variante: höherer Container (48px) */
.curved-corner--social .curved-corner__content {
  height: 48px;
  padding: 12px 0 0 16px;
}

.curved-corner__social a:hover {
  background: rgba(239, 231, 210, 0.05);
  border-color: rgba(218, 197, 167, 0.3);
}

/* Text/Label Style innerhalb curved-corner */
.curved-corner__label {
  font-size: var(--font-size-small);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Arrow Icon */
.curved-corner__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 24, 24, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

/* Arrow SVGs für Animation */
.curved-corner__arrow svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.curved-corner__arrow svg:last-child {
  position: absolute;
  transform: translateX(-200%);
}

/* Label Animation */
.curved-corner__label-inner {
  display: block;
  transition: transform 0.3s ease;
}

.curved-corner__label-inner:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

/* Hover Animation auf nav-card */
.nav-card:hover .curved-corner__arrow svg:first-child {
  transform: translateX(200%);
}

.nav-card:hover .curved-corner__arrow svg:last-child {
  transform: translateX(0);
}

.nav-card:hover .curved-corner__label-inner:first-child {
  transform: translateX(100%);
}

.nav-card:hover .curved-corner__label-inner:last-child {
  transform: translateX(0);
}

/* =====================
   PAGE HEADER
   ===================== */
.page-header {
  padding-top: calc(var(--header-height) + var(--spacing-3xl));
  padding-bottom: var(--spacing-xl);
  text-align: center;
  background: linear-gradient(to bottom, rgba(10, 11, 10, 0.9), var(--bg-dark));
}

.page-header__title {
  font-size: var(--font-size-h2-mobile);
  font-weight: 300;
  letter-spacing: var(--letter-spacing-headline);
  text-transform: uppercase;
}

/* =====================
   RESPONSIVE - TABLET & DESKTOP
   ===================== */
@media (min-width: 768px) {
  /* Header: mehr padding auf Desktop */
  .header {
    top: var(--spacing-lg);
    left: var(--spacing-xl);
    right: var(--spacing-xl);
    padding: 0 10px 0 var(--spacing-xl);
  }

  /* Navigation sichtbar */
  .header__nav {
    display: flex;
    gap: var(--spacing-xl);
  }

  .header__nav a {
    font-size: var(--font-size-small);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-label);
    text-transform: uppercase;
  }

  /* CTA Button sichtbar */
  .header .header__cta {
    display: inline-flex;
  }

  /* Hamburger versteckt */
  .header__menu-btn {
    display: none;
  }

  .hero__title {
    font-size: var(--font-size-hero-desktop);
  }

  .hero__subtitle {
    font-size: var(--font-size-h2-desktop);
  }

  .nav-cards {
    flex-direction: row;
    padding: var(--spacing-md);
  }

  .nav-cards .nav-card {
    flex: 1;
    height: 300px;
    border-radius: var(--border-radius-lg);
  }

  .nav-card__title {
    font-size: var(--font-size-h3-desktop);
  }

  .menu-section__title {
    font-size: var(--font-size-h3-desktop);
  }

  .menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .page-header__title {
    font-size: var(--font-size-h2-desktop);
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__info {
    flex-direction: row;
    gap: var(--spacing-3xl);
  }

  .footer__social {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }

  .nav-card {
    height: 400px;
  }

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