/* ============================================
   GRUPO GDL — Pop Rock Latino
   External stylesheet for gdlmusic.com
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --bg-card: #161616;
  --text: #F1FAEE;
  --text-secondary: #A8A8A8;
  --muted: #666;
  --accent: #E63946;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --border: #222;
  --radius: 4px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

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

/* ── Scroll Progress Bar ── */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 50ms linear;
}

/* ── Reveal Animation ── */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--text);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.btn-nav {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-nav:hover {
  background: #ff4757;
  box-shadow: 0 0 20px var(--accent-glow);
}
.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(--text);
  transition: 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-tag {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 140px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #ff4757;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ── GALLERY ── */
.gallery {
  padding: 0 0 40px;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-handle {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ── VIDEOS ── */
.videos-section {
  padding: 100px 0;
  background: var(--bg);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.video-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── SONGS ── */
.songs-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.soundcloud-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}
.soundcloud-wrap iframe {
  display: block;
}

/* ── COMPARISON TABLE ── */
.compare-section {
  padding: 100px 0;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table thead tr {
  border-bottom: 2px solid var(--accent);
}
.compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.hl-col { color: var(--accent); }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.compare-table td:nth-child(2) {
  text-align: center;
  color: var(--muted);
}
.compare-table td.hl-col {
  text-align: center;
  color: var(--text);
}

/* ── SETUP TABLE ── */
.setup-section {
  padding: 60px 0 100px;
  background: var(--bg);
}
.setup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.setup-table thead tr {
  border-bottom: 2px solid var(--border);
}
.setup-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.setup-table th:last-child { text-align: center; }
.setup-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.setup-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.check-col {
  text-align: center !important;
  color: var(--accent) !important;
  font-size: 18px;
  font-weight: 700;
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  float: right;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after {
  content: '−';
  color: var(--accent);
}
.faq-q:hover { color: var(--accent); }
.faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.footer-socials a:hover { transform: scale(1.2); }
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
  transition: fill 0.2s;
}
.footer-socials a:hover svg { fill: var(--text); }

/* ============================================
   EPK PAGE
   ============================================ */

/* ── EPK HERO ── */
.epk-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.epk-hero-bg {
  position: absolute;
  inset: 0;
}
.epk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.epk-hero-content {
  position: relative;
  text-align: center;
  padding: 140px 24px 80px;
}
.epk-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 140px);
  line-height: 0.95;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── EPK SECTION INTRO ── */
.epk-section-intro {
  font-size: 16px;
  color: var(--muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

/* ── EPK BIO ── */
.epk-bio {
  padding: 120px 0;
  background: var(--bg);
}

/* ── FACTS GRID ── */
.epk-facts {
  padding: 80px 0 100px;
  background: var(--bg-alt);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}
.fact-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* ── PLATFORMS GRID ── */
.epk-platforms {
  padding: 100px 0;
  background: var(--bg-alt);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.platform-card svg {
  width: 40px;
  height: 40px;
  fill: var(--muted);
  transition: fill 0.2s;
}
.platform-card:hover svg {
  fill: var(--accent);
}
.platform-card span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

/* ── PRESS PHOTOS ── */
.epk-photos {
  padding: 100px 0;
  background: var(--bg);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.press-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  display: block;
}
.press-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.press-item:hover img {
  transform: scale(1.05);
}
.press-dl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.press-item:hover .press-dl {
  opacity: 1;
  transform: translateY(0);
}

/* ── NOTABLE SHOWS ── */
.epk-shows {
  padding: 100px 0;
  background: var(--bg-alt);
}
.shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.show-venue {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.show-location {
  font-size: 14px;
  color: var(--muted);
}
.shows-note {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-right {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-right.open { display: flex; }
  .nav-link { font-size: 18px; }
  .btn-nav { font-size: 16px; padding: 14px 40px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid,
  .video-grid-3 {
    grid-template-columns: 1fr;
  }

  .compare-table th:nth-child(2),
  .compare-table td:nth-child(2) {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* EPK mobile */
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shows-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 56px;
  }

  /* EPK mobile small */
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
}
