@charset "utf-8";
/* CSS Document */

:root {
  --bg: #0a0a0f;
  --bg-soft: #12121a;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #b4b8c7;
  --accent: #8b5cf6;
  --accent-2: #22c55e;
  --max-width: 1200px;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #07070b 0%, #0d0e14 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2,
.about-text h2,
.contact-text h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .container {
  width: min(100% - 2rem, 1500px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 60px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-logo {
  height: 120px;
  width: auto;
  transform: scale(1.45);
  transform-origin: left center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.menu a:hover {
  color: var(--text);
}

/* BURGER MENU */

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: 0.25s ease;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 8, 12, 0.28), rgba(8, 8, 12, 0.48)),
    url("images/dj-hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.14), transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.eyebrow {
  color: #ffffff;
  opacity: 0.85;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
  max-width: 10ch;
}

.hero-description {
  color: rgba(255,255,255,0.95);;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  color: white;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 1rem;
}

/* HERO LOGO */

.hero-card {
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 900px;
  margin-left: auto;
  margin-top: -120px;
}

.hero-card img {
  width: 200%;
  max-width: none;
  height: auto;
  display: block;
}

/* HERO LIGHT EFFECT */

.light-beam {
  position: absolute;
  top: -20%;
  width: 500px;
  height: 150%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.light-beam-1 {
  left: 8%;
  background: linear-gradient(
    to bottom,
    rgba(139, 92, 246, 0.55),
    rgba(139, 92, 246, 0.18),
    transparent
  );
  transform: rotate(18deg);
  animation: beamMoveLeft 7s ease-in-out infinite alternate;
}

.light-beam-2 {
  right: 8%;
  background: linear-gradient(
    to bottom,
    rgba(34, 197, 94, 0.45),
    rgba(34, 197, 94, 0.14),
    transparent
  );
  transform: rotate(-18deg);
  animation: beamMoveRight 9s ease-in-out infinite alternate;
}

@keyframes beamMoveLeft {
  0% {
    transform: translateY(0) rotate(18deg);
    opacity: 0.35;
  }
  50% {
    transform: translateY(35px) rotate(12deg);
    opacity: 0.85;
  }
  100% {
    transform: translateY(-15px) rotate(22deg);
    opacity: 0.45;
  }
}

@keyframes beamMoveRight {
  0% {
    transform: translateY(0) rotate(-18deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(30px) rotate(-12deg);
    opacity: 0.75;
  }
  100% {
    transform: translateY(-20px) rotate(-24deg);
    opacity: 0.4;
  }
}

/* STATS */

.stats {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: rgba(18, 18, 26, 0.82);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.stat-card p {
  color: var(--muted);
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  min-height: 520px;
  box-shadow: var(--shadow);
}

.about-text p:not(.section-label) {
  color: var(--muted);
  margin-bottom: 1rem;
}

.text-link {
  color: white;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item.large {
  min-height: 580px;
}

.gallery-item img {
  height: 100%;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* CTA */

.cta-box {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 197, 94, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow);
}

/* CONTACT */

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 1rem 1rem;
  border-radius: 14px;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f95a8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139, 92, 246, 0.6);
}

/* SOCIAL SECTION */

.socials-section {
  text-align: center;
  margin: 90px 0 50px;
  padding: 0 20px;
}

.social-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 35px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  overflow: hidden;
}

.social-card i {
  font-size: 22px;
  position: relative;
  z-index: 2;
}

.social-card span {
  position: relative;
  z-index: 2;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 18px;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.03);
}

.social-card.instagram::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-card.instagram:hover::before {
  opacity: 0.15;
}

.social-card.instagram:hover {
  box-shadow:
    0 10px 30px rgba(225, 48, 108, 0.35),
    0 0 40px rgba(225, 48, 108, 0.25);
}

.social-card.youtube::before {
  background: linear-gradient(135deg, #ff0000, #ff5e5e);
}

.social-card.youtube:hover::before {
  opacity: 0.18;
}

.social-card.youtube:hover {
  box-shadow:
    0 10px 30px rgba(255, 0, 0, 0.35),
    0 0 40px rgba(255, 0, 0, 0.25);
}

.social-card.spotify::before {
  background: linear-gradient(135deg, #1db954, #1ed760);
}

.social-card.spotify:hover::before {
  opacity: 0.18;
}

.social-card.spotify:hover {
  box-shadow:
    0 10px 30px rgba(29, 185, 84, 0.35),
    0 0 40px rgba(29, 185, 84, 0.25);
}

.social-card.mixcloud::before {
  background: linear-gradient(135deg, #5000ff, #00c3ff);
}

.social-card.mixcloud:hover::before {
  opacity: 0.18;
}

.social-card.mixcloud:hover {
  box-shadow:
    0 10px 30px rgba(80, 0, 255, 0.35),
    0 0 40px rgba(0, 195, 255, 0.25);
}

/* SPOTIFY PLAYER */

.spotify-player {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.spotify-player iframe {
  max-width: 500px;
  width: 100%;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* EVENTS SECTION */

.events-list {
  display: grid;
  gap: 18px;
}

.event-card {
  width: 100%;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
}

.event-date {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(34, 197, 94, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.event-date .month {
  margin-top: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
}

.event-info h3 {
  font-size: 1.2rem;
  margin: 0 0 6px 0;
}

.event-info p {
  margin: 0;
  color: var(--muted);
}

.event-card-next {
  align-items: start;
}

.event-card-next .event-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.28);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

/* LEGAL */

.legal-content {
  max-width: 900px;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 1rem 0 1rem 1.25rem;
}

.contact .section-label {
  color: var(--accent);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .contact-box,
  .services-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0;
  }

  .hero-card {
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    transform: none;
  }

  .hero-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .gallery-item.large {
    min-height: 360px;
  }

  .gallery-item {
    min-height: 260px;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .light-beam {
    width: 320px;
    filter: blur(30px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-date {
    margin: 0 auto;
  }

  .event-card-next .event-info {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 110px;
    position: relative;
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 130px;
    width: auto;
    transform: scale(1.15);
    transform-origin: center center;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(10, 10, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    z-index: 100;
	  
  }
	
 
	

  .menu.active {
    display: flex;
  }

  .menu a {
    width: 100%;
  }

  .menu a.btn {
    justify-content: center;
  }

  .social-links {
    gap: 16px;
  }

  .social-card {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .social-title {
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-label {
    font-size: 0.95rem;
  }
}

.header { position: relative; z-index: 2000; }
.menu-toggle { z-index: 3000; pointer-events: auto; }
.menu { z-index: 2500; }
