/* ═══════════════════════════════════════════════════
   YouDJ Landing Page — Design System & Styles
   ═══════════════════════════════════════════════════ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --primary: #f5a623;
  --primary-dark: #d4891a;
  --primary-light: #ffd166;
  --primary-glow: rgba(245, 166, 35, 0.3);
  --accent: #e8b830;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-600: #616161;
  --gray-800: #333333;
  --font-primary: "Outfit", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 30px var(--primary-glow);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo i {
  color: var(--primary);
  font-size: 1.3rem;
}

.logo strong {
  color: var(--primary);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo .logo-img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--gray-50) 0%,
    var(--white) 50%,
    #fff8e7 100%
  );
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: 20%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary);
  background: transparent;
  top: 15%;
  right: 10%;
  animation: float 5s ease-in-out infinite reverse;
}

.shape-3 {
  width: 30px;
  height: 30px;
  background: var(--primary);
  bottom: 20%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.shape-4 {
  width: 80px;
  height: 80px;
  border: 3px solid var(--primary-light);
  background: transparent;
  bottom: 30%;
  left: 5%;
  animation: float 7s ease-in-out infinite reverse;
}

.shape-5 {
  width: 20px;
  height: 20px;
  background: var(--accent);
  top: 40%;
  left: 15%;
  animation: float 4s ease-in-out infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Hero Left: Play text + Image */
.hero-left {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
}

.play-text {
  position: absolute;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
}

.play-text span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
  opacity: 0.2;
}

.play-text span:first-child {
  opacity: 0.5;
  -webkit-text-stroke-color: var(--primary);
  color: var(--primary);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-image-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary);
  box-shadow:
    var(--shadow-glow),
    0 0 60px var(--primary-glow);
  position: relative;
  z-index: 2;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: 1;
}

/* Hero Right: Content */
.hero-right {
  flex: 1;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-number::after {
  content: "+";
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Hero Music Text (background) */
.hero-music-text {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 1;
}

.hero-music-text span {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--primary-light);
  color: transparent;
  opacity: 0.12;
  line-height: 0.85;
}

/* Hero Socials */
.hero-socials {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  gap: 16px;
  z-index: 2;
}

.hero-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════ */
.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-tag.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title.center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.2;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature:hover {
  background: var(--gray-50);
}

.feature i {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  background: var(--primary);
}

.service-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 4px;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff3d6, #ffeab5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.service-features li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.8) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════
   MUSIC RELEASES
   ═══════════════════════════════════════════════════ */
.music-releases {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
}

.music-releases .section-title {
  color: var(--white);
}

.releases-grid {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.release-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 650px;
  width: 100%;
  transition: var(--transition);
}

.release-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.release-artwork {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.release-play-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--primary-glow);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--primary-glow);
}

.release-info {
  flex: 1;
  min-width: 0;
}

.release-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.release-artist {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2px;
}

.release-type {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.release-progress {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.1s linear;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.spotify-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #1DB954;
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.spotify-link:hover {
  background: #1ed760;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.3);
}

.spotify-link .fab {
  font-size: 1.4rem;
}

.spotify-link .fa-external-link-alt {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact .section-title {
  color: var(--white);
}

.contact-text {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 400;
}

.contact-item span {
  font-weight: 500;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(245, 166, 35, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group.full {
  grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form select {
  cursor: pointer;
  color: var(--gray-400);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239E9E9E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: var(--dark-2);
  color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  grid-column: span 2;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #0d0d1a;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo i {
  color: var(--primary);
}

.footer-logo strong {
  color: var(--primary);
}

.footer-text {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  margin-top: 12px;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 30px var(--primary-glow),
      0 0 60px rgba(245, 166, 35, 0.1);
  }
  50% {
    box-shadow:
      0 0 50px var(--primary-glow),
      0 0 80px rgba(245, 166, 35, 0.2);
  }
}

/* Scroll Animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-image-circle {
    width: 300px;
    height: 300px;
  }
  .play-text span {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-right .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    flex: unset;
    justify-content: center;
  }

  .play-text {
    display: none;
  }
  .hero-image-circle {
    width: 280px;
    height: 280px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    margin: 0 auto 32px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-music-text {
    display: none;
  }
  .hero-socials {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item.large img {
    height: 300px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item img {
    height: 200px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group.full,
  .contact-form .btn {
    grid-column: span 1;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-image-circle {
    width: 220px;
    height: 220px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .hero-cta {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }
}
