@import url("https://use.typekit.net/uyp0xds.css");

/* COLOR KEY */
:root {
    /* Base UI */
    --bg: rgb(22, 34, 35);
    --header: rgb(236, 222, 214);
    --text: rgb(185, 176, 170);
    --muted: #666666;

    /* Accent (default KATSEYE pink) */
    --pink: #F461AD;
    --pink-text: #d24a90;
    --darkpink: rgb(165, 45, 105);
    --blue: rgb(76, 101, 223);

    --pinkgradient: linear-gradient(rgb(255, 105, 180, 0.2), var(--darkpink), var(--pink), transparent) 1;

    /* Effects */
    --shadow: rgba(0, 0, 0, 0.2);
    --text-shadow:
        0 0 5px rgb(255, 105, 180, 0.8),
        0 0 15px rgb(255, 105, 180, 0.6),
        0 0 25px rgba(255, 20, 147, 0.3); 
}

/* BASIC */
html {
    scroll-behavior: smooth;
}


h1, h2, h3, h4 {
   font-family: ogg, sans-serif;
   letter-spacing: 0.5px;
   color: var(--header);
   text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
}


em {
    font-family: 'benton-modern-display', 'sans-serif';
    letter-spacing: 0.5px;
    margin-left: 3px;
    color: var(--text);
}

body {
    margin: 0 clamp(1rem, 6vw, 6rem);
    background-color: var(--bg);
    color: var(--text);
    /* background: radial-gradient(
        circle at 30% 20%,
        rgba(255, 105, 180, 0.35),
        transparent 60%
        ),
        radial-gradient(
        circle at 80% 70%,
        rgba(120, 100, 255, 0.2),
        transparent 60%
        ); */
    background:
        radial-gradient(circle at 30% 20%,
        rgba(255, 105, 180, 0.12),
        transparent 50%
        ),
        radial-gradient(circle at 70% 80%,
        rgba(80, 120, 255, 0.10),
        transparent 55%
        ),
        radial-gradient(circle at 50% 50%,
        rgba(255, 255, 255, 0.03),
        transparent 70%
        ),
        rgb(22, 34, 35);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.1;
}

p {
    font-family: neue-haas-grotesk-text, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--text);
}

/* NAVIGATION */

header {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 2px var(--darkpink) solid; */
    padding: 2vh 0;
    text-shadow: 0 0 5px rgba(255, 105, 208, 0.5);
    

    /* text-shadow:
        0 0 5px rgb(255, 105, 180, 0.8),
        0 0 15px rgb(255, 105, 180, 0.6),
        0 0 25px rgba(255, 20, 147, 0.3); */
}

.directory {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 24px 0;
}

.directory a{
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--header);   
}

.directory a.active {
    color: rgb(103, 97, 224);
    text-shadow: 0 0 8px rgba(85, 108, 223, 0.6);
}

.directory h4 {
    margin: 3px 0;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    font-family: neue-haas-grotesk-text, sans-serif;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.6);
}

.directory a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.directory a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: rgb(76, 101, 223);
    transition: width 0.3s ease;
}

.directory a:hover {
    color: var(--pink);
}

.directory a.active:hover {
    color: rgb(76, 101, 223);
}

.directory a:hover #arrow {
    background-color: var(--pink);
    transition: width 0.5s ease;
}

.directory a:hover::after {
    width: 100%;
}

#arrow {
    width: 12px;
    background-color: var(--header);
}

#title-logo {
    font-size: clamp(3.5rem, 16vw, 8rem);
    margin: 0;
    font-family: 'benton-modern-display', 'sans-serif';
    font-weight: bold;
    font-style: italic;
    letter-spacing: -2px;
    /* text-shadow: 0 0 10px rgba(255, 105, 180, 0.5); */
    /* text-shadow:
        0 0 5px rgb(255, 105, 180, 0.8),
        0 0 15px rgb(255, 105, 180, 0.6),
        0 0 30px rgba(255, 20, 147, 0.3); */
}

/* Modern CSS (Progressive Enhancement) */
.text-gradient {
  /* Default: sRGB interpolation */
  --_space: ;

  background-image: linear-gradient(
    180deg var(--_space),
    #f005bd 12%,
    #7e1b69 27%,
    #ae178d 35%,
    #ec0abb 37%,
    #ae178d 40%,
    #110b10 80%,
    #4e0d40 90%
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern: OKLCH interpolation */
@supports (background-image: linear-gradient(in oklch, #000, #fff)) {
  .text-gradient {
    --_space: in oklch;
  }
}

#title-logo a{
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    /* display: inline-block; 
    transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease; */
}

#title-logo a:hover {
    color: var(--pink);
    text-shadow:
        0 0 5px rgb(255, 105, 180, 0.8),
        0 0 15px rgba(240, 105, 255, 0.6),
        0 0 25px rgba(90, 17, 234, 0.3);
    
    transform: translateY(-1px) scale(1.01);
    transition: text-shadow 0.3s ease;

}

/* #title-logo a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
} */

hr {
    border: none;
    height: 2.5px;
    background: linear-gradient(90deg,transparent, rgb(255, 105, 180, 0.2), var(--darkpink), var(--pink), rgb(255, 105, 180, 0.2), transparent);
    background-size: 200% 100%;
    
    animation: lineMove 5s ease infinite;
    margin-bottom: 0;
}

@keyframes lineMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* MOBILE NAVIGATION */

#burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;

    /* max-width: 65px;
    min-width: 50px; */
    width: clamp(50px, 20%, 150px);
    margin: auto 0.5rem auto -10px;
    transition: transform 0.3s ease; /* 👈 smooth animation */
}

#burger-btn:hover img{
    transform: scale(1.1); /* 👈 grows on hover */
    filter: drop-shadow(0 0 15px rgb(76, 101, 223));
}

#burger-btn img {
    width: 100%;
    color: white;
    transition: transform 0.3s ease;
}

#burger-btn:active img {
    transform: scale(0.95);
}

@media (max-width: 750px){
    #burger-btn {
        display: block;
        /* position: fixed;
        top: 20px;
         */
        z-index: 1000;
        left: 20px;
    }

    .directory {
        position: fixed;
        top: 0;
        z-index: 1000;
        right: 0;

        width: clamp(100px, 40vw, 220px);
        height: 100vh;

        background: rgb(22, 34, 35, 0.85);
        border-left: 1px var(--pink) solid;
        padding: 3vh 1rem;

        transform: translateX(100%);
        transition: transform 0.3s ease;

        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .directory h4 {
        font-size: clamp(14px, 4vw, 18px);
        margin: 0.5rem 0;
    }

    .directory.open {
        transform: translateX(0);
    } 
}


/* MEMBERS SECTION */

/* @media(width<800px){
    #members-sect {
        flex-wrap: wrap;
        justify-content: stretch;
    } 
} */

.members-sect {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 1 row of 6 */
    gap: 18px;
    max-width: 1400px;
    /* margin: 0 auto; */
    margin: 10vh 0;
}

.member-profile {
    background-color: aquamarine;
    height: 55vh;
    /* width: 16%;
    min-width: 100px; */
    /* aspect-ratio: 3 / 4;  */
    min-height: 250px;
    display: flex;
    justify-content: end;

    background-size: cover;        /* fills screen */
    background-position: center;   /* keeps it centered */
    background-repeat: no-repeat; 
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));

    position: relative;
    overflow: hidden;
    text-decoration: none; /* remove link underline */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.member-profile:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.member-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at bottom,
        rgba(255, 105, 180, 0.5),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-profile:hover::before {
    opacity: 1;
}

@media (max-width: 900px) {
  .b {
    margin-top: 0;
  }
  .c {
    margin-top: 3rem;
  }
}

@media (max-width: 900px) {
  .members-sect {
    grid-template-columns: repeat(3, 1fr);
    margin: 7vh 0;
  }
  .member-profile {
    height: 40vh;
  }
}

/* optional: smaller screens */
@media (max-width: 600px) {
  .members-sect {
    grid-template-columns: repeat(2, 1fr);
    margin: 5vh 0;
  }
}

@media (max-width: 400px) {
  .members-sect {
    grid-template-columns: 1fr;
  }
}

/* .b {
    margin-top: 3rem;
} */

#lara-profile {
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5)),
        url(imgs/lara.jpg);
}

#sophia-profile {
    background-image: 
        linear-gradient(rgba(0,0,0,00), rgba(0,0,0,0.5)),
        url(imgs/sophia.png);
}

#megan-profile{
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5)),
        url(imgs/megan.png);
}

#yoonchae-profile{
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5)),
        url(imgs/yoonchae.jpg);;
}

#daniela-profile{
    background-image:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5)), 
        url(imgs/daniela.jpg);
}

#manon-profile{
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5)),
        url(imgs/manon.webp);
}

.member-name {
    writing-mode: sideways-lr;
    margin-right: 0;
    margin-bottom: 2rem;
    
    font-size: 2.5rem;
    color: white;
    line-height: 26px;

    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.3s ease;

    font-family: ogg, "serif";
    font-weight: bold;
}

.member-profile:hover .member-name {
    font-family: "lindsey-signature", sans-serif;
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    
}







/* ABOUT SECTION */

#about-sect {
    padding-top: 5vh;
    display: flex;
    /* padding-right: 5rem; */
}

#about-sect h2 {
    writing-mode: sideways-lr;
    margin-left: 20%;
    font-size: 3.5em;
    margin-right: 2rem;
    text-align: right;
}

#about-sect em {
    color: var(--pink-text);
}

#history-sect em {
    color: var(--pink-text);
    font-size: 20px;
    padding-top: 3px;
}

#who-is-katseye {
    margin-top: 0.5px;
}

#history-sect {
    margin-top: 2rem;
    margin-left: 18%;
    display: flex;
}

#history-sect h2 {
    font-size: 3em;
    font-weight: 400;
    margin-right: 2rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

#history-sect-text{
}

#katseye-pink {
    color: var(--pink);
    --_space: ;

  background-image: linear-gradient(
    180deg var(--_space),
    #F461AD 30%,
    #7e1b69 75%
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern: OKLCH interpolation */
@supports (background-image: linear-gradient(in oklch, #000, #fff)) {
  #katseye-pink {
    --_space: in oklch;
  }
}



/* MUSIC SECT */

/* #music-sect {
    margin-right: 20%;
} */

#music-sect h2 {
    font-size: 3.5em;
    margin-bottom: 0;
    
}

#music-sect h3 {
    /* text-align: right; */
    margin-left: 0.5rem;
    color: var(--pink-text)
}

/* #songs-sect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
} */



.songs-sect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    
    /* margin-top: 1rem; */
    /* padding: clamp(0.25rem, 100%, 2rem); */
    /* border-radius: 36px; */
    margin-bottom: 3rem;

    /* padding: 2rem;
    margin: auto;
    background-color: rgb(210, 74, 144,0.75); */
}

@media (max-width: 1100px){
    .songs-sect {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px){
    .songs-sect {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px){
    .songs-sect {
        grid-template-columns: 1fr;
    }
}

/* .song-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
} */

.song-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.song-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.song-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.overlay p {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;

    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s ease;
}

/* reveal text when hovered */
.song-card:hover .overlay {
    opacity: 1;
}

.song-card:hover .overlay p {
    transform: translateY(0);
    opacity: 1;
}


/* MEMBER PROFILES SECT */

/* 🔗 nav */

.member-nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(24px);
  
}

.member-nav-inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 18px 20px;
}

.member-nav a {
    text-decoration: none;
    color: var(--header);
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

/* .member-nav p {
    margin: 0;
} */

.member-nav a:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.6);
}

/* underline system (same as your directory) */
.member-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.member-nav a:hover::after {
  width: 100%;
}

.member-nav a.active {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255,105,180,0.8);
}

.member-nav a.active::after {
    width: 100%;
}

@media (max-width: 750px) {

  .member-nav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 20px;
  }

  .member-nav-inner::-webkit-scrollbar {
    display: none;
  }
}

/* 👤 SECTION */
.member-detail {
  padding: 100px 10%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  /* transition: box-shadow 0.4s ease; */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.member-detail.visible {
  opacity: 1;
  transform: translateY(0);
}

/* .member-detail:hover {
  box-shadow: 0 0 60px rgba(255, 105, 180, 0.08);
} */

/* HERO */
.member-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

/* IMAGE CONTAINER */
.member-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* gradient overlay */
.member-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    transparent
  );
}

/* glow layer */
.member-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,105,180,0.4),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover glow */
.member-img:hover::before {
  opacity: 1;
}

.member-img img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.member-img:hover img {
  transform: scale(1.05);
}

/* TEXT */
.member-intro h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
}

.member-intro p {
  opacity: 0.6;
  letter-spacing: 1px;
}

/* GRID CONTENT */
.member-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* STATS */
.member-stats p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0;
}

.member-stats span {
  opacity: 0.5;
}

/* MUSIC */
.member-music h4,
.member-fun h4 {
  color: var(--pink);
  letter-spacing: 1px;
}

/* track pills */
.track-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.track-list span {
  padding: 6px 12px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.track-list span:hover {
  background: var(--pink);
  color: black;
}

/* FUN */
.member-fun ul {
  padding-left: 18px;
}


#lara .member-img:hover::before {
  background: radial-gradient(circle, rgba(255,105,180,0.5), transparent 60%);
}

#sophia .member-img:hover::before {
  background: radial-gradient(circle, rgba(120,100,255,0.5), transparent 60%);
}

#megan .member-img:hover::before {
  background: radial-gradient(circle, rgba(255,200,120,0.5), transparent 60%);
}

/* 📱 RESPONSIVE */
@media (max-width: 800px) {

  .member-detail {
    padding: 80px 20px;
  }

  .member-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-img img {
    width: 100%;
    height: auto;
  }

  .member-content {
    grid-template-columns: 1fr;
  }
}
