/* =========================
   Sunshine Pumpers — Base CSS
   Simple + readable on purpose
   ========================= */

/* 1) Basic reset (keeps layouts predictable) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #eaeaea;

  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* continuous feel */
}
/* Make images/videos behave nicely */
img, video {
  max-width: 100%;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* A reusable “content width” idea */
:root {
  --max-width: 1100px;
  --pad: 1rem;
  --section-space: clamp(3rem, 8vw, 6rem);
  --panel: #121a22;
  --panel-2: #0f151c;
  --border: rgba(255,255,255,0.12);
  --soft: rgba(255,255,255,0.06);

  --accent: #59d6ff;  /* simple highlight color */
}
#home,
#songs,
#discography {
  padding-block: var(--section-space);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-links img {
  width: clamp(2.25rem, 3vw, 2.8rem);
  height: clamp(2.25rem, 3vw, 2.8rem);
  object-fit: contain;
  transition: transform 0.15s ease;
}

.social-links a:hover img {
  transform: scale(1.08);
}

section {
  padding-block: clamp(2rem, 5vw, 4rem);
}

section + section {
  margin-top: clamp(2rem, 6vw, 5rem);
}
/* =========================
   Headings (site-wide)
   ========================= */

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: goldenrod;
}

/* Give headings consistent breathing room */
h1 { margin-bottom: 0.75rem; }
h2 { margin-bottom: 1rem; }
h3 { margin-bottom: 0.5rem; }


/* Section headings */
.video-heading,
.disco-heading {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;

  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  /* subtle separation */
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Album titles */
.album-info h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}




/* =========================
   Header + Navigation
   ========================= */

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.6);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem var(--pad);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  flex-wrap: wrap; 
}


.logo img {
  width: clamp(2.25rem, 3vw, 3.5rem);
  height: clamp(2.25rem, 3vw, 3.5rem);
}

@media (min-width: 1200px) {
  .logo img {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

.site-nav a:hover {
  color: var(--accent);
}


/* =========================
   3) Section spacing + headings
   ========================= */


/* =========================
   4) Home section
   ========================= */
/* =========================
   Home Section — Right Aligned
   ========================= */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* push block to right */
  padding-inline: clamp(1rem, 5vw, 4rem);
}

#home > div {
  display: flex;
  flex-direction: column;
  align-items: center; /* align items right */
  text-align: center;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 700px;
}
#home h1:first-of-type {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-image {
  width: clamp(10rem, 35vw, 18rem);
  height: auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

#home h1:last-of-type {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}

/* =========================
   5) Songs / Video tile grid
   ========================= */


.music-page {
  max-width: var(--max-width);
  margin: 0 auto;
}

.music-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  background: linear-gradient(180deg, #0f151c, #0b0f14);
  border: 1px solid var(--border);
  padding: 1.25rem;
}


.music-layout {
  position: relative; /* keeps content above overlay */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}



/* Title */
.song-title {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  color: #f1f1f1;
}
.song {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.song video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}
/* Responsive grid */
@media (max-width: 1100px) {
  .music-layout { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .music-layout { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .music-layout { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .music-layout { grid-template-columns: 1fr; }
}


/* =========================
   6) Discography
   ========================= */


.albums-grid {
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Album card */
.album {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 260px;
}

/* Cover */
.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover; /* not contain, looks more like album art */
  background: #000;
}
/* Info */
.album-info {
  padding: 1rem;
}

.album-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.album-info p {
  margin: 0.25rem 0;
  color: rgba(234,234,234,0.85);
}

/* Tracklist */
.tracklist {
  margin: 0.75rem 0 0 1.2rem;
  padding: 0;
}

.tracklist li {
  margin: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Play button */
.play-btn {
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: #fff;
  border-radius: 10px;
  width: 36px;
  height: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-btn:hover {
  border-color: rgba(89,214,255,0.55);
  background: rgba(92, 255, 89, 0);
}

/* Discography responsive */
@media (max-width: 950px) {
  .albums-grid {
    grid-template-columns: 1fr;
  }

  .album {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 650px) {
  .album {
    grid-template-columns: 1fr;
  }

  .album-cover {
    height: 220px;
  }
}


/* =========================
   7) Footer
   ========================= */

.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 2rem var(--pad);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.25; /* adjust this */
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.band-image {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: 260px;
  object-fit: cover;
  object-position: center;

  margin: 1rem auto;
}

@media (max-width: 768px) {
  .band-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .band-image {
    height: 120px;
  }
}
/* Only style the social icons */
.social-links img {
  width: 54px;
  height: 54px;
  object-fit: cover;
 
  margin-top: 0.75rem;
}