/* ============================= */
/* PRICING CARDS */
/* ============================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(57,255,20,0.15);
}

.pricing-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 0 20px rgba(255,204,0,0.15);
}

.price {
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--green);
}

/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

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

/* ============================= */
/* INTERACTIVE GLOW (cards, panels) */
/* ============================= */

.panel,
.pricing-card,
.artist-card {
  position: relative;
}

.panel::before,
.pricing-card::before,
.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(57,255,20,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.panel:hover::before,
.pricing-card:hover::before,
.artist-card:hover::before {
  opacity: 1;
}

/* ============================= */
/* STICKY BOOK CTA */
/* ============================= */

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: #000;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 0 20px rgba(57,255,20,0.4);
  transition: transform 0.3s ease;
}

.sticky-cta:hover {
  transform: scale(1.08);
}
/* ============================= */
/* GLOBAL LAYOUT SYSTEM */
/* ============================= */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================= */
/* SECTION SYSTEM */
/* ============================= */

.section {
  margin: 4rem 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* subtle divider between sections */
.section + .section {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 3rem;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
  text-align: center;
  padding: 4rem 1rem;
  margin: 4rem auto 3rem;
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-lead {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  opacity: 0.9;
}

.hero-price {
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================= */
/* CTA BUTTONS */
/* ============================= */

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================= */
/* TESTIMONIAL (single clean style) */
/* ============================= */

#testimonials {
  text-align: center;
}

.testimonial {
  max-width: 650px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.testimonial footer {
  margin-top: 1rem;
  opacity: 0.7;
}

/* ============================= */
/* PRICING TABLE (single version) */
/* ============================= */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.pricing-table th {
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
}

.pricing-table tr {
  border-top: 1px solid var(--border);
}

.pricing-table td strong {
  color: var(--green);
}

/* ============================= */
/* SECTION TEXT */
/* ============================= */

.section h2 {
  margin-bottom: 0.8rem;
}

.section-lead {
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

/* ============================= */
/* FEATURE LIST */
/* ============================= */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.feature-list li {
  margin-bottom: 0.4rem;
}

/* ============================= */
/* CTA ROW */
/* ============================= */

.cta-row {
  margin-top: 1.5rem;
  text-align: center;
}

/* ============================= */
/* FORM */
/* ============================= */

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.full-row {
  grid-column: span 2;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 780px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-row {
    grid-column: span 1;
  }

  .hero {
    padding: 3rem 1rem;
  }
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container {
  width: 100%;
}

.section {
  margin-top: 4.5rem;
}

.hero {
  margin-top: 5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.hero .container {
  max-width: 850px;
  margin: 0 auto;
}

.panel {
  padding: 2.5rem 2rem;
  border-radius: 14px;
}

#testimonials {
  display: flex;
  justify-content: center;
}
.testimonial {
  max-width: 600px;
  width: 100%;
  margin-top: 1.5rem;
}

.pricing-table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.2rem;
}
.pricing-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section + .section {
  margin-top: 4rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
/* --- Global Layout Wrapper --- */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Normalize Section Widths --- */
.section,
.hero {
  width: 100%;
  margin: 0 auto;
}

/* --- Vertical Rhythm --- */
.section {
  margin-top: 4.5rem;
}
.hero {
  margin-top: 5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 850px;
}

/* --- Panel Alignment --- */
.panel {
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: 14px;
}

/* --- Testimonial Alignment --- */
#testimonials {
  display: flex;
  justify-content: center;
}
.testimonial {
  max-width: 600px;
  width: 100%;
}

/* --- Pricing Table --- */
#pricing {
  margin-top: 3rem;
}
.pricing-table {
  width: 100%;
  margin-top: 1.5rem;
}
.pricing-table td,
.pricing-table th {
  padding: 1rem 1.2rem;
}

/* --- Artist Grid --- */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.artist-card {
  width: 100%;
}

/* --- Section Gaps --- */
.section + .section {
  margin-top: 4rem;
}

/* --- Hero Price Anchor --- */
.hero-price {
  margin-top: 1rem;
  color: #00ff88;
  font-weight: 600;
}

/* --- Button Alignment Fix --- */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
/* --- Consistent Section Width & Rhythm --- */
.section,
.hero {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.panel {
  padding: 2.5rem 2rem;
  border-radius: 14px;
  margin-top: 2rem;
}
.section {
  margin-top: 4rem;
}
.hero {
  margin-top: 5rem;
  margin-bottom: 3rem;
  max-width: 900px;
}

/* --- Testimonial Spacing --- */
#testimonials {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.testimonial {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Pricing Card Feel --- */
#pricing {
  margin-top: 3rem;
}
.pricing-table {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  overflow: hidden;
}

/* --- Section Gaps --- */
.section + .section {
  margin-top: 4rem;
}

/* --- Hero Price Anchor --- */
.hero-price {
  margin-top: 1rem;
  color: #00ff88;
  font-weight: 600;
}

/* --- Button Alignment Fix --- */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
/* --- Layout Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Vertical Rhythm & Section Spacing --- */
.section {
  margin: 4rem 0;
}
.hero {
  margin: 5rem 0 4rem;
  text-align: center;
  padding: 4rem 2rem;
}
.panel {
  padding: 2.5rem 2rem;
  border-radius: 14px;
}

/* --- Hero Section --- */
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-lead {
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.9;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* --- Testimonial Block --- */
#testimonials {
  text-align: center;
}
.testimonial {
  max-width: 650px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-left: 3px solid #00ff88;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}
.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.testimonial footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
}
.pricing-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.6;
  letter-spacing: 1px;
}
.pricing-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pricing-table td strong {
  color: #00ff88;
  font-size: 1.1rem;
}

/* --- Section Titles & Lead --- */
.section h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.section-lead {
  margin-bottom: 1.5rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* --- CTA Rows & Buttons --- */
.cta-row {
  margin-top: 2rem;
  text-align: center;
}
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
}
.btn-primary {
  background: #00ff88;
  color: #000;
}
.btn-outline {
  border: 1px solid #00ff88;
  color: #00ff88;
}

/* --- Section Divider Glow (optional) --- */
.section + .section {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 3rem;
}
/* Highlight booking form when artist card triggers pre-fill */
.highlight-form {
  animation: formHighlight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 4px #ffe066, 0 2px 16px 0 #0008;
}
@keyframes formHighlight {
  0% { box-shadow: 0 0 0 0 #ffe066; }
  30% { box-shadow: 0 0 0 8px #ffe066; }
  100% { box-shadow: 0 0 0 0 #ffe066; }
}
/* --- Social Proof / Testimonials --- */
#testimonials {
  margin: 2.5rem auto 2rem auto;
  max-width: 600px;
  background: #181f2a;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 #0008;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
#testimonials h2 {
  color: #ffe066;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.testimonial {
  font-size: 1.2rem;
  color: #e0e6f6;
  border-left: 4px solid #ffe066;
  background: #232b3a;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  margin: 0 auto 0 auto;
  border-radius: 0.7rem;
  box-shadow: 0 1px 8px 0 #0004;
  position: relative;
}
.testimonial footer {
  color: #b0b8c9;
  font-size: 1rem;
  margin-top: 1.1rem;
  font-style: italic;
}
/* What Happens Next checklist */
.next-steps-list {
  margin: 1.2rem 0 0.5rem 0;
  padding: 0 0 0 1.1em;
  color: var(--green);
  font-size: 1.01rem;
  list-style: none;
}
.next-steps-list li {
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 0.2em;
}
/* Pricing Table Styles */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 0.5rem 0;
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1.04rem;
}
.pricing-table th, .pricing-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
}
.pricing-table th {
  background: rgba(255, 204, 0, 0.13);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-table tr {
  border-bottom: 1px solid var(--border);
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td strong {
  color: var(--green);
  font-size: 1.13em;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
  --gold: #ffcc00;
  --green: #39ff14;
  --red: #ff3131;
  --bg: #050505;
  --ink: #e0e0e0;
  --muted: rgba(255, 255, 255, 0.65);
  --panel: rgba(20, 20, 20, 0.8);
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 22%),
    radial-gradient(circle at 90% 80%, rgba(255, 49, 49, 0.06) 0%, transparent 22%),
    linear-gradient(170deg, #0a0a0a 0%, #050505 60%);
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

h1,
h2,
.brand {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(2.1rem, 8vw, 4rem);
  background: linear-gradient(to right, var(--red), var(--gold), var(--green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0 1rem;
}

h2 {
  margin-top: 0;
}

a {
  color: var(--green);
  text-decoration: none;
}

main,
.top-nav {
  width: min(1120px, 92%);
  margin: 0 auto;
}

main,
.top-nav,
footer {
  position: relative;
  z-index: 1;
}

main {
  padding: 2rem 0 4rem;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.65);
}

.top-nav nav {
  display: flex;
  gap: 1.2rem;
}

.top-nav nav a {
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.top-nav nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.45);
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.25);
}

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
}

.hero p {
  max-width: 740px;

}

.hero-lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.5rem 0;
  font-size: 1.05rem;
  color: var(--ink);
}
.feature-list li {
  margin-bottom: 0.4rem;
  padding-left: 0.2em;
}

.cta-row {
  margin-top: 1.2rem;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 5px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.panel {
  background: var(--panel);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glow {
  box-shadow:
    0 0 35px rgba(57, 255, 20, 0.1),
    0 0 12px rgba(255, 204, 0, 0.08);
}

.hero-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.35s;
  display: inline-block;
  margin: 8px 0;
  cursor: pointer;
  border: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--green);
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 0 20px var(--green);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

.section h2 {
  margin-bottom: 0.5rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1rem;
}

.artist-card {
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(16, 16, 16, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.2);
}

.artist-card h3 {
  margin: 0.35rem 0;
}

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

.full-row {
  grid-column: span 2;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkbox-inline {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.checkbox-inline input[type='checkbox'] {
  width: auto;
  margin-top: 0;
  accent-color: var(--green);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.9rem;
  color: #fff;
  border-radius: 8px;
  margin-top: 0.45rem;
  font-family: 'Space Grotesk', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.24);
}

input[type='date']:focus {
  box-shadow: 0 0 16px rgba(255, 204, 0, 0.38), 0 0 7px rgba(57, 255, 20, 0.28);
}

textarea {
  resize: vertical;
}

.status {
  margin-top: 0.7rem;
  min-height: 1.5rem;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.calendar-list,
.booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.calendar-item,
.booking-item {
  border: 1px solid rgba(255, 204, 0, 0.28);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.25);
}

.badge {
  display: inline-block;
  font-size: 0.74rem;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.14);
  color: var(--green);
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.4rem;
}

.badge.rejected {
  color: var(--red);
  background: rgba(255, 49, 49, 0.18);
}

.item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.hidden {
  display: none !important;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.modal-panel {
  width: min(520px, 96%);
  margin: 0;
  transform: translateY(8px) scale(0.97);
  opacity: 0.88;
  transition: transform 180ms ease, opacity 180ms ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  animation: modalBackdropPulse 2.6s ease-in-out infinite alternate;
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-overlay.is-closing {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.unsubscribe-panel {
  max-width: 760px;
  margin: 2rem auto;
  text-align: center;
}

.unsubscribe-form {
  max-width: 520px;
  margin: 1.1rem auto 0;
}

@keyframes modalBackdropPulse {
  from {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(2px);
  }
  to {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal-panel {
    transition: none;
  }

  .modal-overlay.is-open,
  .modal-overlay.is-closing {
    animation: none;
  }
}

footer {
  text-align: center;
  padding: 4rem 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
}

@media (max-width: 780px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-row {
    grid-column: span 1;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .top-nav nav {
    gap: 0.7rem;
  }
}
