/* =============================================
   🔒 BASELINE LOCKED - DECEMBER 27, 2025
   
   COMPLETE WEBSITE BASELINE - PRODUCTION READY
   
   This entire stylesheet represents the approved baseline.
   See BASELINE_LOCKED.md for complete documentation.
   
   QUICK RESTORE VALUES:
   Desktop Header: 160px, auto 190%, icons 50px, nav 19px
   Mobile Header: 140px, auto 150%, icons 48px
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0000;
  background-image: url("../assets/images/background.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #f5e6e0;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 0, 0.85);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* =============================================
   LAYOUT CONTAINER
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Added canvas positioning for particle effects */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Added video background styling */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 0, 0.7);
  z-index: 1;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

/* ========================================================================
   🔒 LOCKED IN BASELINE - DECEMBER 27, 2025
   ========================================================================
   
   DESKTOP (Default):
   - Header Height: 160px
   - Banner Background-Size: auto 190%
   - Social Icon Size: 50px × 50px
   - Navigation Font-Size: 19px
   - Banner Image File: assets/images/shellzbanner.jpg
   
   MOBILE (@media max-width: 768px):
   - Header Height: 140px
   - Banner Background-Size: auto 150%
   - Social Icon Size: 48px × 48px
   
   GRADIENT OVERLAY:
   - linear-gradient(90deg, rgba(10,0,0,0.3) 0%, rgba(10,0,0,0) 25%, 
     rgba(10,0,0,0) 75%, rgba(10,0,0,0.3) 100%)
   
   ⚠️ REVERT TO THESE VALUES IF FUTURE CHANGES BREAK THE DESIGN
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Removed background image from header, will be applied to clickable link instead */
  background-color: rgba(10, 0, 0, 0.95);
  border-bottom: 1px solid rgba(183, 110, 121, 0.2);
  min-height: 160px;
  display: flex;
  align-items: center;
}

/* Lightened gradient overlay for better banner visibility */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 0, 0, 0.3) 0%,
    rgba(10, 0, 0, 0) 25%,
    rgba(10, 0, 0, 0) 75%,
    rgba(10, 0, 0, 0.3) 100%
  ); /* 🔒 LOCKED - Gradient overlay */
  pointer-events: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0; /* Adjusted padding for 160px header */
  position: relative;
  z-index: 2;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Increased icon size proportionally for larger header */
.social-icon {
  width: 50px; /* 🔒 LOCKED - Desktop social icon size */
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Added banner background to clickable center link */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  min-width: 300px;
  min-height: 160px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  /* Banner image now on clickable element */
  background-image: url("../assets/images/shellzbanner.jpg");
  background-size: auto 190%;
  background-position: center;
  background-repeat: no-repeat;
}

.header-center:hover {
  opacity: 0.8;
}

.logo {
  display: none; /* Banner is background, not element */
}

.header-right nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}

/* Increased navigation font size for better balance */
.nav-link {
  font-size: 19px; /* 🔒 LOCKED - Desktop navigation font size */
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b76e79, #d4a373);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #d4a373;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5e6e0;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 768px) {
  /* Restoring mobile header to baseline 140px with proper structure */
  .site-header {
    min-height: 140px;
  }

  .header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .header-left {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .header-center {
    order: 2;
    background-size: auto 150%; /* Baseline mobile banner size */
    min-height: 140px;
    cursor: pointer;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .header-right nav {
    display: none;
    position: fixed;
    top: 140px; /* Position below header */
    left: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .header-right nav.active {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }
  /* End baseline mobile restoration */

  .header-right nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-right nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  }

  .header-right nav ul li:last-child {
    border-bottom: none;
  }

  .header-right nav ul li a {
    display: block;
    padding: 16px 20px;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .header-right nav ul li a:hover {
    background: rgba(139, 0, 0, 0.2);
    padding-left: 30px;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  z-index: 2;
}

.hero-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a373;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 20px rgba(183, 110, 121, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f5e6e0;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, #b76e79, #8b4552);
  border-color: #b76e79;
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4a373, #b76e79);
  border-color: #d4a373;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: #d4a373;
  color: #d4a373;
}

.btn-secondary:hover {
  background: #d4a373;
  color: #0a0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
}

.hero-platforms {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.platform-link:hover {
  opacity: 1;
}

.hero-right {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(183, 110, 121, 0.3);
}

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

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

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

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

/* =============================================
   SECTION TITLES
   ============================================= */

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0 0 20px rgba(183, 110, 121, 0.4);
}

/* =============================================
   FEATURED SECTION (CARDS)
   ============================================= */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.featured-card {
  background: rgba(20, 10, 10, 0.8);
  border: 2px solid rgba(183, 110, 121, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: #b76e79;
  box-shadow: 0 20px 40px rgba(183, 110, 121, 0.3);
}

.card-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

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

.card-content {
  padding: 30px;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.card-subtitle {
  font-size: 14px;
  color: #d4a373;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  min-width: 100px;
}

/* =============================================
   UPCOMING SHOWS SECTION
   ============================================= */

.shows-section {
  background: rgba(20, 10, 10, 0.4);
  padding: 80px 0;
  margin: 0;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.show-card {
  background: rgba(20, 10, 10, 0.8);
  border: 2px solid rgba(183, 110, 121, 0.3);
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease;
}

.show-card:hover {
  transform: translateY(-5px);
  border-color: #b76e79;
  box-shadow: 0 15px 35px rgba(183, 110, 121, 0.4);
  background: rgba(20, 10, 10, 0.95);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b76e79, #8b4552);
  border-radius: 8px;
  padding: 15px;
  min-width: 100px;
  text-align: center;
}

.date-month {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0.9;
}

.date-day {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 5px 0;
}

.date-year {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

.show-details {
  flex: 1;
}

.show-venue {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.show-location {
  font-size: 16px;
  color: #d4a373;
  margin-bottom: 5px;
}

.show-time {
  font-size: 14px;
  color: #f5e6e0;
  opacity: 0.8;
}

.show-actions {
  display: flex;
  align-items: center;
}

.no-shows {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: rgba(20, 10, 10, 0.6);
  border-radius: 12px;
  border: 2px dashed rgba(183, 110, 121, 0.3);
}

.no-shows p {
  font-size: 16px;
  color: #f5e6e0;
  opacity: 0.8;
}

.no-shows a {
  color: #d4a373;
  text-decoration: underline;
}

.no-shows a:hover {
  color: #b76e79;
}

@media (max-width: 768px) {
  .show-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .show-date {
    margin: 0 auto;
  }

  .show-actions {
    justify-content: center;
  }

  .show-actions .btn-small {
    width: 100%;
  }
}

/* =============================================
   MERCH SECTION
   ============================================= */

.merch-section {
  background: linear-gradient(135deg, rgba(139, 69, 69, 0.3), rgba(183, 110, 121, 0.2));
  border: 2px solid rgba(183, 110, 121, 0.4);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.merch-content {
  position: relative;
  z-index: 2;
}

.merch-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.merch-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f5e6e0;
  opacity: 0.9;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(183, 110, 121, 0.2);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  max-width: 280px; /* Increased footer logo from 200px to 280px to match header */
}

.footer-tagline {
  font-size: 14px;
  text-align: center;
  color: #d4a373;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #f5e6e0;
  opacity: 0.6;
  margin-top: 20px;
}

/* =============================================
   MUSIC PAGE - SPOTIFY EMBEDS
   ============================================= */

.spotify-section {
  margin-bottom: 60px;
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(183, 110, 121, 0.3);
  margin-bottom: 40px;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* =============================================
   MEDIA PAGE - GALLERY
   ============================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(183, 110, 121, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: #b76e79;
  box-shadow: 0 15px 35px rgba(183, 110, 121, 0.4);
}

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

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.video-section {
  margin-bottom: 80px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(183, 110, 121, 0.3);
}

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

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #f5e6e0;
  opacity: 0.9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(20, 10, 10, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(183, 110, 121, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #d4a373;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 0, 0, 0.8);
  border: 2px solid rgba(183, 110, 121, 0.3);
  border-radius: 6px;
  color: #f5e6e0;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #b76e79;
}

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

.form-submit {
  width: 100%;
}

.contact-mailto {
  text-align: center;
  margin-top: 40px;
}

.contact-mailto p {
  font-size: 16px;
  color: #f5e6e0;
}

.contact-mailto a {
  color: #d4a373;
  text-decoration: underline;
}

.contact-mailto a:hover {
  color: #b76e79;
}

/* =============================================
   EPK PAGE
   ============================================= */

.epk-hero {
  background: linear-gradient(135deg, rgba(139, 69, 82, 0.3), rgba(183, 110, 121, 0.2));
  border: 2px solid rgba(183, 110, 121, 0.4);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.epk-section {
  background: rgba(20, 10, 10, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(183, 110, 121, 0.3);
  margin-bottom: 40px;
}

.epk-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #d4a373;
}

.epk-section p {
  font-size: 17px;
}
