:root {
  --bg: #ffffff;
  --panel: #d3d3d3;
  --surface: #d9d9d9;
  --text: #050505;
  --muted: #4a4a4a;
  --accent: #2c2c2c;
  --accent-2: #111111;
  --accent-3: #606060;
  --border: rgba(0, 0, 0, 0.14);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.page-about {
  --page-hero-bg: #f4f7ff;
  --page-panel-bg: #dbe8ff;
}

body.page-home {
  --page-hero-bg: linear-gradient(180deg, #fef7ff 0%, #f3e7ff 100%);
  --page-panel-bg: #f6e6ff;
}

body.page-booking {
  --page-hero-bg: #faf2ea;
  --page-panel-bg: #e6d8c5;
}

body.page-about {
  --page-hero-bg: #f4f7ff;
  --page-panel-bg: #dbe8ff;
}

body.page-why-choose-us {
  --page-hero-bg: #f7f4ed;
  --page-panel-bg: #d6ccb9;
}


body.page-login,
body.page-admin {
  --page-hero-bg: #f4f4f4;
  --page-panel-bg: #b2b2b2;
}

body.page-home .hero-card,
body.page-home .info-card,
body.page-home .event-card,
body.page-home .gallery-card {
  background: var(--page-panel-bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Fredoka', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body::before {
  content: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 18px 24px;
  background: #000000;
  border-radius: 28px;
}

.brand {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand::before {
  content: '⏀';
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.nav-links a {
  color: #ffffff;
  font-weight: 700;
  padding: 10px 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.nav-links .nav-button {
  background: #d0d0d0;
  color: #050505;
  border-radius: 999px;
  padding: 12px 20px;
}

.nav-links .nav-button:hover {
  background: #c0c0c0;
}

.hero {
  min-height: 78vh;
  padding: 24px 5vw 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--page-hero-bg, transparent);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-actions .btn-secondary {
  background: #ededed;
  border: 1px solid #c2c2c2;
  color: #050505;
}

.hero-small {
  padding-bottom: 28px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-copy,
.hero-copy-small {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.hero-text,
.info-card p,
.event-card p,
.footer p,
.about-page p,
.about-page li,
.booking-info p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: #c2c2c2;
  color: #050505;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background: #ededed;
  border: 1px solid #c2c2c2;
  color: #050505;
}

.hero-card,
.info-card,
.event-card,
.about-page,
.footer,
.booking-form,
.booking-info,
.panel,
.step-card,
.feature-card,
.gallery-card {
  background: var(--page-panel-bg, #c8c8c8);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-mobile-banner {
  display: block;
  margin-top: 24px;
  max-width: 720px;
}

.hero-mobile-banner img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.hero-card {
  padding: 34px 30px;
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hero-card li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.hero-card li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 5vw;
}

.alt-section {
  padding-top: 18px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.card-grid,
.event-list,
.steps-grid,
.about-grid,
.booking-layout,
.feature-gallery {
  display: grid;
  gap: 24px;
}

.card-grid,
.event-list,
.steps-grid,
.feature-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.review-card {
  background: #bfb8b0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.review-card h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.review-card p {
  color: #212121;
  line-height: 1.7;
}

.featured-review {
  background: #a7a197;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
  padding: 32px;
  margin-bottom: 24px;
}

.featured-review h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.featured-review p {
  margin: 0;
  color: #1f1f1f;
  line-height: 1.75;
}

.info-card,
.event-card,
.step-card,
.panel {
  padding: 28px;
}

.info-card:hover,
.event-card:hover,
.step-card:hover,
.panel:hover {
  transform: translateY(-4px);
}

.info-card h3,
.event-card h3,
.step-card h3,
.panel h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.event-card {
  min-height: 220px;
}

 body.page-why-choose-us .event-list .event-card h3 {
   position: relative;
   padding-left: 48px;
 }

 body.page-why-choose-us .event-list .event-card h3::before {
   content: '';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: #f5d9b0;
   color: #3c2909;
   font-size: 1rem;
 }

 body.page-why-choose-us .event-list .event-card:nth-child(1) h3::before {
   content: '🎧';
 }

 body.page-why-choose-us .event-list .event-card:nth-child(2) h3::before {
   content: '🎤';
 }

 body.page-why-choose-us .event-list .event-card:nth-child(3) h3::before {
   content: '🎉';
 }


.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent-3);
  font-weight: 800;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 32px;
}

.booking-info {
  padding: 24px;
}

 

.booking-form label,
.booking-form .field {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.booking-info ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.booking-info li {
  color: var(--muted);
}

.booking-info a {
  color: var(--accent-2);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.booking-form label,
.booking-form .field {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.booking-form input[type="date"] {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
  min-height: 48px;
}

.booking-form .field-help {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  margin-top: -4px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
  min-height: 48px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--muted);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.06);
}

.footer {
  max-width: 1180px;
  margin: 0 auto 36px;
  padding: 28px 5vw;
  text-align: center;
}

.footer h2 {
  margin-bottom: 12px;
}

.about-page {
  display: grid;
  gap: 24px;
}

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

.feature-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
}

.feature-card h3 {
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-copy {
  padding: 22px;
}

.gallery-copy h3 {
  margin: 0 0 10px;
}

.gallery-copy p {
  margin: 0;
  color: var(--muted);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.about-grid .panel {
  padding: 28px;
}

.about-grid ul,
.hero-card ul {
  margin: 0;
  padding-left: 20px;
}

.about-grid li {
  margin-bottom: 10px;
  color: var(--muted);
}

.login-page,
.admin-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 5vw;
}

.login-panel,
.admin-panel {
  width: min(560px, 100%);
  background: #c8c8c8;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  padding: 32px;
}

.login-form,
.admin-header {
  display: grid;
  gap: 18px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 5vw;
}

.thanks-panel {
  width: min(560px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px;
  text-align: center;
}

.thanks-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.thanks-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.thanks-panel .btn {
  min-width: 160px;
}

.login-form label {
  display: grid;
  gap: 10px;
}

.login-form input {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
}

.login-message {
  color: var(--accent-3);
  font-size: 0.95rem;
  min-height: 1.2rem;
}

.booking-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.booking-card {
  padding: 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--accent);
}

.booking-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

#logout-button {
  width: 100%;
}

@media (max-width: 980px) {
  .hero-content,
  .card-grid,
  .event-list,
  .steps-grid,
  .about-grid,
  .booking-layout,
  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .section {
    padding: 48px 4vw;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }

  .nav-links {
    gap: 12px;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links .nav-button {
    background: #d0d0d0;
    color: #050505;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .hero-mobile-banner {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-copy,
  .hero-copy-small {
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .hero-card,
  .info-card,
  .event-card,
  .step-card,
  .panel,
  .booking-form,
  .gallery-card {
    padding: 22px;
  }

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

  .booking-form {
    gap: 18px;
  }

  .booking-form label,
  .booking-form .field {
    width: 100%;
  }

  .booking-form input,
  .booking-form textarea,
  .booking-form select,
  .booking-form button {
    width: 100%;
  }

  .booking-form textarea {
    min-height: 140px;
  }

  .booking-form button,
  .btn {
    width: 100%;
    justify-content: center;
  }
}
