/* ==========================================================================
   Dust & Ember Collective - Global Styles
   Apple Music-style light theme with system fonts
   ========================================================================== */

:root {
  /* Text Colors */
  --systemPrimary: rgba(0, 0, 0, 0.88);
  --systemSecondary: rgba(0, 0, 0, 0.56);
  --systemTertiary: rgba(0, 0, 0, 0.36);

  /* Accent Colors */
  --keyColor: #d60017;
  --keyColorHover: #b00000;
  --keyColorPressed: #a20000;

  /* Backgrounds */
  --bgPrimary: #ffffff;
  --bgSecondary: rgba(60, 60, 67, 0.03);
  --bgTertiary: rgba(60, 60, 67, 0.08);

  /* Borders */
  --borderColor: rgba(0, 0, 0, 0.1);

  /* Spacing */
  --headerHeight: 80px;

  /* Typography */
  --fontFamily: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fontFamily);
  color: var(--systemPrimary);
  background-color: var(--bgPrimary);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--keyColor);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--keyColorHover); }
a:active { color: var(--keyColorPressed); }

/* Layout - Shell */
.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  flex: 1;
  padding-top: var(--headerHeight);
}

.hide{
  display:none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--fontFamily);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--keyColor);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--keyColorHover);
  color: #fff;
}

.btn-primary:active {
  background-color: var(--keyColorPressed);
}

.btn-secondary {
  background-color: var(--bgTertiary);
  color: var(--systemPrimary);
}

.btn-secondary:hover {
  background-color: rgba(60, 60, 67, 0.12);
  color: var(--systemPrimary);
}
.btn i{
  margin-right: 6px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--headerHeight);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--borderColor);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--systemPrimary);
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--systemPrimary);
}

/* Desktop Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--systemPrimary);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nav-link:hover {
  background-color: var(--bgSecondary);
  color: var(--systemPrimary);
}

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding: 8px 0;
  background: var(--bgPrimary);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--systemPrimary);
  transition: background-color 0.15s ease;
}

.dropdown-link:hover {
  background-color: var(--bgSecondary);
  color: var(--systemPrimary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--systemPrimary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bgPrimary);
  padding: 16px 24px;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--systemPrimary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--borderColor);
  cursor: pointer;
  text-align: left;
  font-family: var(--fontFamily);
}

.mobile-nav-link:hover {
  color: var(--keyColor);
}

.bands-toggle .dropdown-arrow {
  transition: transform 0.2s ease;
}

.bands-toggle.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.bands-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bands-submenu.is-open {
  max-height: 200px;
}

.mobile-nav-sublink {
  display: block;
  padding: 12px 0 12px 20px;
  font-size: 1rem;
  color: var(--systemSecondary);
  border-bottom: 1px solid var(--borderColor);
}

.mobile-nav-sublink:hover {
  color: var(--keyColor);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bgSecondary);
  border-top: 1px solid var(--borderColor);
  padding: 40px 0;
  margin-top: auto;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--systemSecondary);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--systemPrimary);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--systemPrimary);
}

.social-link:hover {
  color: var(--keyColor);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--systemSecondary);
  margin: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bgSecondary) 0%, var(--bgPrimary) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.hero-copy {
  padding-top: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--systemSecondary);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--bgPrimary);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-card--subtle {
  background: var(--bgSecondary);
  box-shadow: none;
  border: 1px solid var(--borderColor);
}

.hero-card-label {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--keyColor);
  margin-bottom: 8px;
}

.hero-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-subtitle {
  font-size: 0.9375rem;
  color: var(--systemSecondary);
  margin-bottom: 16px;
}

.hero-card-text {
  font-size: 0.9375rem;
  color: var(--systemSecondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ==========================================================================
   Band Hero Section
   ========================================================================== */

.hero-band {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bgSecondary) 0%, var(--bgPrimary) 100%);
}

.hero-band-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.hero-band-copy {
  padding-top: 20px;
}

.overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--keyColor);
  margin-bottom: 12px;
}

.hero-band-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-band-tagline {
  font-size: 1.25rem;
  color: var(--systemSecondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-band-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-band-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Essential Tracks List */
.essential-tracks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.essential-tracks li {
  padding: 8px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--systemPrimary);
  border-bottom: 1px solid var(--borderColor);
}

.essential-tracks li:last-child {
  border-bottom: none;
}

.essential-tracks li::before {
  content: "♪";
  margin-right: 10px;
  color: var(--keyColor);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-content {
  max-width: 720px;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--systemPrimary);
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Page Hero (Simple)
   ========================================================================== */

.page-hero {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, var(--bgSecondary) 0%, var(--bgPrimary) 100%);
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--systemSecondary);
  line-height: 1.5;
  max-width: 600px;
  margin: 0;
}

/* ==========================================================================
   Video Grid & Cards
   ========================================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--bgPrimary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borderColor);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: var(--bgTertiary);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--systemPrimary);
  margin: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bgSecondary);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.section-prayer {
    padding: 32px 0;
    background-color: var(--keyColor);
    color: #FFFFFF;
}

.section-prayer .hero-card-label {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.section-prayer p {
    margin-bottom: 2.5rem;
}

/* Link Arrow */
.link-arrow {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--keyColor);
}

.link-arrow:hover {
  color: var(--keyColorHover);
}


.section-prayer .link-arrow {
    font-size: 1.2rem;
    font-weight: 500;
    background-color: #ffffff;
}

/* ==========================================================================
   Band Grid & Cards
   ========================================================================== */

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.band-card {
  background: var(--bgPrimary);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.band-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.band-image {
  text-align: center;
}

.band-image img {
    border-radius: 8px;
}

.band-card-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.band-card-desc {
  font-size: 0.9375rem;
  color: var(--systemSecondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.band-card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.band-card-actions .btn {
    width: 100%;
}

/* ==========================================================================
   Release Grid & Cards
   ========================================================================== */

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.release-card {
  background: var(--bgPrimary);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--borderColor);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.release-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.release-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bgTertiary) 0%, var(--bgSecondary) 100%);
  border-radius: 8px;
  margin-bottom: 12px;
  width:100%;
  height:auto;
}
.release-cover img, .latest-release-cover img{
  border-radius: 8px;
  width:100%;
  height:auto;
}

.release-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-meta {
  font-size: 0.8125rem;
  color: var(--systemSecondary);
  margin-bottom: 12px;
}

.release-actions {
  display: flex;
  gap: 8px;
}

/* ==========================================================================
   Button Size Variants
   ========================================================================== */

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* ==========================================================================
   Cards (Generic)
   ========================================================================== */

.card {
  background: var(--bgPrimary);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-soft {
  max-width: 640px;
  background: var(--bgPrimary);
  border: 1px solid var(--borderColor);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.card-footer-text {
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--systemTertiary);
  text-align: center;
}

/* ==========================================================================
   Alerts
   ========================================================================== */

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.alert strong {
  font-weight: 600;
}

.alert-success {
  background: rgba(52, 199, 89, 0.12);
  color: #1d7a34;
  border: 1px solid rgba(52, 199, 89, 0.3);
}

.alert-error {
  background: rgba(255, 59, 48, 0.1);
  color: #c9302c;
  border: 1px solid rgba(255, 59, 48, 0.25);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--systemPrimary);
}

.form-optional {
  font-weight: 400;
  color: var(--systemSecondary);
}

.form-required {
  color: var(--keyColor);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--fontFamily);
  font-size: 1rem;
  color: var(--systemPrimary);
  background: var(--bgPrimary);
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--keyColor);
  box-shadow: 0 0 0 3px rgba(214, 0, 23, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--systemTertiary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--systemSecondary);
  margin: 0;
}

.form-actions {
  padding-top: 8px;
}

/* Honeypot - hidden from humans */
.hp-row {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--systemSecondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--keyColor);
  word-break: break-all;
}

.contact-email:hover {
  color: var(--keyColorHover);
}

.social-bands {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-band {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borderColor);
}

.social-band:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.social-band-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--keyColor);
}

.social-link-item:hover {
  color: var(--keyColorHover);
}

/* ==========================================================================
   Visual Polish & Refinements
   ========================================================================== */

/* Ensure consistent card shadows */
.hero-card,
.band-card,
.release-card,
.video-card,
.card {
  border-radius: 12px;
}

.hero-card {
  border-radius: 16px;
}

.band-card {
  border-radius: 16px;
}

/* Secondary button outline variant */
.btn-outline {
  background: transparent;
  color: var(--systemPrimary);
  border: 1px solid var(--borderColor);
}

.btn-outline:hover {
  background: var(--bgSecondary);
  color: var(--systemPrimary);
}

@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-panel {
    flex-direction: row;
  }

  .hero-card {
    flex: 1;
  }

  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Band Hero Tablet */
  .hero-band-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-band-panel {
    max-width: 400px;
  }

  /* Video Grid Tablet */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .shell {
    padding: 0 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* Hero Mobile */
  .hero {
    padding: 48px 0 40px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-tagline {
    font-size: 1.0625rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-panel {
    flex-direction: column;
  }

  /* Sections Mobile */
  .section {
    padding: 48px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Band Grid Mobile */
  .band-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Release Grid Mobile */
  .release-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Band Hero Mobile */
  .hero-band {
    padding: 48px 0 40px;
  }

  .hero-band-title {
    font-size: 2.5rem;
  }

  .hero-band-tagline {
    font-size: 1.0625rem;
  }

  .hero-band-ctas {
    flex-direction: column;
  }

  .hero-band-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-band-panel {
    max-width: none;
  }

  /* About Mobile */
  .about-text p {
    font-size: 1rem;
  }

  /* Page Hero Mobile */
  .page-hero {
    padding: 48px 0 32px;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  /* Video Grid Mobile */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Card Mobile */
  .card {
    padding: 24px;
  }

  .card-soft {
    padding: 24px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  /* Form Mobile */
  .form-actions .btn {
    width: 100%;
  }

  /* Contact Page Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-email {
    font-size: 1rem;
  }
}

@media (max-width: 422px) {
  .release-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

@media (max-width: 345px) {
  .latest-btn{
    margin-bottom:12px;
  }
}

@media (min-width: 768px) {
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bgPrimary);
  border-top: 1px solid var(--borderColor);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--systemSecondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-banner-link {
  font-size: 0.875rem;
  color: var(--keyColor);
  text-decoration: none;
}

.cookie-banner-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.privacy-updated {
  font-size: 0.875rem;
  color: var(--systemSecondary);
  margin-bottom: 32px;
}

.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--systemPrimary);
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--systemPrimary);
}

.privacy-content p {
  margin-bottom: 16px;
  color: var(--systemPrimary);
  line-height: 1.7;
}

.privacy-content ul {
  margin: 0 0 16px 24px;
  color: var(--systemPrimary);
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-content a {
  color: var(--keyColor);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

