/* BASE RESET */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  background:#000;
  color:#fff;
  font-family: Helvetica, Arial, sans-serif;
}

/* =========================
   GLOBAL UTILITIES
========================= */

.hidden {
  display: none !important;
}


/* NAV */
.nav {
  position: fixed;        /* keep it visible while scrolling */
  top: 0;                 /* stick to top */
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* LOGO - Simple SKAM Logo */
@import url('https://fonts.googleapis.com/css2?family=Abival&display=swap');

.logo-text {
  font-family: 'Abival', serif;
  font-size: 2rem;       /* adjust size as needed */
  font-weight: 700;
  color: #e10600;        /* same red as underline, merch-friendly */
  letter-spacing: 2px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.logo-text:hover {
  transform: scale(1.05);
}


/* NAV LINKS */
.nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #e10600;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.nav a:hover {
  color: #e10600;
}

.nav a.active::after {
  width: 100%;
  left: 0;
}

.nav a.active {
  color: #e10600;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #e10600;
  transition: transform 0.3s ease, width 0.3s ease;
  will-change: transform, width;
  pointer-events: none;
}



/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url("./imgs/SKAM_singing.png") center / cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  transform: translateY(20px);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary {
  background: #e10600;
  color: #fff;
}

.btn-primary:hover {
  background: #b80500;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
}

/* BUTTONS */
.btn-primary {
  background: #e10600;
  padding: 15px 35px;
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: #b80500;
}

.btn-secondary {
  background: #111;
  border: 1px solid #e10600;
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #e10600;
  color: #000;
}

/* SECTIONS */
.section {
  padding:100px 20px;
  max-width:1200px;
  margin:auto;
}

.section-dark { 
  background:#111; 
}

.section-title {
  text-align:center;
  margin-bottom:50px;
}

/* ABOUT SECTION */
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.about-wrapper img {
  width: 400px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.5s ease;
  border-radius: 0;
  overflow: visible;
}

.about-wrapper img:hover {
  transform: scale(1.05) rotate(-1deg);
} 

.about-text {
  flex: 1;
  color: #fff;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #e10600;
  text-transform: uppercase;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Responsive: stack image on top for small screens */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-wrapper img {
    width: 250px;
    height: 250px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }
}

/* TOUR */
.tour-list {
  list-style:none;
  text-align:center;
}

.tour-list li {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

/* RELEASES SECTION */
.release-wrapper {
  display: flex;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  align-items: flex-start;
}

.album-cover {
  flex: 1;
  text-align: center;
}

.album-cover img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.album-cover h4 {
  font-size: 1.4rem;
  margin-top: 0;
}

.album-player {
  background: #2b2500;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}


/* Player Header */
.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.visualizer {
  height: 6px;
  width: 100%;
  margin: 15px 0;
  background: linear-gradient(
    90deg,
    #e10600 0%,
    #ffd700 50%,
    #e10600 100%
  );
  opacity: 0.4;
}

.visualizer.playing {
  animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}


/* Track Title Scrolling */
.track-display {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.track-display {
  overflow: hidden;
  white-space: nowrap;
}

.track-display span.playing {
  display: inline-block;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}


/* Player Icons */
.player-icons i {
  margin-left: 15px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: color 0.2s, transform 0.2s ease;
}

.player-icons i:hover {
  color: #e10600;
  transform: scale(1.2);
  text-shadow: 0 0 10px #e10600;
}

/* PLAYER ICONS */
.player-icons i {
  margin-left: 15px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.player-icons i:hover {
  color: #e10600;
}

/* LIKE BUTTON STATE */
#like-btn {
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

#like-btn.liked {
  color: #e10600;
}


/* Tracklist */
#tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
}

#tracklist li {
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 1px solid #333;
  transition: background 0.2s;
}

#tracklist li:hover {
  background: #222;
}

/* Player Controls */
.player-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.player-controls button {
  background: #222;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-controls button:hover {
  box-shadow: 0 0 15px #e10600;
  transform: scale(1.1);
}

/* PLAY BUTTON GLOW WHEN PLAYING */
#play.playing {
  box-shadow:
    0 0 12px rgba(225, 6, 0, 0.8),
    0 0 24px rgba(225, 6, 0, 0.6);
}

#volume {
  width: 120px;
  accent-color: #e10600;
  cursor: pointer;
}

.player-controls button.active {
  background: #e10600;
  box-shadow: 0 0 10px rgba(225,6,0,0.7);
}


/* Share Options */
#share-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#share-options a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

#share-options a:hover {
  color: #e10600;
  text-shadow: 0 0 8px #e10600;
}

/* HIDDEN CLASS */
.hidden {
  display: none;
}

/* Add spacing below subscribe section */
#subscribe {
  padding-bottom: 80px;
}

/* Optional: add a little extra space above footer */
.footer {
  padding-top: 60px;
}

/* SUBSCRIBE */
.subscribe-box {
  max-width:500px;
  margin:auto;
  text-align:center;
}

.subscribe-form {
  margin-top:20px;
  display:flex;
}

.subscribe-form input {
  flex:1;
  padding:12px;
  border:none;
}

.subscribe-form button {
  padding:12px 20px;
  background:#e10600;
  color:#fff;
  border:none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #fff;
}

.footer p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-socials a {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a svg {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-socials a::after {
  content: attr(data-name);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 10px);
  font-size: 0.9rem;
  font-weight: 700;
  color: #e10600;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover svg {
  opacity: 0;
  transform: translateY(-10%);
}

.footer-socials a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.footer-socials a:hover {
  transform: scale(1.2);
}

/* ANIMATIONS */
.fade-in {
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.fade-in.show {
  opacity:1;
  transform:translateY(0);
}

@keyframes heroFade {
  from { opacity:0; }
  to { opacity:1; }
}

@keyframes slideUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

/* MOBILE */
@media(max-width:768px) {
  .hero-title { font-size:2.6rem; }
  .tour-list li { flex-direction:column; gap:10px; }
}

/* ===== HARD SEPARATION FIX: SUBSCRIBE → FOOTER ===== */
#subscribe {
  margin-bottom: 120px;
}

.footer {
  margin-top: 0;
}




.release-info .release-title {
  text-align: center;        /* centers the title */
  font-size: 1.8rem;         /* makes it bigger, like a proper title */
  font-weight: 700;           /* bold */
  margin-bottom: 2rem;       /* space between title and album cover */
  line-height: 1.3;           /* tighter spacing for a title */
}



.release-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap; /* allows responsive stacking on small screens */
}

.release-art {
  flex: 0 0 30%; /* 30% width for album art */
  min-width: 200px; /* prevents image from shrinking too small */
}

.release-art img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.release-description {
  flex: 1; /* takes remaining space */
  min-width: 250px; /* ensures paragraph doesn’t collapse */
}

.release-description p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}


/* READ MORE MODAL STYLING */
.modal {
  display: none; /* hidden by default */
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.6); /* dark overlay */
}

.modal-content {
  background-color: #a09d00; /* dark pop-up background */
  color: #fff;
  margin: 10% auto; /* center vertically */
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  position: relative;
}

.modal-content h3 {
  margin-top: 0;
}

.close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ffcc00;
}

/* Read More Button */
.read-more-btn {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  background-color: #ffc200;
  color: #000;
  border-color: #ffc200;
}

/* ===== FINAL FIX: RELEASE SECTION LEFT/RIGHT ALIGNMENT ===== */

.releases-inner {
  display: flex;                
  justify-content: space-between; /* push left column left, right column right */
  align-items: flex-start;        /* top align both columns */
  gap: 60px;                      /* spacing between columns */
  flex-wrap: wrap;                /* allow stacking on small screens */
}

/* Left column: album + paragraph + button */
.release-info {
  flex: 0 0 400px;              
  display: flex;
  flex-direction: column;
  align-items: flex-start;        /* force content to left side of column */
}

/* Right column: player */
.release-player {
  flex: 0 0 400px;              
  display: flex;
  flex-direction: column;
  justify-content: flex-start;    /* top align */
  align-items: center;            /* center horizontally within column */
}

/* Optional: small screens stacking */
@media (max-width: 768px) {
  .releases-inner {
    flex-direction: column;
    align-items: center;
  }

  .release-info, .release-player {
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
  }
}

/* ===== release SECTION ===== */
.release-section {
  background: rgb(145,145,4);
  padding: 2rem 1.5rem;
}

/* Top and bottom rows */
.release-row {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Bottom row scrollable */
.release-row.bottom-row {
  max-height: 100px;        /* height for scrollable area */
  overflow-y: auto;          /* enable vertical scrolling */
  padding: 0.5rem 1rem;
  border-top: 0;             /* borderless as requested */
  border-bottom: 0;
}

/* Main two-column layout */
.release-inner {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;           /* allow stacking on small screens */
}

/* Each column takes 50% */
.release-col {
  flex: 1 1 45%;             /* 45% ensures gap leaves space */
  display: flex;
  justify-content: center;    /* center image horizontally */
  align-items: center;        /* center vertically */
}

/* Images */
.release-col img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .release-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .two-columns-col {
    flex: 1 1 100%;
  }
}

/* ===== TWO-COLUMNS SECTION TWEAKS ===== */

/* Reduce image size to ~80% */
.two-columns-col img {
  max-width: 80%;
  height: auto;
  display: block;
}

/* Bottom paragraph container */
.two-columns-row.bottom-row p {
  max-width: 80%;           /* constrain width */
  margin: 0 auto;           /* center horizontally */
  line-height: 1.6;
  padding: 0.5rem 0;
}

/* ===== TWO-COLUMNS SECTION SPACING ===== */

/* Space between top <h3> row and images */
.two-columns-row.top-row {
  margin-bottom: 2rem; /* adjust as needed */
}

/* Space between images and bottom paragraph row */
.two-columns-row.bottom-row {
  margin-top: 2rem; /* adjust as needed */
}

/* ===== TWO-COLUMNS PLAYER STYLES ===== */

/* Ensure player fits column */
.two-columns-col .player {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Record background wrapper */
.two-columns-col .player__bg {
  width: 100%;
  max-width: 250px;       /* fixed size */
  height: 250px;           /* fixed size */
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  transition: transform 0.3s linear;
}

/* Spin animation */
@keyframes spinRecord {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.two-columns-col .player__bg.spinning {
  animation: spinRecord 4s linear infinite;
}

/* Player content layout */
.two-columns-col .player__content {
  width: 100%;
  margin-top: 1rem;
}

/* Track list */
.release-col #tracklist {
  max-height: 120px;
  overflow-y: auto;
}

/* Controls */
.release-col .player__controls {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  width: 100%;
}

/* Meta */
.release-col .player__meta {
  text-align: center;
  margin-top: 0.5rem;
}

.release-col .player__song {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.release-col .player__artist {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Volume slider */
.release-col .volume-slider {
  width: 100%;
  margin-top: 0.5rem;
}


/* ===== PRESS RELEASE BOTTOM ROW FIX ===== */
.release-row.bottom-row {
  max-height: none;          /* remove scroll */
  overflow: visible;         /* allow full content */
  padding: 2rem 3rem;        /* more breathing room */
  background: linear-gradient(
    180deg, 
    rgba(0,0,0,0.8) 0%, 
    rgba(0,0,0,0.95) 100%
  );                          /* subtle fade background */
  border-radius: 12px;       /* smooth edges */
  margin: 2rem auto;         /* spacing from other content */
  max-width: 900px;          /* constrain width for readability */
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  color: #fff;               /* ensure text stands out */
}

.release-row.bottom-row p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}

.release-row.bottom-row .press-label {
  color: #e10600;
}

.release-row.bottom-row .press-highlight {
  background: rgba(225,6,0,0.05);
  border-left: 4px solid #e10600;
}

.release-row.bottom-row .press-about,
.release-row.bottom-row .press-contact {
  color: #ccc;
}


/* ================================
   PRESS RELEASE READ MORE
================================= */


/* Hide the hidden content by default */
.press-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

/* Button styling */
.read-more-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: #e10600;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #b80500;
}

/* When active, reveal the hidden content */
.press-release.expanded .press-hidden {
  max-height: 2000px; /* large enough to show all content */
  opacity: 1;
}

/* Optional smooth fade for newly revealed content */
.press-release .press-hidden p,
.press-release .press-hidden .press-highlight,
.press-release .press-hidden .press-about,
.press-release .press-hidden .press-contact {
  transition: opacity 0.6s ease;
  opacity: 0;
}

.press-release.expanded .press-hidden p,
.press-release.expanded .press-hidden .press-highlight,
.press-release.expanded .press-hidden .press-about,
.press-release.expanded .press-hidden .press-contact {
  opacity: 1;
}

.hero .logo-text {
  font-size: 8rem;      /* keep your new size */
  text-align: center;    /* optional */
  color: #f0f0f0;       /* change to any color you want */
  transition: none;     /* remove hover transition */
}

.hero .logo-text:hover {
  transform: none;      /* cancel scaling effect on hover */
}
