:root {
  --primary-red: #e53935;
  --dark-red: #c62828;
  --light-red: #ff6f61;
  --primary-yellow: #ffc107;
  --light-yellow: #fff3cd;
  --bright-yellow: #ffeb3b;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --black-text: #212121;
  --muted-text: #5f5f5f;
  --shadow-soft: 0 18px 40px rgba(33, 33, 33, 0.12);
  --shadow-card: 0 22px 60px rgba(229, 57, 53, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--black-text);
  background:
    radial-gradient(circle at top left, rgba(255, 235, 59, 0.32), transparent 30%),
    linear-gradient(180deg, #fffef8 0%, #fff9f3 36%, #ffffff 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--primary-yellow);
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--muted-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--light-red));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(229, 57, 53, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 57, 53, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--primary-red), var(--primary-yellow));
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.logo-text {
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.social-links a {
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.social-links a:hover,
.contact-list a:hover {
  color: var(--primary-red);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--light-yellow);
  padding: 0.9rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-red);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.32rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  padding: 1.5rem;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  box-shadow: -10px 0 40px rgba(33, 33, 33, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1200;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-yellow);
  color: var(--primary-red);
  font-size: 1.8rem;
}

.mobile-nav {
  display: grid;
  gap: 1rem;
}

.mobile-nav a {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--light-gray);
  font-weight: 700;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33, 33, 33, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(33, 33, 33, 0.72), rgba(229, 57, 53, 0.44)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.35), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(33, 33, 33, 0.22) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy {
  color: var(--white);
}

.hero-copy .eyebrow,
.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-text {
  max-width: 600px;
  margin: 1.4rem 0 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-highlights div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-highlights strong {
  display: block;
  color: var(--bright-yellow);
  font-size: 1.05rem;
}

.hero-highlights span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-gallery {
  justify-self: end;
  width: min(100%, 470px);
}

.hero-gallery-card {
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-gallery-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.hero-gallery-track img {
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  animation: heroFloat 8s ease-in-out infinite;
  opacity: 0.68;
  transform: scale(0.96);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
}

.hero-gallery-track img.is-active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 14px 32px rgba(255, 193, 7, 0.32);
}

.hero-gallery-track img:nth-child(2) {
  animation-delay: 1s;
}

.hero-gallery-track img:nth-child(3) {
  animation-delay: 2s;
}

.hero-gallery-track img:nth-child(4) {
  animation-delay: 3s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.intro-strip {
  padding-top: 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.intro-card,
.form-card,
.party-card,
.map-card,
.about-image img,
.gallery-item,
.menu-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.intro-card {
  background: var(--white);
  padding: 2rem;
}

.intro-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--primary-yellow), var(--bright-yellow));
  color: var(--primary-red);
  font-weight: 800;
}

.intro-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black-text);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(33, 33, 33, 0.08);
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-red);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.menu-item {
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.menu-item img {
  height: 220px;
  object-fit: cover;
}

.menu-content {
  padding: 1.35rem;
}

.menu-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.menu-topline h3 {
  font-size: 1.4rem;
}

.price-tag {
  color: var(--primary-red);
  font-weight: 800;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--light-yellow);
  color: var(--primary-red);
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 1rem;
}

.booking-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.booking-copy,
.about-copy,
.contact-copy {
  max-width: 560px;
}

.booking-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.booking-points div {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--primary-yellow);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 205, 0.42));
  padding: 2rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-weight: 700;
  color: var(--black-text);
}

.form-group input,
.form-group select {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  background: var(--white);
  color: var(--black-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}

.form-message {
  min-height: 24px;
  color: var(--primary-red);
  font-weight: 700;
}

.party-card {
  overflow: hidden;
  background: var(--white);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.party-media img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.party-content {
  padding: 2rem;
  display: grid;
  gap: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.party-features {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.party-features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-text);
}

.party-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
}

.party-form-card {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.gallery-item img {
  height: 280px;
  object-fit: cover;
}

.about-image img {
  min-height: 420px;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--black-text);
}

.map-card {
  overflow: hidden;
  background: var(--white);
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  background:
    linear-gradient(140deg, #2a1d1d 0%, #4c2020 52%, #6b261e 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 1.5rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
}

.footer-links,
.social-links {
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1300;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1080px);
  max-height: 82vh;
  border-radius: 24px;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .booking-grid,
  .about-grid,
  .contact-grid,
  .party-card {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    justify-self: stretch;
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .intro-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-media img {
    max-height: 420px;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0 4rem;
  }

  .hero-highlights,
  .gallery-grid,
  .intro-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-gallery-track img {
    height: 150px;
  }

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

  .section-heading {
    margin-bottom: 2rem;
  }

  .form-card,
  .party-content,
  .intro-card {
    padding: 1.35rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }
}
