* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050505;
  --deep-black: #000000;
  --hot-pink: #ff1493;
  --neon-pink: #ff4fc3;
  --orange-glow: #ff7a18;
  --white: #ffffff;
  --soft-white: #f5f5f5;
  --muted: #bdbdbd;
  --card-bg: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--neon-pink);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.65));
}
.logo-feature-card {
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at center,
    rgba(255, 20, 147, 0.18),
    rgba(0, 0, 0, 0.92));

  min-height: 320px;
}

.gallery-logo {
  width: 70%;
  max-width: 260px;

  filter:
    drop-shadow(0 0 12px rgba(255, 20, 147, 0.8))
    drop-shadow(0 0 28px rgba(255, 122, 24, 0.45));

  animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}
.navbar {
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.65));
}
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--soft-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--hot-pink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.92)),
    url("../images/mixtape-3.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.hero-logo {
  width: 230px;
  margin: 0 auto 24px;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(255, 20, 147, 0.75));
  animation: glowPulse 3s infinite ease-in-out;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;
  padding: 0;
  gap: 0;
}

.title-dj {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 0.35em;
  line-height: 1;
  margin-bottom: 28px;

  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 20, 147, 0.8),
    0 0 28px rgba(255, 122, 24, 0.7);
}

.title-name {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5.5rem, 13vw, 9.5rem);
  font-weight: 400;
  line-height: 0.85;
  color: #ff4fc3;

  text-shadow:
    0 0 8px rgba(255, 79, 195, 0.9),
    0 0 18px rgba(255, 20, 147, 0.9),
    0 0 36px rgba(255, 122, 24, 0.75);
}

.tagline {
  margin: 24px auto;
  max-width: 900px;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--soft-white);
  font-weight: 500;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink), var(--orange-glow));
  box-shadow: 0 0 22px rgba(255, 20, 147, 0.45);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid var(--hot-pink);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-2px);
}

.contact-line {
  margin-top: 20px;
  color: var(--muted);
}

.section {
  padding: 80px 20px;
}

.section-container {
  max-width: 1150px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle {
  margin-bottom: 32px;
  color: var(--muted);
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(255, 20, 147, 0.18), transparent 35%),
    var(--deep-black);
}

.about-section p,
.contact-section p,
.qr-section p {
  max-width: 850px;
  font-size: 1.1rem;
  color: var(--soft-white);
}
.about-flex {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;

  box-shadow:
    0 0 18px rgba(255, 20, 147, 0.45),
    0 0 40px rgba(255, 122, 24, 0.2);

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-content p {
  font-size: 1.12rem;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .about-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-width: 320px;
  }
}

.secondary-tagline {
  margin-bottom: 24px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ff8bd5;
  text-shadow: 0 0 8px rgba(255, 20, 147, 0.35);
}

.gallery-section {
  background: #090909;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}
.live-event-feature {
  grid-column: 1 / -1;
  max-height: 620px;
}

.live-event-feature img {
  width: 100%;
  height: 1095px;
  object-fit: cover;
  object-position: center;
}

.services-section {
  background:
    radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.18), transparent 35%),
    var(--deep-black);
}
.gallery-card video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px 18px;
  min-height: 120px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 20, 147, 0.16), rgba(255, 122, 24, 0.09));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
}

.qr-section {
  background: #090909;
}

.qr-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 20, 147, 0.16), rgba(255, 122, 24, 0.1));
}

.qr-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-placeholder img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  padding: 12px;
  background: var(--white);
  border-radius: 18px;
}

.contact-section {
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.92)),
    url("../images/event-1.jpeg") center/cover no-repeat;
}

.contact-section p {
  margin: 0 auto;
}

.site-footer {
  padding: 30px 20px;
  text-align: center;
  background: var(--deep-black);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.6));
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(255, 20, 147, 1));
  }

  100% {
    filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.6));
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-box p {
    margin: 0 auto 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 86vh;
    padding: 60px 18px;
  }

  .hero-logo {
    width: 180px;
  }

  .title-dj {
    font-size: 2rem;
  }

  .title-name {
    font-size: 5rem;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .gallery-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-row: auto;
  }

  .section {
    padding: 60px 18px;
  }

  .qr-box {
    padding: 26px 18px;
  }
}
.booking-hero {
  min-height: 100vh;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.94)),
    url("../images/Orange_miamya.PNG") center/cover no-repeat;
}

.booking-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 0 40px rgba(255, 20, 147, 0.18);
}

.booking-title {
  text-align: center;
  margin-bottom: 24px;
  line-height: 1;
}

.booking-title-main {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 0.22em;

  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 20, 147, 0.9),
    0 0 38px rgba(255, 122, 24, 0.85);
}

.booking-title-name {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  color: #ff4fc3;
  margin-top: 28px;

  text-shadow:
    0 0 8px rgba(255, 79, 195, 0.9),
    0 0 18px rgba(255, 20, 147, 0.9),
    0 0 36px rgba(255, 122, 24, 0.75);

  animation: bookingGlow 2.8s infinite ease-in-out;
}
@keyframes bookingGlow {

  0% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 0 18px rgba(255, 20, 147, 0.7),
      0 0 34px rgba(255, 122, 24, 0.6);
  }

  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 1),
      0 0 28px rgba(255, 20, 147, 1),
      0 0 52px rgba(255, 122, 24, 0.9),
      0 0 70px rgba(255, 20, 147, 0.8);
  }

  100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 0 18px rgba(255, 20, 147, 0.7),
      0 0 34px rgba(255, 122, 24, 0.6);
  }
}
.booking-subtitle {
  text-align: center;
  color: var(--soft-white);
  margin-bottom: 34px;
  font-size: 1.1rem;
}

.booking-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--soft-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
}

.form-group select option {
  color: #000;
}

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  border: none;
  margin-top: 30px;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .booking-container {
    padding: 28px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.thank-you-modal.show {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.thank-you-box {
  position: relative;

  max-width: 520px;
  width: 100%;

  padding: 42px 30px;

  text-align: center;

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  background:
    radial-gradient(circle at top, rgba(255, 20, 147, 0.24), transparent 45%),
    rgba(0, 0, 0, 0.94);

  box-shadow:
    0 0 24px rgba(255, 20, 147, 0.45),
    0 0 60px rgba(255, 122, 24, 0.18);
}

.thank-you-logo {
  width: 140px;
  margin: 0 auto 20px;

  border-radius: 50%;

  filter:
    drop-shadow(0 0 14px rgba(255, 20, 147, 0.85));
}

.thank-you-box h2 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: 400;

  color: #ff4fc3;

  margin-bottom: 12px;

  text-shadow:
    0 0 10px rgba(255, 79, 195, 0.9),
    0 0 30px rgba(255, 20, 147, 0.8);
}

.thank-you-box p {
  color: var(--soft-white);
  font-size: 1.1rem;
  line-height: 1.7;

  margin-bottom: 28px;
}

.thank-you-close {
  position: absolute;
  top: 16px;
  right: 18px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  font-size: 1.8rem;
  line-height: 1;

  cursor: pointer;
}

.thank-you-close:hover {
  background: rgba(255, 20, 147, 0.45);
}