/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A0A0A; /* --noir */
    font-family: sans-serif;
    overflow-x: hidden;
}

.hero-section {
    width: 100vw;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
    overflow: hidden; /* Prevents any spill outside the section */
}

.hero-image {
    max-width: 100%;  /* Scales width to container */
    max-height: 100vh; /* Never exceeds viewport height */
    width: auto;      /* Maintains aspect ratio */
    height: auto;     /* Maintains aspect ratio */
    display: block;
    object-fit: contain; /* Ensures whole image is visible, may add letterboxing */
}
/* Pre-save Banner Section */
.presave-banner-section {
    width: 100%;
    background-color: #0A0A0A; /* Matches page background */
    padding: 40px 20px; /* Adds space above and below the banner */
    text-align: center;
    border-top: 1px solid #C9A96A;
}

.presave-banner-link {
    display: inline-block; /* Allows centering and hover effects */
    max-width: 100%;
    transition: transform 0.3s ease;
}

.presave-banner {
    max-width: 90vw; /* Responsive width */
    width: auto;
    max-height: 120px; /* Controls button height */
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.presave-banner-link:hover {
    transform: scale(1.03); /* Subtle hover grow */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .presave-banner {
        max-height: 100px;
    }
    .presave-banner-section {
        padding: 30px 20px;
    }
}

/* Sneak Peek Section */
.sneak-peek-section {
    width: 100%;
    background-color: #111; /* Slightly lighter than noir for depth */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #C9A96A; /* --gold */
    border-bottom: 1px solid #C9A96A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: #C9A96A; /* --gold */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7C7C7C; /* --concrete */
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    justify-items: center;
}

.video-item {
    max-width: 400px;
    width: 100%;
}

.teaser-video {
    width: 100%;
    height: auto;
    max-height: 1350px; /* Matches your vertical dimension */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border: 3px solid #7A1C3F; /* --crimson */
    background-color: #000;
    aspect-ratio: 1080 / 1350; /* Ensures correct vertical crop */
    object-fit: cover; /* Crops video to fit container */
}

.video-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    color: #F5F5F5; /* --light */
    margin: 25px 0 10px 0;
}

.video-description {
    font-size: 1rem;
    color: #7C7C7C; /* --concrete */
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .sneak-peek-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================
   SECTION 4 – COMMUNITY CTA
   ========================= */

.cta-section {
  padding: 4rem 1.5rem;
}

.cta-section .cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #C9A96A;
}

.cta-section .cta-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* TEXT SIDE */
.cta-section .cta-text {
  flex: 1;
  min-width: 300px;
}

.cta-section .cta-headline {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-section .cta-subtext {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #c9a96a;
}

/* FORM */
.cta-section .cta-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: none;
}

.cta-section .cta-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background-color: #c9a96a; /* gold */
  color: #0a0a0a;
  border: none;
  cursor: pointer;
}

.cta-section .cta-microtext {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #cccccc;
}

/* IMAGE SIDE */
.cta-section .cta-image {
  flex: 1;
  min-width: 300px;
}

.cta-section .cta-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1342;
  object-fit: cover;
}

/* =========================
   SECTION 5 – ARTIST BIO
   ========================= */

.bio-section {
  padding: 4rem 1.5rem;
  border-bottom: 1px solid #C9A96A;
}

.bio-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bio-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.bio-image {
  flex: 1;
  min-width: 300px;
}

.bio-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bio-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #e6e6e6;
}

/* =========================
   SECTION 6 – OUT NOW
   ========================= */

.release-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #0a0a0a;
}

.release-inner {
  max-width: 900px;
  margin: 0 auto;
}

.release-headline {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #c9a96a;
}

/* PLATFORM GRID */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.platform-grid a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: #d0d0d0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.platform-grid a:hover {
  color: #c9a96a;
  border-color: #c9a96a;
  transform: translateY(-2px);
}

.release-footer-text {
  font-size: 0.85rem;
  color: #bdbdbd;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid #C9A96A;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  font-size: 0.9rem;
  color: #c9a96a;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: #888888;
}

