/* === Modern Fantastical Theme (full CSS) ===
   - Banner: 40vh
   - Parallax-ready (works with the small JS snippet)
   - Subtle glows
   - No rounded corners on portrait or boxes
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

:root{
    --bg-1: #0b0f12;      /* very dark */
    --bg-2: #081a1f;      /* dark teal */
    --accent-1: #57d8d1;  /* aqua-teal */
    --accent-2: #b7f5de;  /* pale mint */
    --muted: rgba(255,255,255,0.04);
    --glow: rgba(0,255,204,0.06); /* subtle glow */
    --shadow: rgba(0,0,0,0.7);
}



/* Titles and headings */
h1, h3, .site-title {
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  font-style: normal;
}

/* Body text */
h2, body, p, li {
  font-family: "EB Garamond", serif;
  font-weight: 400;
}



* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
    color: #e4f1ef;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    overflow-x: hidden;
}

/* ======= HERO / BANNER ======= */
.hero {
    position: relative;
    text-align: center;
    overflow: hidden;
    height: 40vh; /* shorter banner */
    min-height: 240px;
    max-height: 420px;
}

/* Keep the <img class="banner"> in HTML — we'll position it absolutely so the JS can parallax it */
.banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    filter: saturate(0.95) brightness(0.95);
    will-change: transform;
    z-index: 0;
    pointer-events: none;
}

/* A subtle overlay to keep text readable */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,9,12,0.45) 0%, rgba(4,9,12,0.25) 60%, rgba(4,9,12,0.35) 100%);
    z-index: 1;
}

/* Hero text sits above the banner */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-2);
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 12px var(--shadow);
    padding: 0 16px;
}

.hero-text h1 {
    margin: 0;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    letter-spacing: 1px;
    line-height: 1;
    font-weight: 700;
    color: var(--accent-2);
}

.hero-text h2 {
    margin: 8px 0 0;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 300;
    color: #abdbd5;
}



/* ===== NAV ===== */
nav {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    backdrop-filter: blur(6px);
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color .25s ease, transform .15s ease;
}

/* Hover: subtle lift and color change */
nav a:hover {
    color: var(--accent-1);
    transform: translateY(-2px);
}

/* Active: color change only (no movement) */
nav a.active {
    color: var(--accent-1);
    transform: none;
}

/* ===== MAIN LAYOUT ===== */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 20px 80px;
}

/* ===== BIO SECTION ===== */
.bio-section {
    text-align: center;
    margin: 10px auto 48px;
    padding: 0 10px;
    max-width: 920px;
    color: #dce9e7;
}

.section-title {
    font-size: 1.35rem;
    color: var(--accent-2);
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* thin decorative underline */
.section-title::after {
    content: "";
    display: block;
    height: 2px;
    width: 56px;
    background: linear-gradient(90deg, var(--accent-1), rgba(87,216,209,0.4));
    margin: 8px auto 0;
}

/* content area (portrait + text) */
.bio-content {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* portrait: NO rounded corners per request */
.bio-image img,
.portrait {
    width: 270px;
    height: auto;
    border-radius: 0; /* no rounding */
    box-shadow: 0 3px 5px rgba(0,0,0,0.6);
    filter: saturate(0.98) brightness(1.0);
    transition: transform .35s ease;
    display: block;
}

.bio-image img:hover,
.portrait:hover { transform: none; }

/* text box: NO rounded corners */
.bio-text {
    max-width: 520px;
    line-height: 1.6;
    color: #dbeeea;
    background: var(--muted);
    padding: 22px;
    border-radius: 0; /* no rounding */
    box-shadow: 0 3px 5px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.02);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    text-align: center;
    margin: 44px auto;
    max-width: 820px;
    padding: 0 8px;
}

.music-section h3 {
    color: var(--accent-2);
    margin-bottom: 18px;
    font-weight: 500;
}

/* === SOUNDCLOUD - reset to default behavior === */
.soundcloud-container {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.4);
  padding: 12px;
  border: none;
  border-radius: 0;
}

.soundcloud-container iframe {
  display: block;
  width: 100%;
  height: 450px; /* exactly as SoundCloud expects */
  border: none;
}


/* === FESTIVAL LOGOS SECTION === */
.festival-logos {
    text-align: center;
    margin: 44px auto;
    max-width: 820px;
    padding: 0 8px;
}

.festival-logos h3 {
    color: var(--accent-2);
    margin-bottom: 18px;
    font-weight: 500;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.4);
  border: none;
}

.logo-grid img {
  height: 100px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
  filter: grayscale(20%) drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

.logo-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%) drop-shadow(0 0 6px rgba(100,255,230,0.3));
}



/* ===== FOOTER ===== */
footer {
    text-align: center;
    font-size: 0.85rem;
    color: #a3cfc9;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: 36px;
}

/* === CREDITS PAGE LAYOUT === */
.credits-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  flex-wrap: wrap; /* ensures stacking on small screens */
}

/* === CREDITS TEXT === */
.credits-text {
  flex: 1 1 55%;
  color: #cce7e3;
  line-height: 1.6;
}

.credits-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #a7e3dc;
  margin-bottom: 20px;
}

/* === GALLERY ON THE RIGHT === */
.works-gallery {
  flex: 1 1 35%;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.45);
  padding: 16px;
  border-radius: 0;
  text-align: center;
}

/* Grid inside the gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 850px) {
  .credits-content {
    flex-direction: column;
  }
  .works-gallery {
    width: 100%;
    margin-top: 30px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
    .hero { height: 36vh; min-height: 200px; }
    .hero-text h1 { font-size: 1.4rem; }
    .hero-text h2 { font-size: 0.95rem; }
    main { padding: 20px 14px 60px; }
    .bio-content { flex-direction: column; gap: 18px; }
    .bio-image img { width: 180px; }
    .soundcloud-container iframe { height: 360px; }
}


