/* === Base Styles === */
body {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

a {
  color: #ff4081;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.bg-light {
  background-color: #f9f9f9;
}

/* === Hero Banner & Slider === */
.hero-banner {
  position: relative;
  height: 500px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

.hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

.hero-slider {
  background-color: #111;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.hero-slide {
  scroll-snap-align: center;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  color: #fff;
}

.hero-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .hero-slide-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 3rem;
  }
}

.hero-album-image {
  flex-shrink: 0;
  width: 300px;
  max-width: 300px;
  position: relative;
}

.hero-album-cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.hero-album-image a:hover .hero-album-cover,
.hero-album-cover:hover {
  transform: scale(1.03);
}

.hero-slide-info {
  flex: 1;
  min-width: 0;
  max-width: 700px;
}

.hero-slide-info h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.hero-slide-info p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-slide-info .button {
  background-color: #1db954;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-slide-info .button:hover {
  background-color: #17a44a;
}

.slide-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.85);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* === CTA Section === */
.cta-banner {
  background: #222;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-banner a {
  background: #ff4081;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-banner a:hover {
  background: #e73370;
}

/* === Section Padding === */
.section-albums,
.section-shows,
.section-gallery,
.newsletter-signup {
  padding: 4rem 1rem;
}

/* === Gallery Grid === */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 200px;
  max-width: 220px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: white;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item figcaption {
  padding: 0.5rem;
  background: #f4f4f4;
  font-size: 0.9rem;
}

/* === Album Grid & Cards === */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.album-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #ddd;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .album-grid {
    justify-content: space-between;
  }
}

.album-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.album-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* optional, remove if not cropping */
}


.album-card:hover img {
  filter: brightness(70%);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ← important */
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.album-card:hover .album-overlay,
.album-card:focus-within .album-overlay {
  opacity: 1;
}

.album-overlay a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.overlay-top {
  font-size: 1.1rem;
  font-weight: bold;
}

.overlay-links a {
  display: inline-block;
  margin-right: 0.5rem;
  color: #ffcc00;
  text-decoration: underline;
}

.overlay-bottom {
  font-size: 0.9rem;
  line-height: 1.3;
}

/* === Pre-release Badge === */
.album-art-wrapper {
  position: relative;
}

.badge.prerelease {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f39c12;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: auto;
}

/* === Header + Menu Layout === */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background-color: #000;
  color: #fff;
  font-size: 0.85rem;
}

.newsletter-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.newsletter-link a:hover,
.social-icons a:hover {
  color: #f39c12;
}

.site-nav {
  background: #111;
  padding: 1rem 2rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.site-nav li {
  display: inline-block;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: #f39c12;
}

.logo-center img {
  height: 125px;
  vertical-align: middle;
}

/* === Footer === */
footer {
  background: #333;
  color: #FFF;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
  }

  .logo-center {
    margin: 1rem 0;
  }
}

/* === Scrolling Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header .logo-center img {
  height: 120px;
  transition: height 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.site-header.scrolled .logo-center img {
  height: 40px;
}

/* === Tour Section === */
.tour-dates {
  padding: 4rem 1rem;
  text-align: center;
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 800px;
}

.tour-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.tour-date {
  font-weight: bold;
  color: #1db954;
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

.tour-info {
  flex-grow: 1;
  text-align: left;
  font-size: 1rem;
}

.tour-info a {
  color: #1a73e8;
  text-decoration: none;
}

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

.tour-btn {
  background: #1db954;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.tour-btn:hover {
  background: #179f45;
}

/* === Social Icons (Final Aligned & Styled) === */
.social-icons {
  display: flex;
  gap: 0.4rem;
}

.icon-link {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: middle;
}

.icon-link i {
  font-size: 1.25rem;
  line-height: 1;
}

.icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.icon-link:hover img {
  filter: none;
}

.album-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.album-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

/* === Social Icons Hover Colors === */
.icon-link i {
  color: white;
  transition: color 0.2s ease;
}

.icon-link:hover i.fa-facebook-f { color: #1877F2; }     /* Facebook blue */
.icon-link:hover i.fa-twitter     { color: #1DA1F2; }     /* Twitter blue */
.icon-link:hover i.fa-instagram   { color: #E1306C; }     /* Instagram pink */
.icon-link:hover i.fa-youtube     { color: #FF0000; }     /* YouTube red */
.icon-link:hover .fa-bandcamp    { color: #629AA9; }     /* Bandcamp teal */

/* Default: make reverbnation icon white */
.icon-link.reverbnation img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

/* On hover: restore original pink star */
.icon-link.reverbnation:hover img {
  filter: none;
}

.icon-link {
  text-decoration: none;
  color: white;
  transition: color 0.2s ease;
}

.icon-link:hover {
  text-decoration: none;
}
