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

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #05060a;
  color: #f5f5f5;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(5, 6, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-image {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

/* UNDERLINE HOVER — OLIVE */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a3c756, #e9f29b);
  transition: width 0.2s ease-out;
}

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

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: #f5f5f5;
  font-size: 1.4rem;
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #20281b, #05060a 52%);
}
.hero img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}

/* NAME GRADIENT — OLIVE */
.hero-text h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #a3c756, #e9f29b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------- BUTTONS ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #f5f5f5;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s ease-out;
}

/* MAIN BUTTON — OLIVE */
.btn.primary {
  background: linear-gradient(135deg, #a3c756, #e9f29b);
  border-color: transparent;
  color: #05060a;
  box-shadow: 0 0 20px rgba(163, 199, 86, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(163, 199, 86, 0.55);
}

/* ---------------- ABOUT SECTION ---------------- */

.about-highlight {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid #a3c756;
  background: rgba(255, 255, 255, 0.02);
}

/* TAGLINE ACCENT — OLIVE */
.tagline {
  margin: 0 0 1rem;
  font-weight: 500;
  color: #dbe98f;
}

/* ---------------- ARTWORK PLACEHOLDER ---------------- */

.artwork-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top, #a3c756, #1c2215 55%, #05060a 100%);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  text-align: center;
}

/* ---------------- INSTAGRAM ---------------- */

.instagram-container {
  text-align: center;
}

.instagram-icon-link {
  display: inline-block;
}

.instagram-icon {
  display: block;
  margin: 20px auto 0 auto;
  width: 150px;
  max-width: 80%;
  filter: invert(1);
  opacity: 0.9;
  transition: 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* ---------------- YOUTUBE ---------------- */

.youtube-container {
  text-align: center;
  padding: 60px 0;
}

.youtube-button {
  display: block;
  margin: 20px auto 0 auto;
  width: 220px;
  max-width: 80%;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(163, 199, 86, 0.25);
}

.youtube-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(163, 199, 86, 0.45);
}

/* ---------------- FOOTER ---------------- */

.footer-links a:hover {
  border-bottom-color: rgba(163, 199, 86, 0.45);
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 800px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    justify-self: center;
    width: 70%;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(5, 6, 10, 0.98);
    flex-direction: column;
    padding: 0.5rem 1.5rem 1rem;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
/* --- Contact section layout fixes --- */

#contact img {
  display: block;
  margin: 0 auto 1.5rem;   /* centers the photo and adds space under it */
  border-radius: 1rem;     /* optional: soften corners, matches rest of site */
}
#contact .contact-form {
  max-width: 540px;
  margin: 0 auto;          /* center the form */
}

#contact .contact-form label {
  display: block;
  margin-top: 1rem;        /* space between fields */
}

#contact .contact-form label:first-of-type {
  margin-top: 0;
}

#contact .contact-form input,
#contact .contact-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;  /* inputs use full width and don’t squash */
}
#contact .container {
  max-width: 720px;
  margin: 0 auto;
}
.hero-image {
  justify-self: center !important;
  text-align: center;
}
#music-section p:first-of-type {
    display: none;
}
/* Center the hero image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-photo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
/* ---------------- LIVE DATES ---------------- */

#live {
  padding: 4rem 0;
  background: #090b12; /* matches your alt section vibe */
}

#live h2 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}

.live-intro {
  margin: 0 0 1.8rem;
  color: #cccccc;
  max-width: 640px;
}

/* Gig list layout */

.gig-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.gig-item {
  padding: 1.1rem 1.2rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.gig-main {
  max-width: 100%;
}

.gig-date {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dbe98f; /* olive accent */
  margin-bottom: 0.2rem;
}

.gig-venue {
  font-weight: 600;
  font-size: 1rem;
}

.gig-location {
  font-size: 0.9rem;
  opacity: 0.85;
}

.gig-notes {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

.gig-cta {
  align-self: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.gig-cta a {
  border-bottom: 1px solid rgba(163, 199, 86, 0.7);
}

.gig-cta a:hover {
  border-bottom-color: rgba(163, 199, 86, 1);
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .gig-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .live-intro {
    max-width: 100%;
  }
}
/* --- Discography & Lyrics Styling --- */

.release-block {
  margin-top: 2rem;
}

.release-title {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.release-meta {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.lyrics-heading {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #dbe98f; /* olive highlight */
}

.lyrics-text {
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.6;
  background: rgba(255,255,255,0.03);
  padding: 1.2rem;
  border-radius: 8px;
  border-left: 3px solid #a3c756;
  margin-top: 1rem;
}
/* =========================
   Splash screen / intro logo
   ========================= */

#splash-screen {
  position: fixed;
  inset: 0;                 /* top/right/bottom/left: 0 */
  background: #000;         /* black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#splash-screen img {
    width: 300px;   /* was 180px — now much bigger */
    max-width: 80vw; /* optional: allows bigger on mobile */
    height: auto;
}


/* Class added by JS when we want to hide it */
#splash-screen.splash-hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
/* ---- SOCIAL ICONS (Hero Section) ---- */
.social-icons {
  display: flex;
  gap: 22px;                /* MORE SPACE BETWEEN ICONS */
  margin-top: 28px;         /* MORE SPACE ABOVE (gap before photo) */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;              /* BIGGER ICON BUTTON */
  height: 50px;             /* BIGGER ICON BUTTON */
  background: #000;         /* black circle */
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a i {
  color: #fff;              /* white icon */
  font-size: 26px;          /* BIGGER ICON SYMBOL */
}

.social-icons a:hover {
  transform: scale(1.12);
  opacity: 0.8;
}
