/* =========================================================
   EVENT DJ TOMMY – styles.css
   Modern dark DJ theme | Responsive | Performance-optimized
   ========================================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --accent:       #ff6b00;
  --accent-dark:  #cc5500;
  --accent-glow:  rgba(255, 107, 0, 0.35);
  --bg:           #080c12;
  --bg-card:      #0e1420;
  --bg-card2:     #121926;
  --text:         #e8eaf0;
  --text-muted:   #8892a4;
  --border:       rgba(255,255,255,0.07);
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-accent:0 0 40px var(--accent-glow);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:    'Montserrat', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --nav-h:        72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #ff8c33; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

.section { padding: 100px 0; }
.section-dark { background: var(--bg-card); }

.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.center { display: block; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #ff8c33;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.88rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8,12,18,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.logo-dj { color: var(--accent); }
.logo-tommy { color: #fff; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
}
.nav-cta:hover { background: #ff8c33; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,107,0,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(255,107,0,0.05) 0%, transparent 60%),
              linear-gradient(135deg, #050810 0%, #0a0f1a 50%, #080c12 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,18,0.3) 0%, transparent 40%, rgba(8,12,18,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
  animation: fadeDown 0.9s ease 0.1s both;
}
.hero-title-event {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.5em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-title-dj {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(255,107,0,0.15);
  line-height: 1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  animation: fadeDown 1s ease 0.2s both;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  animation: fadeDown 1s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1s ease 0.4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 0.5; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; }
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 380px;
}
.dj-icon { width: 120px; height: 120px; }
.about-img-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.about-badge-float {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-accent);
}
.about-badge-float strong { display: block; font-size: 1.1rem; }
.about-features {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.check { color: var(--accent); font-weight: 700; }
.about-contact-quick {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.quick-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.quick-contact:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.quick-wa:hover { border-color: var(--wa-green); color: var(--wa-green); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tags li {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

/* Service Note - Musik für jeden Geschmack */
.service-note {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(255,160,0,0.05) 100%);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 16px;
  text-align: center;
}
.service-note-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.service-note h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.service-note p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.service-note strong {
  color: var(--text);
}

/* ===== AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.area-map {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  overflow: visible;
  max-width: 420px;
  margin: 0 auto;
}
.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 3;
}
.map-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,107,0,0.2);
}
.map-dot.pulse {
  animation: mapPulse 2s ease infinite;
}
@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
.map-home {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}
.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid;
  border-radius: 50%;
}
.ring-1 { width: 40%; height: 40%; border-color: rgba(255,107,0,0.4); }
.ring-2 { width: 65%; height: 65%; border-color: rgba(255,107,0,0.25); }
.ring-3 { width: 92%; height: 92%; border-color: rgba(255,107,0,0.1); }
.map-pin {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.city-item svg { color: var(--accent); flex-shrink: 0; }
.city-item.primary { color: var(--text); font-weight: 700; }
.city-item.more { color: var(--accent); }
.dist {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-left: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-4px);
}
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.2rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ===== BOOKING ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-calendar-wrap h3,
.booking-contact h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
/* Calendar */
.calendar {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.cal-nav {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cal-nav:hover { background: var(--accent); border-color: var(--accent); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: var(--text-muted); opacity: 0.4; cursor: not-allowed; }
.cal-day.free {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.cal-day.free:hover {
  background: rgba(255,107,0,0.15);
  color: var(--accent);
}
.cal-day.busy {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-day.selected {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 16px var(--accent-glow);
}
.cal-day.today {
  border: 2px solid var(--accent);
}
.cal-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-free { background: rgba(255,255,255,0.4); }
.dot-busy { background: #f87171; }
.dot-selected { background: var(--accent); }
.cal-note {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  min-height: 1.5em;
}
/* WhatsApp Card */
.whatsapp-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.wa-header strong { display: block; font-size: 1rem; color: #fff; }
.wa-header span { font-size: 0.85rem; color: var(--text-muted); }
.wa-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1.5rem;
}
#qrCanvas {
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  image-rendering: pixelated;
}
.qr-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  transition: all var(--transition);
  color: var(--text);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--accent);
  color: var(--text);
}
.contact-card.no-link { cursor: default; }
.contact-card svg { color: var(--accent); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.88rem; color: #fff; }
.contact-card span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; font-size: 1.6rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-social { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
.footer-seo-text {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  animation: waPop 0.5s ease 2s both;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
  color: #fff;
}
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }

  /* Navbar mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8,12,18,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  .nav-cta { margin: 0.5rem 2rem; border-radius: var(--radius); }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .hero-title-dj { font-size: clamp(3rem, 18vw, 5rem); }
  .wa-float-label { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== CONTACT FORM ===== */
.cf-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cf-field-full { grid-column: 1 / -1; }
.cf-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.cf-field select option { background: var(--bg-card2); color: var(--text); }
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.cf-field input.invalid,
.cf-field select.invalid,
.cf-field textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.cf-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}
.cf-error {
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 600;
  min-height: 1em;
}

/* Privacy checkbox */
.cf-privacy { margin-top: 0.4rem; }
.cf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  user-select: none;
}
.cf-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cf-checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 1px;
}
.cf-checkbox input:checked + .cf-checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.cf-checkbox input:checked + .cf-checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.cf-checkbox a { color: var(--accent); }

/* Submit row */
.cf-submit-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.cf-submit-btn {
  min-width: 200px;
  position: relative;
}
.cf-submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
.cf-submit-btn.loading::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Feedback banners */
.cf-feedback {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  margin-top: 0.5rem;
}
.cf-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.cf-error-box {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

@media (max-width: 640px) {
  .contact-form { padding: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit-wrap { flex-direction: column; }
  .cf-submit-wrap .btn { width: 100%; justify-content: center; }
}

/* ===== ABOUT – REAL PHOTO ===== */
.about-image-real {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  box-shadow: var(--shadow), 0 0 60px var(--accent-glow);
  border: 2px solid rgba(255,107,0,0.2);
}
.about-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-image-real:hover img { transform: scale(1.03); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item-large { aspect-ratio: unset; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  background: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-large {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: auto; }
}

/* ===== LOCATIONS ===== */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.loc-city {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.loc-city:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.loc-city-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-icon { font-size: 1rem; }
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.loc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.loc-list strong { color: var(--text); font-size: 0.92rem; }
.loc-cap {
  font-size: 0.78rem;
  color: var(--accent);
  opacity: 0.8;
}
.loc-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}
.loc-phone, .loc-web {
  font-size: 0.75rem;
  text-decoration: none;
  padding: 2px 7px;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.loc-phone {
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
}
.loc-web {
  background: rgba(var(--accent-rgb, 255,160,0), 0.12);
  color: var(--accent);
}
.loc-phone:hover, .loc-web:hover { opacity: 0.75; }
.loc-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .loc-grid { grid-template-columns: 1fr; }
}

/* ===== VINYL RECORD MAP ===== */
.vinyl-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}

/* ── Vinyl Record ── */
.vinyl-record {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a2e 0%, #0d0d1a 40%, #111118 100%);
  box-shadow:
    0 0 0 3px #222,
    0 8px 40px rgba(0,0,0,0.8),
    0 0 60px var(--accent-glow);
  animation: vinylSpin 22s linear infinite;
}
@keyframes vinylSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Grooves */
.vinyl-groove {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.g1 { width: 94%; height: 94%; }
.g2 { width: 84%; height: 84%; border-color: rgba(255,107,0,0.08); }
.g3 { width: 74%; height: 74%; }
.g4 { width: 63%; height: 63%; border-color: rgba(255,107,0,0.06); }
.g5 { width: 52%; height: 52%; }
.g6 { width: 41%; height: 41%; border-color: rgba(255,107,0,0.1); }

/* Center label */
.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(circle, #1e0a00, #ff6b00 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-glow);
}
.vinyl-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
}
.vinyl-label-dot {
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  margin-bottom: 3px;
}
.vinyl-label-name {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.vinyl-label-sub {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* City pins counter-rotate so text stays readable */
.vinyl-record .map-pin {
  animation: pinCounterSpin 22s linear infinite;
}
@keyframes pinCounterSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ── Tonearm SVG overlay ── */
.tonearm-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .vinyl-wrap { width: 300px; height: 300px; }
  .vinyl-record { width: 260px; height: 260px; }
}
