/* ==========================================================================
   1. DESIGN TOKENS & RESET
   ========================================================================== */
:root {
  /* Palette */
  --color-asphalt-dark: #121415;
  --color-asphalt-mid: #1c1f21;
  --color-rust-orange: #e65c00;
  --color-rust-orange-hover: #cc5200;
  --color-text-light: #f5f5f7;
  --color-text-muted: #a1a1a6;

  /* Typography */
  /* --font-heading: 'Bebas Neue', impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif; */
  --font-heading: "Rubik Dirt", system-ui;
  --font-body: "Montserrat", sans-serif;
  --font-alt: "Oswald", sans-serif;
}

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

body {
  background-color: var(--color-asphalt-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
}

/* ==========================================================================
   2. NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(18, 20, 21, 0.9), rgba(18, 20, 21, 0));
  background-color: var(--color-asphalt-mid);
  padding: 1.5rem 2rem;
}

.nav-container {
  max-width: 1920px;
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width:800px){
  .nav-container {
    padding-left: 30px;
  }
}

.logo {
  font-family: var(--font-alt);  
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--color-rust-orange);
  text-decoration: none;
}

.logo-big {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: none;
  letter-spacing: 10%
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding-left: 5px;
}

.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-rust-orange);
}

@media only screen and (min-width:430px){
  .logo {
    font-size: 1.7rem;
  }
  .logo-big {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;  
  /* Background Image setup */
  background-image: url('../img/hero-small.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media only screen and (min-width:800px) {
  .hero {
    background-image: url('../img/hero.webp');
  }
}



/* Dark gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(18, 20, 21, 0.85) 0%, 
    rgba(18, 20, 21, 0.4) 50%, 
    rgba(18, 20, 21, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-top: 4rem; /* Offset for header */
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--color-rust-orange);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-text-light);
  margin: 1.25rem 0 2.5rem 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   4. CALL TO ACTION BUTTONS
   ========================================================================== */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 320px;
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background-color: var(--color-rust-orange);
  color: #000;
  box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-rust-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 92, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}


/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-content {
    margin-top: 6rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    max-width: 100%;
  }
}

/* ==========================================================================
   6. NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
  background-color: var(--color-asphalt-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 1.5rem;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-rust-orange);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.newsletter-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 2rem auto;
}

/* Form Layout */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.form-group {
  width: 100%;
}

/* Accessibility helper to hide visual labels while keeping them for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Input Fields Styling */
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--color-asphalt-dark);
  border: 1px solid #33373a;
  border-radius: 6px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input::placeholder {
  color: #63686d;
}

/* Focus states for input fields */
.newsletter-form input:focus {
  border-color: var(--color-rust-orange);
  box-shadow: 0 0 0 2px rgba(230, 92, 0, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  white-space: nowrap;
}

.privacy-note {
  font-size: 0.8rem;
  color: #63686d;
  margin-top: 1rem;
}

/* Desktop Horizontal Layout */
@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
    align-items: center;
  }

  .form-group {
    flex: 1;
  }

  .btn-submit {
    width: 100%;
    margin-top: 30px !important;
  }
}

/* ==========================================================================
   6A. Brevo Overrides
   ========================================================================== */
#sib-container {
  background: none !important;
  padding: 0 !important;
}
.form-group > label {
  padding-left: 10px;
}

/* ==========================================================================
   7. MUSIC SECTION
   ========================================================================== */
.music-section {
  background-color: var(--color-asphalt-dark);
  padding: 5rem 1.5rem;
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-group {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-rust-orange);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}

/* Responsive Grid Layout */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.media-card {
  background-color: var(--color-asphalt-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* Fluid Responsive Wrapper for YouTube (16:9 Aspect Ratio) */
.video-responsive-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

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

/* Desktop Grid View */
@media (min-width: 850px) {
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   8. BIOGRAPHY SECTION
   ========================================================================== */
.bio-section {
  background-color: var(--color-asphalt-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 1.5rem;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Portrait Image Wrapper */
.bio-image-wrapper {
  position: relative;
  border-radius: 12%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bio-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(15%) contrast(105%);
}

/* Bio Copy Styling */
.bio-content {
  color: var(--color-text-light);
}

.text-left {
  text-align: left;
  margin-bottom: 0.5rem;
}

.bio-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-rust-orange);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.bio-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bio-cta {
  display: inline-block;
  margin-top: 1rem;
}

/* Desktop Two-Column View */
@media (min-width: 850px) {
  .bio-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   9. MERCHANDISE SECTION
   ========================================================================== */
.merch-section {
  background-color: var(--color-asphalt-dark);
  padding: 5rem 1.5rem;
}

.merch-container {
  max-width: 1200px;
  margin: 0 auto;
}

.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.merch-card {
  background-color: var(--color-asphalt-mid);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.merch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.merch-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #151718;
}

.merch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.merch-card:hover .merch-image {
  transform: scale(1.05);
}

.merch-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.merch-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.merch-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-rust-orange);
  margin-bottom: 1.25rem;
}

.merch-btn {
  margin-top: auto;
  width: 100%;
}

.color-link, .color-link:visited {
  color: var(--color-rust-orange);
}

.color-link:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0d0e0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 2rem 1.5rem;
  color: var(--color-text-muted);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-rust-orange);
}

.footer-contact-email {
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
}

/* Desktop Grid View */
@media (min-width: 768px) {
  .merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 2fr;
  }
}

/* ==========================================================================
   11. PRIVACY PAGE
   ========================================================================== */
.privacy {
  margin-top: 50px;
}

.privacy-text {
  text-align: left;
}
.privacy-text > h1, .privacy-text > h2, .privacy-text > h3, .privacy-text > h4, .privacy-text > h5 {
  color: var(--color-rust-orange);
  margin-top: 10px;
}
.privacy-text > ul {
  padding-left: 30px;
  list-style-type: square;
}

/* ==========================================================================
   12. CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--color-asphalt-dark);
  padding: 5rem 1.5rem;
}

.contact-container {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-lead-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-asphalt-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form .form-group {
  text-align: left;
}

.contact-response-msg {
  display: none;
  color: var(--color-rust-orange) !important;
  font-size: 1.25rem;
  padding-bottom: 10px;
}

/* Accessibility: Hide labels visually, but keep them for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Input Fields & Textarea Styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 1.1rem;
  background-color: var(--color-asphalt-dark);
  border: 1px solid #33373a;
  border-radius: 6px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #63686d;
}

/* Focus States (Matching Brevo Form style) */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-rust-orange);
  box-shadow: 0 0 0 2px rgba(230, 92, 0, 0.2);
}

.contact-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   12.a SPAM PREVENTION - HONEYPOT STYLE
   ========================================================================== */
/* CRITICAL: Force this field completely out of sight. 
   Bots see it, but humans/browsers do not. */
.hp-field {
  position: absolute !important;
  left: -5000px !important;
  top: -5000px !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* Desktop Width Optimization */
@media (min-width: 640px) {
  .contact-btn {
    width: auto;
    align-self: flex-start;
  }
}