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

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-family: "Special Elite", monospace;
  background-color: black;
  color: white;
}

header {
  background-color: black;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 2px solid white;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-img {
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
}

.lm-logo {
  padding-bottom: 0.5rem;
}
.lm-header {
  background-color: black;
  border-bottom: 2px solid white;
}

.lm-logo-img {
  height: 80px;
}

/* Hide hamburger by default */
.lm-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.lm-nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  padding: 1rem 0;
}

.lm-nav-links li a {
  color: white;
  text-decoration: none;
}

.lm-nav-links li a:hover {
  color: #ff3c3c;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

nav ul li {
  margin: 0 1.5rem;
  font-size: 1.2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  top: 3px;
}

nav ul li a:hover {
  color: #ff3c3c;
}

nav ul li a.selected {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid;
  padding-bottom: 0.6px;
}

/* Mobile: Switch to logo left, hamburger right */
@media (max-width: 820px) {
  header {
    padding-bottom: 0;
  }

  .lm-logo-img {
    height: 70px;
  }

  .lm-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  .lm-hamburger {
    display: block;
    position: relative;
    top: -8px;
  }

  /* Hide nav by default on mobile */
  .lm-nav {
    display: none;
    background-color: black;
    border-top: 2px solid white;
  }

  .lm-nav.open {
    display: block;
  }

  .lm-nav-links {
    flex-direction: column;
    gap: 0; /* remove gap so borders touch */
    padding: 0;
    text-align: center;
    border: none;
  }

  .lm-nav-links li {
    border-bottom: 1px solid white;
    padding: 1rem 0;
  }

  .lm-nav-links li:last-child {
    border-bottom: none;
  }

  nav ul li {
    margin: 0 0;
    display: flex;
    justify-content: center;
  }

  nav ul li a {
    position: relative;
    top: 2px;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
}

.hero__container {
  position: relative;
  width: 100%;
  height: clamp(300px, 40vw, 700px);
  min-height: 300px;
  overflow: hidden;
  border-bottom: 2px solid black;
}

.hero__fade-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
}

.photo {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  border: 2px solid black;
  font-size: 1.5rem;
  transition: border-color 0.3s, color 0.3s;
}

.photo:hover {
  border-color: #ff3c3c;
  color: #ff3c3c;
}

.about-section {
  max-width: 800px;
  margin: 2rem 1rem;
  background: white;
  padding: 2rem;
  border: 2px solid black;
  color: black;
  text-align: center;
}

.about-section h1 {
  font-family: "Special Elite", monospace;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-section p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.6;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 1rem;
}

.about-photo {
  max-width: clamp(350px, 50vw, 550px);
  height: auto;
  border: 2px solid black;
  margin: 0rem 1rem;
}

@media (min-width: 1400px) {
  .about-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .about-photo {
    max-width: clamp(450px, 30vw, 550px);
  }

  .about-section {
    max-width: 600px;
  }
}
.whoweare-section {
  max-width: 800px;
  margin: 0rem 1rem;
  margin-top: 2rem;
  background: white;
  padding: 2rem;
  border: 2px solid black;
  color: black;
  text-align: center;
}

.whoweare-section h1 {
  font-family: "Special Elite", monospace;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.whoweare-section p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.6;
}

/* || CONTACT */
.contact-section {
  margin-bottom: 2rem;
  background: white;
  color: black;
  padding: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
  border: 2px solid black;
  text-align: center;
}

.contact-section h1 {
  font-family: "Special Elite", monospace;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  text-align: left;
  font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid black;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  background-color: black;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: "Special Elite", monospace;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #ff3c3c;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin-top: 2rem;
  padding: 0 1rem;
}

.contact-info-box {
  background: white;
  color: black;
  border: 2px solid black;
  padding: 2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.6;
  margin-left: 2rem;
  margin-right: 2rem;
}

.contact-info-box h2 {
  font-family: "Special Elite", monospace;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  margin-bottom: 1rem;
}

.contact-info-box a {
  color: #ff3c3c;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

@media (min-width: 821px) {
  .contact-wrapper {
    flex-direction: row;
    align-items: center; /* Center both boxes vertically */
  }

  .contact-info-box,
  .contact-section {
    flex: 1;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}

/* || MUSIC */
.music-section {
  max-width: 800px;
  margin: 2rem 1rem;
  background: white;
  color: black;
  padding: 2rem;
  border: 2px solid black;
  text-align: center;
}

.music-section h1 {
  font-family: "Special Elite", monospace;
  font-size: clamp(2rem, 5vw, 2.5rem);
}

.album {
  display: flex;
  flex-direction: column; /* default for phones */
  padding: 1rem 1rem 0rem 1rem;
  margin: 0 1rem;
  gap: 1.5rem;
}

.album-info {
  flex: 1;
  text-align: center;
}

.album-availability a {
  font-size: 1.05rem;
  font-weight: bold;
  color: #ff3c3c;
  text-decoration: none;
}

.album-availability a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .album {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .album-info {
    max-width: 500px;
  }

  .album-songs {
    margin-left: 2rem;
  }

  .album-cover {
    max-width: 600px;
    margin-bottom: 1rem;
  }
}

.album-songs {
  flex: 2;
}

.album h2 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
}

.album-subtitle {
  font-size: 1.05rem;
  color: #555; /* subtle gray */
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.album-cover {
  max-width: 220px;
  margin-bottom: 1rem;
  border: 2px solid black;
}

.song-list {
  list-style-type: decimal;
  text-align: left;
}

.song-list li {
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
}
/* || MERCH */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.product-card {
  border: 1px solid black;
  padding: 1rem;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
  border-color: #ff3c3c;
}

.product-card h2 {
  font-size: 1.8rem;
}

.product-card hr {
  margin: 1rem 0;
}

/* || FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; /* adjust if needed */
  max-height: 200px; /* limit overall height */
  overflow: hidden; /* prevent overflow */
  background-color: black; /* or whatever you're using */
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-section {
  display: flex; /* ✅ Align items within each block */
  align-items: center;
  gap: 0.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a.contact-footer-button {
  color: black; /* Force default text color */
}

.footer a.contact-footer-button:hover {
  color: white;
}

.contact-footer-button {
  display: inline-block;
  padding: 1rem 1rem 0.7rem 1rem; /* ↓ slightly less vertical padding */
  background-color: white;
  color: black;
  font-weight: bold;
  font-family: "Special Elite", monospace;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
  line-height: 1; /* 👈 helps reduce extra button height */
}

.contact-footer-button:hover {
  background-color: #ff3c3c;
  color: white;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center; /* This ensures vertical centering */
  gap: 1.5rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.footer-socials a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ff3c3c;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem; /* keeps them close but not cramped */
    margin-bottom: 1rem;
  }

  .footer-section {
    justify-content: center;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff3c3c;
}

.song-list li {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Optional, for spacing text and button */
  padding: 4px 0;
}

.play-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i.fa-pause {
  position: absolute;
  font-size: 18px;
  color: #333;
  pointer-events: none;

  transform: translate(0px, 0.5px);
}

.play-btn i.fa-play {
  position: absolute;
  font-size: 18px;
  color: #333;
  pointer-events: none;

  transform: translate(1.1px, 1px);
}

.progress-ring {
  transform: rotate(-90deg);
}

.ring-bg,
.ring-fill {
  fill: none;
  stroke-width: 3;
  r: 14;
  cx: 16;
  cy: 16;
}

.ring-bg {
  stroke: #e0e0e0;
}

.ring-fill {
  stroke: #ff3c3c;
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  transition: stroke-dashoffset 0.1s linear;
}

.coming-soon-section {
  max-width: 800px;
  margin: 3rem 1rem;
  background: white;
  color: black;
  padding: 6rem 2rem;
  border: 2px dashed black;
  text-align: center;
  font-family: "Special Elite", monospace;
  display: flex; /* for internal vertical centering */
  flex-direction: column;
  justify-content: center;
}

.coming-soon-section h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: black;
}

.coming-soon-section p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 1rem;
}

.teaser-tag {
  font-weight: bold;
  color: #ff3c3c;
  font-size: 1.1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  top: 4px;
}
