* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-base: #eef2ea;
  --brown-dark: #556b2f;
  --brown-soft: #6f7f47;
  --gold: #7ed957;
  --gold-soft: #6fbf4b;
  --text-dark: #2b2f22;
  --green-card: #84cf58;
  --green-menu: #8ad652;
  --green-deep: #2f6417;
  --green-mid: #3f7f1f;
  --green-light: #7ed957;
  --green-hover: #66c447;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 14px 30px rgba(0, 0, 0, 0.14);
  --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-base);
  background-image:
    linear-gradient(rgba(238, 242, 234, 0.22), rgba(238, 242, 234, 0.22)),
    url("img/bg-dinos.png");
  background-repeat: repeat;
  background-size: auto, 320px;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
}

.hero-logo {
  position: absolute;
  top: 22px;
  left: 28px;
  z-index: 30;
  display: flex;
  align-items: center;
}

.hero-logo img {
  width: 230px;
  max-width: 32vw;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.carousel {
  position: relative;
  width: 100%;
  height: 66vw;
  min-height: 620px;
  max-height: 860px;
  overflow: hidden;
  background: #18210f;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 6s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 19, 8, 0.82) 0%, rgba(12, 19, 8, 0.62) 35%, rgba(12, 19, 8, 0.18) 70%, rgba(12, 19, 8, 0.08) 100%);
}

.content {
  position: absolute;
  left: 6%;
  bottom: 16%;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  animation: heroTextIn 0.9s ease;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-text {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 24px;
}

.tag {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.content h1 {
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.content h2 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  margin-bottom: 28px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.info-box h3 {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 18px;
  line-height: 1.5;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.68);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav.prev { left: 18px; }
.nav.next { right: 18px; }

.dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.scroll-indicator {
  position: absolute;
  bottom: 70px;
  right: 35px;
  z-index: 12;
  opacity: 0.9;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95));
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0.2; transform: translateY(-5px); }
  50% { opacity: 1; transform: translateY(6px); }
  100% { opacity: 0.2; transform: translateY(-5px); }
}

/* SECTION GENERAL */
.info-location-section {
  margin-top: 0;
  padding-top: 0;
  background-image:
    linear-gradient(rgba(238, 242, 234, 0.20), rgba(238, 242, 234, 0.20)),
    url("img/bg-dinos.png");
  background-repeat: repeat;
  background-size: auto, 320px;
}

/* ANIMACIONES */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* CARDS */
.cards-shell {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding: 0 24px;
  background: transparent;
}

.cards-grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: transparent;
}

.card-rect,
.ticket-card,
.info-card,
.menu-card,
.reserve-card {
  min-height: 290px;
  border: none;
  border-radius: 0;
}

.ticket-card,
.info-card,
.menu-card,
.reserve-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FACTURACIÓN */
.ticket-card {
  background: var(--green-card);
}

.ticket-top {
  border: none;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 24px 24px 18px;
  cursor: pointer;
  flex: 1;
  transition: filter 0.25s ease;
}

.ticket-top:hover {
  filter: brightness(1.03);
}

.ticket-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.ticket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.ticket-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 14px;
}

.ticket-top h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
}

.ticket-helper {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 220px;
}

.ticket-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brown-dark);
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  transition: background 0.25s ease;
}

.ticket-bottom:hover {
  background: #4b5c29;
}

.ticket-bottom-icon {
  font-size: 18px;
}

.ticket-bottom-text {
  font-size: 16px;
  font-weight: 700;
}

.ticket-bottom-sub {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 800;
  opacity: 0.95;
}

.ticket-note {
  background: #6b8841;
  color: #f5ffe9;
  font-size: 12px;
  line-height: 1.45;
  padding: 14px 20px 16px;
}

/* INFO */
.info-card {
  background: #ffffff;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: #fffefb;
  z-index: 2;
}

.info-card .icon,
.menu-card .icon,
.reserve-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.info-card h3,
.menu-card h3,
.reserve-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--brown-dark);
}

.card-subtitle {
  color: var(--green-mid);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-card p,
.menu-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #59614b;
  max-width: 240px;
  margin: 0 auto;
}

/* MENU CARD */
.menu-card {
  background: var(--green-menu);
  text-align: center;
  align-items: center;
  padding: 32px 24px;
  cursor: pointer;
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.04);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.menu-sub {
  color: var(--green-deep);
}

.menu-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--brown-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover .menu-card-btn {
  transform: translateY(-2px);
  background: #47592a;
  box-shadow: 0 8px 20px rgba(71, 89, 42, 0.28);
}

/* RESERVA */
.reserve-card {
  background: linear-gradient(180deg, var(--green-mid) 0%, var(--green-deep) 100%);
  color: #fff;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.reserve-card:hover {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-hover) 100%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.reserve-icon {
  color: #dfffb7;
}

.reserve-card h3 {
  color: #fff;
  max-width: 250px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.reserve-line {
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: #dfffb7;
  margin-top: 18px;
  transition: width 0.25s ease;
}

.reserve-card:hover .reserve-line {
  width: 92px;
}

/* MAPA + CONTACTO */
.map-contact-grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0 24px 0;
  background: transparent;
}

.map-box {
  min-height: 520px;
  background: transparent;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.contact-box {
  background: var(--gold-soft);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  box-shadow: var(--shadow-soft);
}

.contact-tag {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e9ffe0;
}

.contact-box h2 {
  font-size: clamp(34px, 3vw, 60px);
  line-height: 1.02;
  color: var(--brown-dark);
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #eefbe8;
}

.contact-details strong {
  color: #ffffff;
}

.contact-details a {
  color: #eefbe8;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* SOCIAL */
.social-block {
  display: grid;
  gap: 14px;
}

.social-title,
.reviews-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ecffe5;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #f7fff3;
  background: rgba(255,255,255,0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 47, 14, 0.18);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.facebook { color: #dce9ff; }
.tiktok { color: #f5fff0; }
.instagram { color: #ffe3f3; }

/* REVIEWS */
.reviews-block {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviews-link {
  font-size: 13px;
  font-weight: 700;
  color: #f3ffe9;
  text-decoration: none;
}

.reviews-link:hover {
  text-decoration: underline;
}

.reviews-carousel {
  position: relative;
  min-height: 155px;
}

.review-slide {
  display: none;
  background: rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.review-slide.active {
  display: block;
}

.review-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #efffe5;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #f2ffeb;
  margin-bottom: 12px;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  color: #e0f8d4;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviews-nav {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(21,47,14,0.18);
  color: #efffe5;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-nav:hover {
  background: rgba(21,47,14,0.28);
  transform: scale(1.03);
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-dot.active {
  background: #ffffff;
  transform: scale(1.15);
}

/* FOOTER */
.footer {
  background: var(--green-deep);
  color: #eaffdc;
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  margin-top: 0;
}

/* MODALES */
.reservation-modal,
.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.reservation-modal.active,
.menu-modal.active {
  display: block;
}

.reservation-backdrop,
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.reservation-modal-content,
.menu-modal-content {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  height: min(86vh, 860px);
  margin: 4vh auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-strong);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reservation-modal-header,
.menu-modal-header {
  padding: 22px 28px 14px;
  background: #f3f8ef;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.reservation-modal-header h2,
.menu-modal-header h2 {
  font-size: 28px;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.reservation-modal-header p,
.menu-modal-header p {
  color: var(--brown-soft);
}

.reservation-modal-body,
.menu-modal-body {
  flex: 1;
  background: #fff;
}

.reservation-modal-body iframe,
.menu-modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reservation-modal-footer,
.menu-modal-footer {
  padding: 14px 28px 18px;
  background: #f3f8ef;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reservation-external-link,
.menu-external-link {
  color: var(--brown-dark);
  font-weight: 700;
  text-decoration: none;
}

.reservation-external-link:hover,
.menu-external-link:hover {
  text-decoration: underline;
}

.reservation-close,
.menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(85,107,47,0.12);
  color: var(--brown-dark);
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease, transform 0.25s ease;
}

.reservation-close:hover,
.menu-close:hover {
  background: rgba(85,107,47,0.18);
  transform: scale(1.04);
}

/* MENÚ CARRUSEL */
.menu-carousel-modal {
  width: min(1280px, calc(100% - 30px));
  height: min(92vh, 980px);
}

.menu-carousel-body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(55,55,55,0.22) 0%, rgba(20,20,20,0.92) 70%);
  overflow: hidden;
}

.menu-carousel-view {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.menu-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  transform: scale(0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 72px;
}

.menu-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  background: #111;
}

.menu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.46);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-nav:hover {
  background: rgba(0,0,0,0.7);
}

.menu-prev { left: 16px; }
.menu-next { right: 16px; }

.menu-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 22px 18px;
  background: #f3f8ef;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.menu-counter {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-dark);
}

.menu-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(85,107,47,0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.menu-dot.active {
  background: var(--brown-dark);
  transform: scale(1.15);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-image: url("img/bg-dinos.png");
    background-repeat: repeat;
    background-size: 260px;
    border-radius: var(--radius-xl);
  }

  .card-rect,
  .ticket-card,
  .info-card,
  .menu-card,
  .reserve-card {
    min-height: 250px;
  }

  .map-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  html, body {
    background-size: auto, 220px;
  }

  .carousel {
    height: 88vh;
    min-height: 650px;
  }

  .hero-logo {
    top: 16px;
    left: 16px;
  }

  .hero-logo img {
    width: 150px;
    max-width: 48vw;
  }

  .content {
    left: 22px;
    right: 22px;
    bottom: 90px;
    max-width: none;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .content h1 {
    font-size: 42px;
  }

  .content h2 {
    font-size: 22px;
  }

  .cards-shell {
    margin-top: -30px;
    padding: 0 14px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 20px;
    background-image: url("img/bg-dinos.png");
    background-repeat: repeat;
    background-size: 220px;
  }

  .map-contact-grid {
    padding: 0 14px 0;
  }

  .map-box,
  .map-box iframe {
    min-height: 360px;
  }

  .contact-box {
    padding: 28px 22px;
  }

  .contact-box h2 {
    font-size: 36px;
  }

  .nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .scroll-indicator {
    display: none;
  }

  .reservation-modal-content,
  .menu-modal-content {
    width: calc(100% - 20px);
    height: 90vh;
    margin-top: 2vh;
  }

  .menu-carousel-modal {
    width: calc(100% - 12px);
    height: 92vh;
  }

  .menu-slide {
    padding: 16px 16px 22px;
  }

  .menu-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .menu-prev { left: 8px; }
  .menu-next { right: 8px; }

  .menu-carousel-footer {
    justify-content: center;
    text-align: center;
  }

  .reviews-header,
  .reviews-controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .content h1 {
    font-size: 34px;
  }

  .content h2 {
    font-size: 18px;
  }

  .ticket-top,
  .info-card,
  .menu-card,
  .reserve-card {
    padding: 24px 18px;
  }

  .ticket-note {
    padding: 12px 18px 14px;
  }

  .contact-box h2 {
    font-size: 30px;
  }

  .contact-details p,
  .review-text {
    font-size: 14px;
  }
}