/* DJ Meech Entertainment — palette derived directly from the logo:
   gold #F0A250, navy #1A517A, bronze #6D2411 */

* {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --base: #060e16;        /* page background, near-black navy */
  --navy: #0e2235;        /* section band */
  --card: #122a40;        /* card surface */
  --blue: #1a517a;        /* logo blue */
  --gold: #f0a250;        /* logo gold */
  --gold-soft: #f8cf94;   /* highlight gold */
  --bronze: #6d2411;
  --text: #eaf1f7;
  --muted: #9bb0c2;
  --line: rgba(240, 162, 80, 0.28);
  --line-cool: rgba(123, 170, 209, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--base);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold);
  margin: 0 0 18px;
}

/* equalizer signature mark */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}
.eq span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.eq span:nth-child(2) { height: 14px; animation-delay: .18s; }
.eq span:nth-child(3) { height: 9px;  animation-delay: .36s; }
.eq span:nth-child(4) { height: 16px; animation-delay: .12s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); transform-origin: bottom; }
  50%      { transform: scaleY(1);   transform-origin: bottom; }
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: .5px;
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
}
.brand-line {
  display: block;
  color: var(--gold);
}
h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  margin-bottom: 16px;
}
h3 {
  font-size: 19px;
  letter-spacing: 1px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}

.center { text-align: center; }
.center .eyebrow,
.center .lead { margin-left: auto; margin-right: auto; }
.center .lead { text-align: center; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button.primary {
  background: var(--gold);
  color: #1a0f04;
  box-shadow: 0 10px 30px rgba(240, 162, 80, 0.25);
}
.button.primary:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
  box-shadow: 0 14px 38px rgba(240, 162, 80, 0.38);
}
.button.secondary {
  background: transparent;
  color: var(--text);
}
.button.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 5vw;
  background: rgba(6, 14, 22, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-cool);
}
.wordmark {
  display: grid;
  line-height: 1;
}
.wordmark b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--gold);
}
.wordmark small {
  font-family: var(--display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--text);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}
.nav-links a {
  color: var(--muted);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--gold); }

/* ---------- Hero (pure black so the logo blends seamlessly) ---------- */
.hero {
  background:
    radial-gradient(60% 70% at 78% 42%, rgba(240, 162, 80, 0.16), transparent 60%),
    var(--black);
  padding: clamp(48px, 8vw, 96px) 5vw clamp(60px, 9vw, 110px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.event-line {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: var(--gold-soft);
  margin: 20px 0 8px;
}
.quick-contact {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  margin-right: 24px;
  line-height: 2;
  transition: color .2s ease;
}
.quick-contact a:hover { color: var(--gold); }
.quick-contact svg { flex: none; }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.logo-stage {
  display: grid;
  place-items: center;
}
.logo-stage img {
  width: min(100%, 460px);
  filter: drop-shadow(0 0 50px rgba(240, 162, 80, 0.32));
  animation: rise .9s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: clamp(56px, 8vw, 96px) 5vw;
}
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.band {
  background: var(--navy);
  border-top: 1px solid var(--line-cool);
  border-bottom: 1px solid var(--line-cool);
}

/* ---------- Services ---------- */
.services-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature {
  background: linear-gradient(160deg, var(--card), var(--navy));
  border: 1px solid var(--line-cool);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform .18s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.feature .ico {
  color: var(--gold);
  margin-bottom: 14px;
}
.feature h3 { color: var(--text); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Packages ---------- */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.rate-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-cool);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  transition: transform .18s ease, border-color .2s ease;
}
.rate-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.rate-card .ico {
  color: var(--gold);
  margin: 0 auto 14px;
}
.rate-card h3 { color: var(--text); margin-bottom: 18px; }
.rate-card .from {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.rate-card .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
  margin: 6px 0 18px;
}
.rate-card p.desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.addons {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(160deg, var(--card), var(--navy));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
}
.addon .label {
  display: flex;
  align-items: center;
  gap: 14px;
}
.addon .label .ico { color: var(--gold); }
.addon b { font-family: var(--display); font-weight: 600; letter-spacing: .5px; font-size: 16px; text-transform: uppercase; }
.addon .plus {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
  white-space: nowrap;
}
.note {
  text-align: center;
  color: var(--muted);
  margin-top: 30px;
  font-size: 15px;
}

/* ---------- Booking ---------- */
.booking-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 56px);
  align-items: start;
}
.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  transition: color .2s ease;
}
.contact-list a:hover { color: var(--gold); }
.contact-list svg { color: var(--gold); flex: none; }

form {
  background: linear-gradient(160deg, var(--card), var(--navy));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(155, 176, 194, 0.22);
  background: #07131e;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder { color: #5f7488; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 162, 80, 0.18);
}
textarea { resize: vertical; }
form .button { width: 100%; margin-top: 4px; }
.form-status {
  font-size: 14px;
  color: var(--gold-soft);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line-cool);
  padding: 34px 5vw;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner .wordmark b { font-size: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid,
  .services-inner,
  .booking-inner {
    grid-template-columns: 1fr;
  }
  .logo-stage { order: -1; }
  .logo-stage img { width: min(78%, 360px); }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid,
  .rate-grid,
  .addons,
  .field-row {
    grid-template-columns: 1fr;
  }
  .quick-contact a { display: flex; margin: 0; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
}
