/* ============================================
   DEAFBOY — DJ Profile
   Style: Dark + Cyan Neon / Modern
   ============================================ */

/* ---- Variables ---- */
:root {
  --bg:        #080b10;
  --bg-2:      #0d1117;
  --bg-card:   rgba(255, 255, 255, 0.04);
  --cyan:      #00e5ff;
  --cyan-dim:  #00b4cc;
  --cyan-glow: rgba(0, 229, 255, 0.18);
  --white:     #f0f4f8;
  --gray:      #8899aa;
  --border:    rgba(0, 229, 255, 0.15);
  --font-title: 'Orbitron', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius:     8px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 11, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
}
.logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 70%),
    var(--bg);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 500px; height: 300px;
  top: 15%; left: 10%;
  background: rgba(0, 229, 255, 0.08);
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  bottom: 10%; right: 8%;
  background: rgba(0, 120, 200, 0.07);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-label {
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(0,229,255,0.2);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span {
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan), 0 0 80px rgba(0,229,255,0.4);
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* Equalizer bars */
.equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 50px;
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.equalizer span {
  display: block;
  width: 4px;
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 8px var(--cyan);
  animation: eqBar var(--dur, 0.8s) var(--delay, 0s) ease-in-out infinite alternate;
}

.equalizer span:nth-child(1)  { --dur: 0.7s; --delay: 0.0s; --min: 6px;  --max: 35px; }
.equalizer span:nth-child(2)  { --dur: 0.9s; --delay: 0.1s; --min: 10px; --max: 45px; }
.equalizer span:nth-child(3)  { --dur: 0.6s; --delay: 0.2s; --min: 8px;  --max: 50px; }
.equalizer span:nth-child(4)  { --dur: 1.1s; --delay: 0.0s; --min: 12px; --max: 40px; }
.equalizer span:nth-child(5)  { --dur: 0.8s; --delay: 0.3s; --min: 5px;  --max: 48px; }
.equalizer span:nth-child(6)  { --dur: 0.5s; --delay: 0.1s; --min: 15px; --max: 50px; }
.equalizer span:nth-child(7)  { --dur: 0.7s; --delay: 0.4s; --min: 6px;  --max: 42px; }
.equalizer span:nth-child(8)  { --dur: 1.0s; --delay: 0.2s; --min: 10px; --max: 38px; }
.equalizer span:nth-child(9)  { --dur: 0.6s; --delay: 0.1s; --min: 8px;  --max: 50px; }
.equalizer span:nth-child(10) { --dur: 0.9s; --delay: 0.3s; --min: 12px; --max: 44px; }
.equalizer span:nth-child(11) { --dur: 0.7s; --delay: 0.0s; --min: 6px;  --max: 36px; }
.equalizer span:nth-child(12) { --dur: 1.1s; --delay: 0.2s; --min: 10px; --max: 48px; }
.equalizer span:nth-child(13) { --dur: 0.8s; --delay: 0.4s; --min: 8px;  --max: 40px; }
.equalizer span:nth-child(14) { --dur: 0.6s; --delay: 0.1s; --min: 14px; --max: 50px; }
.equalizer span:nth-child(15) { --dur: 0.9s; --delay: 0.3s; --min: 6px;  --max: 35px; }

@keyframes eqBar {
  from { height: var(--min, 6px); }
  to   { height: var(--max, 40px); }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cyan);
  font-size: 1.2rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0,229,255,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-2); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.section-label.centered { text-align: center; }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.section-title.centered { text-align: center; }
.section-title span { color: var(--cyan); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 320px;
  margin: 0 auto;
}

/* Foto de perfil en About */
.photo-crop {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background-image: url('fotos/ChatGPT Image 12 may 2026, 21_35_48.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Corner decorations */
.frame-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--cyan);
  border-style: solid;
}
.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.tr { top: -8px; right: -8px; border-width: 2px 2px 0 0; }
.bl { bottom: -8px; left: -8px; border-width: 0 0 2px 2px; }
.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

.about-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--cyan-glow);
  color: var(--white);
  font-size: 0.9rem;
}

.about-badge i {
  color: var(--cyan);
  font-size: 1.1rem;
}

.about-badge strong {
  color: var(--cyan);
  font-weight: 600;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0,229,255,0.2);
  border-color: rgba(0,229,255,0.5);
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item  { aspect-ratio: 3/2; }
}

/* ============================================
   MUSIC
   ============================================ */
.soundcloud-embed {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.08);
}

.soundcloud-embed iframe {
  display: block;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mix-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}

.mix-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.4);
}

.mix-artwork {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg,
    hsl(var(--hue, 190), 80%, 8%),
    hsl(calc(var(--hue, 190) + 30), 70%, 14%));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mix-art-inner {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.06);
  font-size: 1.4rem;
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,229,255,0.15);
  z-index: 1;
}

.mix-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 30px;
  padding: 0 10%;
  opacity: 0.5;
}
.mix-waves span {
  flex: 1;
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  animation: waveBar 1s ease-in-out infinite alternate;
}
.mix-waves span:nth-child(1) { animation-duration: 0.7s; }
.mix-waves span:nth-child(2) { animation-duration: 1.1s; }
.mix-waves span:nth-child(3) { animation-duration: 0.9s; }
.mix-waves span:nth-child(4) { animation-duration: 0.6s; }
.mix-waves span:nth-child(5) { animation-duration: 0.8s; }

@keyframes waveBar {
  from { height: 4px; }
  to   { height: 24px; }
}

.mix-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}

.mix-type {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}

.mix-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
}

.mix-meta {
  font-size: 0.82rem;
  color: var(--gray);
}

.mix-play {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--cyan);
  transition: all var(--transition);
}
.mix-play:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(0,229,255,0.4);
}

/* Platform links */
.music-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray);
  transition: all var(--transition);
}
.platform-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

/* ============================================
   EVENTS
   ============================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  background: var(--bg-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.event-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.event-item:hover::before { transform: scaleY(1); }
.event-item:hover {
  border-color: rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.04);
  transform: translateX(4px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.event-day {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.event-info { flex: 1; }

.event-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.event-location {
  font-size: 0.85rem;
  color: var(--gray);
}
.event-location i { color: var(--cyan); margin-right: 0.3rem; }

.event-tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--cyan);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-text {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: all var(--transition);
}
.social-icon:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0,229,255,0.2);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--cyan);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: border-color var(--transition);
}
.contact-email:hover { border-color: var(--cyan); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--cyan); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 0.8rem 0;
}

.footer-social a {
  color: var(--gray);
  font-size: 1.1rem;
  transition: color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  color: var(--cyan);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   ANIMATIONS (Entry)
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.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: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .photo-frame { max-width: 260px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(280px, 80vw);
    background: rgba(8,11,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; letter-spacing: 3px; color: var(--white); }

  .about-stats { gap: 1.5rem; }
  .stat-num    { font-size: 1.8rem; }

  .event-item  { flex-wrap: wrap; gap: 1rem; }
  .event-tag   { margin-left: auto; }

  .hero-cta    { flex-direction: column; align-items: center; }
  .btn         { width: 100%; max-width: 260px; justify-content: center; }
}
