:root {
  --bg: #050507;
  --bg-alt: #0c0c10;
  --gold: #d9b15f;
  --gold-soft: #b8944f;
  --text: #f6f6f6;
  --muted: #c0c0c0;
  --accent: #ffffff;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,7,0.96);
  border-bottom: 1px solid #161616;
  backdrop-filter: blur(12px);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #f8e0a0, #8a6a2c 55%, #1a1206 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #050507;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    flex-wrap: wrap;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 60vh;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* FADED DJ BACKGROUND IMAGE */
  background-image:
    radial-gradient(circle at top, rgba(32,32,48,0.85), rgba(5,5,7,0.96)),
    url('dj_header_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-sub {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--muted);
}

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

/* BUTTONS */

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.btn.primary:hover {
  background-color: #f1cc7d;
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: var(--gold);
}

.btn.outline:hover {
  background-color: rgba(217, 177, 95, 0.1);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* MAIN LAYOUT */

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

.section {
  padding: 3rem 0;
  border-bottom: 1px solid #151515;
}

.section.alt {
  background-color: var(--bg-alt);
  padding-inline: 1.5rem;
  margin-inline: -1.5rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
}

.section p {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.section-intro {
  max-width: 640px;
}

/* GRID */

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

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* LISTS */

ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.why-list li::before {
  content: "• ";
  color: var(--gold);
}

/* GALLERY PLACEHOLDERS */

.gallery-card {
  background: #0b0b10;
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid #1b1b22;
}

.gallery-card.small {
  padding: 0.7rem;
}

.gallery-thumb {
  border-radius: 10px;
  height: 160px;
  margin-bottom: 0.5rem;
  background-size: cover;
  background-position: center;
}

.gallery-mini .gallery-thumb {
  height: 110px;
}

.placeholder {
  background-image: linear-gradient(135deg, rgba(217,177,95,0.3), rgba(30,30,40,0.9));
}

.gallery-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CONTACT & FORM */

.contact-grid {
  align-items: flex-start;
}

.contact-details p {
  margin-bottom: 0.4rem;
}

.contact a {
  color: var(--gold);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.booking-form {
  background: #0b0b10;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #22222a;
}

.field {
  margin-bottom: 0.8rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #2a2a33;
  background-color: #050509;
  color: var(--text);
  font-size: 0.9rem;
}

.field input:focus,
.field textarea:focus {
  outline: 1px solid var(--gold-soft);
  border-color: var(--gold-soft);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* SOCIAL */

.social {
  margin-top: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 0.8rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #2a2a33;
  color: var(--muted);
}

.social-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* FOOTER */

.footer {
  border-top: 1px solid #151515;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .section {
    padding: 2.3rem 0;
  }
}
