/* ============================================
   BLUES Y GRACIA — Website Styles
   Brand: Gold #D4AF37 · Black #1A1A1A · Cream #FFF8DC · Burnt Orange #CC5500 · Burgundy #800020
   ============================================ */

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --black: #1A1A1A;
  --black-soft: #111111;
  --cream: #FFF8DC;
  --cream-dark: #F5ECC8;
  --orange: #CC5500;
  --burgundy: #800020;
  --text: #2A2A2A;
  --text-light: #666;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold);
  letter-spacing: 0.02em; font-weight: 700;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black); border: none;
  padding: 8px 20px; border-radius: 24px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 24px 20px;
  background: rgba(26,26,26,0.98); border-top: 1px solid rgba(212,175,55,0.15);
}
.nav-mobile a { color: rgba(255,255,255,0.85); padding: 10px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 32px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition); border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,175,55,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--cream); }
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); color: var(--black); margin-bottom: 12px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold-light); }
.section-header.light .section-sub { color: rgba(255,255,255,0.8); }
.section-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; display: block; }
.section-sub { font-size: 1.1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 64px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.6) 50%,
    rgba(128,0,32,0.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 24px;
  max-width: 780px;
}
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 24px;
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scroll-dot 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes scroll-dot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ============================================
   MISSION
   ============================================ */
.mission { padding: 100px 0; background: var(--cream); }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mission-text h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--black); margin-bottom: 24px; line-height: 1.2; }
.mission-text h2 em { color: var(--burgundy); }
.mission-text p { color: var(--text); margin-bottom: 20px; font-size: 1.05rem; }
.mission-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ============================================
   MUSIC
   ============================================ */
.music { padding: 100px 0; background: var(--black); }
.music .section-header h2 { color: var(--cream); }
.music .section-eyebrow { color: var(--gold); }
.music .section-sub { color: rgba(255,248,220,0.7); }
.music-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.album-art { border-radius: var(--radius); box-shadow: 0 8px 48px rgba(212,175,55,0.25); width: 100%; aspect-ratio: 1; object-fit: cover; }
.streaming-links { margin-top: 24px; }
.streaming-links p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.platform-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-btn {
  padding: 8px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.platform-btn:hover { border-color: var(--gold); color: var(--gold); }
.platform-btn.spotify { background: rgba(30,215,96,0.1); border-color: rgba(30,215,96,0.4); color: #1ED760; }
.platform-btn.spotify:hover { background: rgba(30,215,96,0.2); }

/* ============================================
   ABOUT
   ============================================ */
/* VIDEO SECTION */
.video-section { padding: 100px 0; background: var(--black); }
.video-section .section-header h2 { color: var(--cream); }
.video-section .section-eyebrow { color: var(--gold); }
.video-section .section-sub { color: rgba(255,248,220,0.7); }
.video-wrapper {
  max-width: 900px;
  margin: 48px auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  background: #000;
}
.main-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-meta { text-align: center; margin-top: 24px; }
.video-quote { color: var(--cream); font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.8; margin-bottom: 12px; }
.video-credits { color: rgba(255,248,220,0.45); font-size: 0.85rem; letter-spacing: 0.04em; }

.about { padding: 100px 0; background: var(--cream-dark); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-secondary {
  width: 60%; position: absolute; bottom: -24px; right: -24px;
  border: 4px solid var(--cream-dark); aspect-ratio: 16/9; object-fit: cover;
}
.about-text { padding-left: 16px; }
.about-text h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--black); margin-bottom: 8px; }
.about-tagline { color: var(--orange); font-style: italic; margin-bottom: 24px; display: block; }
.about-text p { color: var(--text); margin-bottom: 18px; font-size: 1.02rem; }
.about-text blockquote {
  border-left: 3px solid var(--gold); padding: 16px 20px; margin-top: 28px;
  background: rgba(212,175,55,0.08); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--black);
}

/* ============================================
   SIGNUP
   ============================================ */
.signup { position: relative; padding: 100px 0; overflow: hidden; }
.signup-bg { position: absolute; inset: 0; }
.signup-bg-img { width: 100%; height: 100%; object-fit: cover; }
.signup-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.88); }
.signup-content { position: relative; z-index: 2; text-align: center; }
.signup-benefits {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.benefit {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(212,175,55,0.25);
  padding: 10px 20px; border-radius: 24px; color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.signup-form { max-width: 520px; margin: 0 auto; }
.form-row { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.form-row input {
  flex: 1; min-width: 200px; padding: 14px 18px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 32px; color: white; font-size: 0.95rem;
  outline: none; transition: var(--transition);
}
.form-row input::placeholder { color: rgba(255,255,255,0.45); }
.form-row input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.signup-form .btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-privacy { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 16px; }
.signup-success { color: white; text-align: center; }
.signup-success h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--gold); margin-bottom: 12px; }

/* ============================================
   SOCIAL
   ============================================ */
.social { padding: 100px 0; background: var(--cream); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.social-card {
  display: flex; align-items: center; gap: 20px; padding: 28px;
  border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08);
  background: white; box-shadow: var(--shadow); transition: var(--transition);
  text-decoration: none; color: var(--text);
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.social-card.coming-soon { opacity: 0.75; cursor: default; }
.social-card.coming-soon:hover { transform: none; box-shadow: var(--shadow); }
.social-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-card.youtube .social-icon { background: rgba(255,0,0,0.1); color: #FF0000; }
.social-card.instagram .social-icon { background: rgba(225,48,108,0.1); color: #E1306C; }
.social-card.tiktok .social-icon { background: rgba(0,0,0,0.07); color: #000; }
.social-card.spotify .social-icon { background: rgba(30,215,96,0.1); color: #1ED760; }
.social-info h4 { font-weight: 700; margin-bottom: 2px; font-size: 1rem; }
.social-info p { color: var(--text-light); font-size: 0.875rem; margin-bottom: 4px; }
.social-info span { font-size: 0.8rem; color: var(--text-light); }
.badge { background: var(--cream-dark); color: var(--orange); padding: 2px 10px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; }

/* ============================================
   PRESS
   ============================================ */
.press { padding: 100px 0; background: var(--black-soft); }
.press-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.press-text .section-eyebrow { color: var(--gold); }
.press-text h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--cream); margin-bottom: 16px; }
.press-text p { color: rgba(255,248,220,0.75); margin-bottom: 32px; }
.press-facts { margin-bottom: 32px; }
.fact { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.fact span { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.fact strong { color: var(--cream); font-size: 0.9rem; text-align: right; }
.press-text .btn-outline { color: var(--cream); border-color: rgba(255,248,220,0.4); }
.press-text .btn-outline:hover { background: var(--cream); color: var(--black); }
.press-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.9) contrast(1.05); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 4px; }
.footer-brand p em { color: rgba(255,255,255,0.35); }
.footer-email { color: var(--gold) !important; opacity: 0.8; }
.footer-links { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; align-items: flex-start; padding-top: 8px; }
.footer-social a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: rgba(212,175,55,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding-bottom: 40px;
  }
  .hero-img { object-position: center 10%; }
  .hero-content { padding: 40px 20px; }
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(26,26,26,0.55) 0%,
      rgba(26,26,26,0.82) 40%,
      rgba(26,26,26,0.92) 70%,
      rgba(26,26,26,0.97) 100%
    );
  }

  .mission-inner, .music-inner, .about-inner, .press-inner { grid-template-columns: 1fr; gap: 40px; }
  .music-inner { direction: ltr; }
  .about-images { margin-bottom: 40px; }
  .about-img-secondary { display: none; }
  .about-text { padding-left: 0; }

  .social-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { flex-direction: column; }
  .form-row input { min-width: unset; }
  .hero-ctas { flex-direction: column; align-items: center; }

  section { padding: 64px 0; }
  .music, .press { padding: 64px 0; }
}

@media (max-width: 480px) {
  .signup-benefits { flex-direction: column; align-items: center; }
  .platform-buttons { justify-content: center; }
  .hero-headline { font-size: 2rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .signup { padding: 64px 0; }
  .benefit { width: 100%; text-align: center; }
}
