/* ============================================
   breelaurent.com — Mobile-First Stylesheet
   Color palette drawn from hero + cover imagery:
   Emerald #2d8a5a, Amber #c9944c, Teal #1e3d48,
   Cream #f0ebe3, Dark #080b0f
   ============================================ */

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

:root {
  --color-bg: #080b0f;
  --color-surface: rgba(8, 11, 15, 0.88);
  --color-emerald: #2d8a5a;
  --color-emerald-light: #3da870;
  --color-amber: #c9944c;
  --color-amber-light: #ddb468;
  --color-cream: #f0ebe3;
  --color-cream-muted: rgba(240, 235, 227, 0.7);
  --color-teal: #1e3d48;
  --color-navy: #0f1720;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bree-hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 11, 15, 0.3) 0%,
    rgba(8, 11, 15, 0.5) 50%,
    rgba(8, 11, 15, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 600px;
  animation: fadeInUp 1s ease-out both;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-emerald-light);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-artist {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--color-cream-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* ---- STREAMING LINKS ---- */

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid rgba(45, 138, 90, 0.45);
  border-radius: 100px;
  color: var(--color-cream);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(45, 138, 90, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.stream-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stream-btn:hover,
.stream-btn:focus-visible {
  background: rgba(45, 138, 90, 0.25);
  border-color: var(--color-emerald-light);
  color: var(--color-emerald-light);
  transform: translateY(-2px);
}

/* ---- SCROLL INDICATOR ---- */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
  animation: fadeIn 1s 1.5s ease-out both;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-emerald), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- MAIN CONTENT ---- */

.content {
  position: relative;
  z-index: 3;
  background: var(--color-bg);
}

/* ---- SINGLE SECTION ---- */

.single-section {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.cover-art-link {
  display: inline-block;
  perspective: 600px;
  border-radius: 8px;
}

.cover-art {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(45, 138, 90, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform, box-shadow;
}

.cover-art-link:hover .cover-art,
.cover-art-link:focus .cover-art {
  transform: rotate(3deg) scale(1.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65),
              0 10px 30px rgba(0, 0, 0, 0.4),
              0 0 50px rgba(45, 138, 90, 0.15);
}

.cover-art-link:active .cover-art {
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7),
              0 15px 40px rgba(0, 0, 0, 0.45),
              0 0 60px rgba(45, 138, 90, 0.2);
  transition-duration: 0.15s;
}

/* ---- VIDEO SECTION ---- */

.video-section {
  padding: 2rem 1.5rem 3rem;
  display: flex;
  justify-content: center;
}

.video-teaser {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(45, 138, 90, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.video-teaser-content {
  text-align: center;
  padding: 1.5rem;
}

.play-icon {
  width: 48px;
  height: 48px;
  color: var(--color-amber);
  opacity: 0.7;
  margin-bottom: 1rem;
  animation: playPulse 3s ease-in-out infinite;
}

.video-teaser-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  margin-bottom: 0.25rem;
}

.video-teaser-soon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-amber);
}

.video-embed {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- SIGNUP SECTION ---- */

.signup-section {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.signup-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.signup-section > p {
  font-size: 0.9375rem;
  color: var(--color-cream-muted);
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(45, 138, 90, 0.3);
  border-radius: 6px;
  background: rgba(240, 235, 227, 0.05);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(240, 235, 227, 0.35);
}

.signup-form input[type="email"]:focus {
  border-color: var(--color-emerald);
}

.signup-form button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  background: var(--color-emerald);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--color-emerald-light);
  transform: translateY(-1px);
}

.signup-note {
  font-size: 0.75rem;
  color: rgba(240, 235, 227, 0.3);
  margin-top: 0.75rem;
}

/* ---- FOOTER ---- */

.site-footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(240, 235, 227, 0.06);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-cream-muted);
  border: 1px solid rgba(240, 235, 227, 0.1);
  transition: all 0.3s ease;
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-emerald-light);
  border-color: rgba(45, 138, 90, 0.4);
  background: rgba(45, 138, 90, 0.1);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(240, 235, 227, 0.25);
  letter-spacing: 0.03em;
}

/* ---- ANIMATIONS ---- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.6; }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }
}

@keyframes playPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET — 600px+
   ============================================ */

@media (orientation: landscape) and (min-height: 300px) {
  .hero-content {
    margin-top: 20vh;
  }
}

@media (min-width: 600px) {
  .hero-content {
    padding: 2rem 2.5rem;
    margin-top: 16vh;
  }

  .streaming-links {
    gap: 0.75rem;
  }

  .stream-btn {
    padding: 0.75rem 1.375rem;
    font-size: 0.875rem;
  }

  .single-section {
    padding: 4rem 2rem;
  }

  .cover-art {
    max-width: 360px;
  }

  .signup-form {
    flex-direction: row;
  }

  .signup-form input[type="email"] {
    flex: 1;
  }

  .signup-form button {
    white-space: nowrap;
  }

  .video-section {
    padding: 2rem 2rem 4rem;
  }
}

/* ============================================
   DESKTOP — 960px+
   ============================================ */

@media (min-width: 960px) {
  .hero::before {
    position: fixed;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 2rem 3rem;
    max-width: 700px;
    margin-top: 24vh;
  }

  .single-section {
    padding: 5rem 3rem;
  }

  .cover-art {
    max-width: 400px;
  }

  .video-section {
    padding: 2rem 3rem 5rem;
  }

  .video-teaser,
  .video-embed {
    max-width: 800px;
  }

  .signup-section {
    padding: 4rem 2rem;
    max-width: 540px;
  }

  .signup-section h2 {
    font-size: 1.75rem;
  }

  .site-footer {
    padding: 4rem 3rem 2.5rem;
  }
}

/* ============================================
   WIDE DESKTOP — 1200px+
   ============================================ */

@media (min-width: 1200px) {
  .hero-content {
    max-width: 800px;
    margin-top: 27vh;
  }

  .video-teaser,
  .video-embed {
    max-width: 900px;
  }
}

/* ---- ACCESSIBILITY ---- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-emerald);
  outline-offset: 3px;
}
