/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1c1c1c;
  color: #f9f9f9;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #fa3019;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff6a56;
}

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

/* ===== HEADER / NAV ===== */
header {
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #333;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 50px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f9f9f9;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-title:hover {
  color: #fa3019;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #f9f9f9;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: #fa3019;
  border-bottom-color: #fa3019;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: calc(100vh - 71px);
  overflow: hidden;
  position: relative;
  background-image: url('../images/band/under_bridge_bw.jpg');
  background-size: cover;
  background-position: center 33%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-banner {
  height: 340px;
  background-image: url('../images/band/saul_nathan_vertical.jpg');
  background-position: center;
}

.hero-banner h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-epk {
  height: 250px;
  background-image: url('../images/band/under_bridge.png');
  background-position: center 33%;
  gap: 0.75rem;
}

.hero-epk h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.epk-subtitle {
  color: #ddd;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.epk-about {
  background-image: url('../images/misc/sanasoso.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
}

.epk-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.epk-description {
  flex: 1;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.epk-player {
  flex: 1;
  min-width: 300px;
}

.epk-social-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.epk-social-img {
  width: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.epk-social-content {
  flex: 1;
}

@media (max-width: 768px) {
  .epk-about-inner {
    flex-direction: column;
  }
  .epk-social-row {
    flex-direction: column;
  }
  .epk-social-img {
    width: 100%;
  }
}

.hero-logo {
  max-width: 300px;
  width: 80%;
  height: auto;
}

.hero-links {
  display: flex;
  gap: 1.5rem;
}

.hero-links a {
  color: #f9f9f9;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-links a:hover {
  color: #fa3019;
  transform: translateY(-2px);
}

.hero-links a svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
}

.hero-links a svg.icon-apple {
  width: 38px;
  height: 38px;
  position: relative;
  top: -3px;
  left: -6px;
}

.scroll-chevron {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.scroll-chevron:hover {
  opacity: 0.6;
}

.scroll-chevron svg {
  width: 52px;
  height: 52px;
  fill: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-dark {
  background-color: #161616;
}

.section-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  text-align: left;
}

.section-light {
  max-width: 100%;
  background-color: #f0f0f0;
  padding: 2.5rem 2rem;
}

.section-light p:last-child {
  margin-bottom: 0;
}

.section-light > :not(.newsletter) p {
  color: #333;
}

.section-light > :not(.newsletter) a {
  color: #fa3019;
}

.section-full {
  max-width: 100%;
  padding: 4rem 2rem;
}

.section-full .section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #fa3019;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: #fa3019;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}

/* ===== STREAMING LINKS ===== */
.streaming-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.streaming-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2a2a2a;
  color: #f9f9f9;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.streaming-links a:hover {
  background-color: #fa3019;
  color: #fff;
  transform: translateY(-2px);
}

.streaming-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f9f9f9;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #fa3019;
}

.social-links a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 937px;
  margin: 2rem auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/misc/sanasoso.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1.25rem;
  border: 2px solid #333;
  border-radius: 50px;
  background-color: #2a2a2a;
  color: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  width: 300px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #fa3019;
}

.newsletter-form button {
  padding: 0.75rem 2rem;
  background-color: #fa3019;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #d42a15;
  transform: translateY(-2px);
}

.newsletter-form-dark {
  margin-top: 1.5rem;
}

.newsletter-form-dark input[type="email"] {
  background-color: #fff;
  color: #333;
  border-color: #ccc;
}

.newsletter-form-dark input[type="email"]::placeholder {
  color: #999;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #fa3019;
  border: 2px solid #fa3019;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #fa3019;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.contact-info a {
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
  background-color: #111;
  border-top: 1px solid #333;
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #888;
}

footer a {
  color: #fa3019;
}

/* ===== BAND MEMBER CARDS ===== */
.member-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.member-section-light .member-card {
  flex-direction: row-reverse;
}

.member-card .member-photo {
  flex: 0 0 350px;
  border-radius: 8px;
  overflow: hidden;
}

.member-card .member-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.member-card .member-info {
  flex: 1;
}

.member-card .member-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fa3019;
  margin-bottom: 0.75rem;
}

.member-section {
  padding: 3rem 2rem;
}

.member-section .member-card {
  margin-bottom: 0;
}

.member-section-light {
  background-color: #f0f0f0;
}

.member-section-light .member-name {
  color: #fa3019;
}

.member-section-light p {
  color: #333;
}

.member-card .member-role {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 1rem;
}

/* ===== EPK ===== */
.epk-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.stat-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 150px;
}

.stat-card .stat-platform {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fa3019;
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.epk-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.epk-gallery img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.epk-gallery img:hover {
  transform: scale(1.02);
}

/* ===== TEXT CENTER UTILITY ===== */
.text-center {
  text-align: center;
}

/* ===== DIVIDER ===== */
.divider {
  width: 80px;
  height: 3px;
  background-color: #fa3019;
  margin: 2rem auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid #333;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 1rem;
    border-bottom: 1px solid #222;
    width: 100%;
    text-align: center;
  }

  nav a:last-child {
    border-bottom: none;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .member-card,
  .member-section-light .member-card {
    flex-direction: column;
    text-align: center;
  }

  .member-card .member-photo {
    flex: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }

  .streaming-links a {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .epk-stats {
    gap: 1rem;
  }

  .stat-card {
    min-width: 130px;
    padding: 1rem 1.5rem;
  }
}
