/* GLOBAL RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Josefin Sans', sans-serif; background:#EEF4F3; color:#203235; line-height:1.6; }
a { color:#3A7D7C; text-decoration:none; transition:0.3s; }
a:hover { color:#4AA6A4; }

/* header */
.header {
  background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('header.png') center/cover no-repeat;
  color:#fff;
  text-align:center;
  padding:6rem 2rem;
}

.header h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-shadow: 0 6px 20px rgba(0,0,0,0.9);
}


.header h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.99);
  text-shadow: 0 6px 20px rgba(0,0,0,0.9);
}


/* SECTIONS */
.section { background:#F7F9F8; padding:4rem 2rem; }
.section  h2 { font-family:'Bebas Neue', cursive; font-size:2.5rem; margin-bottom:2rem; text-align:center; position:relative; }
.section h2:after { content:''; display:block; width:60px; height:3px; background:#3A7D7C; margin:0.5rem auto 0; }

/* GRID & ALBUM CARDS */
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap:1.5rem; justify-items:center; }

.album-card {
  background:#D7E2E1;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  overflow:hidden;
  cursor:pointer;
  transition:transform 0.3s, box-shadow 0.3s;
  display:flex;
  flex-direction:column;
  position:relative;
  max-width:220px;
  padding:0;
  margin:0;
}
.album-card:hover { transform:translateY(-5px); box-shadow:0 6px 18px rgba(0,0,0,0.15); }

.album-card img { width:100%; display:block; }

.album-card h3 { margin: 0px 0px 20px 0px; padding:0; }

.album-card .card-content .album-info { font-size: 0.75rem; font-style: italic; margin:0.5rem 0 0 0 ;}

.album-card .card-content {
  padding:1rem;
  text-align:center;
  overflow:hidden;
  max-height:3rem;
  transition:max-height 0.5s ease;
}
.album-card.active .card-content { max-height:200px; }

.album-card .card-content p { display:none; font-size:0.95rem; color:#203235; }
.album-card.active .card-content p { display:block; }

.card-footer {
  display:flex;
  justify-content:center;
  gap:0.5rem;
  padding:0.6rem 0;
  background:#3A7D7C;
  opacity:0;
  transform: translateY(-10px);
  transition:opacity 0.5s, transform 0.5s;
}
.album-card.active .card-footer { opacity:1; transform:translateY(0); }
.card-footer a { color:#fff; transition:transform 0.3s, color 0.3s; }
.card-footer a:hover { transform:scale(1.3); color:#4AA6A4; }

/* VIDEO TABS */
.tabs {
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:1rem;
}

.tabs input[type="radio"] { display:none; }

/* Buttons container */
.tab-buttons {
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:1rem;
}
@media(min-width:769px){
  .tab-buttons { flex-direction:row; justify-content:center; gap:0.5rem; }
}

.tab-buttons label {
  padding:0.6rem 1.2rem;
  margin:0.5rem 0;
  background:#3A7D7C;
  color:white;
  cursor:pointer;
  border-radius:6px;
  transition:0.3s;
}
.tab-buttons label:hover { background:#4AA6A4; }

/* Selected tab label */
#tab-live:checked ~ .tab-buttons label[for="tab-live"],
#tab-studio:checked ~ .tab-buttons label[for="tab-studio"] {
  background:#4AA6A4;
}

/* VIDEO CONTAINER */
.videos {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}

/* Base iframe styles */
.videos iframe {
  display: none;              /* hidden by default */
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#tab-live:checked ~ .videos #live { display:block; }
#tab-studio:checked ~ .videos #studio { display:block; }

@media (min-width: 1024px) {
  #tab-live:checked ~ .videos #live,
  #tab-studio:checked ~ .videos #studio {
    width: 80vw;
    max-width: 1100px;
  }
}
.videos iframe {
  transition: opacity 0.4s ease;
}


/* ABOUT */
.text-blocks { max-width:800px; margin:0 auto; padding:2rem 2rem 0rem 2rem; }
.text-blocks p { margin-bottom:1.2rem; }

/* Full-bleed About image */
.about-photo-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-photo-full img {
  width: 100%;
  height: auto;        /* keeps aspect ratio */
  object-fit: cover;   /* fills width nicely */
  display: block;
}


/* RESPONSIVE */
@media(max-width:768px){
  .header h1 { font-size:3rem; }
  .header {   padding:4rem 1rem; }
  .header h2 { font-size:1.2rem; }
  .grid { grid-template-columns:1fr; gap:1.5rem; }
  .album-card { max-width:100%; }
  .album-card .card-content { max-height:180px; }
}
