* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* bg and font */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
  min-height: 100vh;
  padding-top: 100px;
  background:
    radial-gradient(circle at 10% 20%, rgba(120, 255, 214, 0.7), transparent 60%),
    radial-gradient(circle at 60% 40%, rgba(0, 200, 255, 0.6), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(200, 150, 255, 0.6), transparent 60%),
    radial-gradient(circle at 30% 60%, rgba(0, 100, 255, 0.4), transparent 60%),
    linear-gradient(135deg, #1e1b4b, #0f172a);
  background-blend-mode: screen;
}

/* index */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-container {
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.bg-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 12rem);
  color: #111;
  letter-spacing: -3px;
  text-transform: lowercase;
  line-height: 0.9;
}

.overlay-name {
  font-family: 'Allura', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: capitalize;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
  white-space: nowrap;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 50px;
  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease;
}

header.scrolled {
  background: rgba(10, 20, 35, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header.hide {
  transform: translateY(-100%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 a {
  color: #e2e8f0;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #cbd5e1;
}

/* about */

.about-title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 1.2rem;
  font-weight: 700;x
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 20;
}
.about-title.show {
  opacity: 0.8;
  transform: translate(-50%, 0);
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding: 140px 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.about-box {
  flex: 0 0 460px;
  width: 460px;
  max-width: 460px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.8s ease;
}

.about-text {
  flex: 0 0 320px;
  width: 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.8s ease;
}

.me-row,
.sofar-row {
  justify-content: flex-end;
}

.backthen-row {
  justify-content: flex-start;
  margin-top: -20px;
}

.sofar-row {
  margin-top: -20px;
}

.me-row .about-text,
.sofar-row .about-text {
  text-align: right;
  align-items: flex-end;
}

.backthen-row .about-text {
  text-align: left;
}

.about-text h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  color: #ffffff;
}

.about-text p {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.about-img {
  width: 100%;
  height: 450px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-caption {
  font-size: 0.85rem;
  color: #cbd5e1;
  opacity: 0.8;
  margin-bottom: 12px;
  font-style: italic;
}

.reveal-left {
  transform: translateX(-120vw);
}

.reveal-right {
  transform: translateX(120vw);
}

.show {
  opacity: 1;
  transform: translateX(0);
}

.about-box.backthen-deck,
.about-box.me-deck,
.about-box.sofar-deck {
  background: transparent;
}

.backthen-deck,
.me-deck,
.sofar-deck {
  flex: 0 0 460px;
  width: 460px;
  max-width: 460px;
  border-radius: 20px;
  overflow: visible;
}

.deck-stage {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: visible;
  border-radius: 14px;
}

.deck-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: transform 0.55s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.deck-card.pos-0 {
  z-index: 10;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}
.deck-card.pos-1 {
  z-index: 9;
  opacity: 0.95;
  transform: translate(-50%, -50%) rotate(-6deg) translate(-10px, 10px);
}
.deck-card.pos-2 {
  z-index: 8;
  opacity: 0.9;
  transform: translate(-50%, -50%) rotate(5deg) translate(10px, 14px);
}
.deck-card.pos-3 {
  z-index: 7;
  opacity: 0.85;
  transform: translate(-50%, -50%) rotate(-4deg) translate(-6px, 18px);
}
.deck-card.pos-rest {
  z-index: 6;
  opacity: 0.78;
  transform: translate(-50%, -50%) rotate(3deg) translate(8px, 22px);
}
.deck-card.to-back-left {
  z-index: 20;
  opacity: 0.9;
  transform: translate(-50%, -50%) translate(-90px, 26px) rotate(-12deg);
}
.deck-card.to-back-right {
  z-index: 20;
  opacity: 0.9;
  transform: translate(-50%, -50%) translate(90px, 26px) rotate(12deg);
}

/* responsive */
@media (max-width: 900px) {
  .about-section {
    padding: 120px 20px 70px;
    gap: 50px;
  }

  .about-row {
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
  }

  .about-box,
  .about-text,
  .backthen-deck,
  .me-deck,
  .sofar-deck {
    width: 100%;
    max-width: 520px;
  }
}

/* favorites */
.favorites-title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 20;
}
.favorites-title.show {
  opacity: 0.75;
  transform: translate(-50%, 0);
}

.favorites-section {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.favorites-carousel {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  overflow: visible;
}

.favorite-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 430px;
  border-radius: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
  perspective: 1200px;
}

.favorite-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.favorite-card.show-caption .favorite-inner {
  transform: rotateY(180deg);
}

.favorite-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.favorite-front {
  transform: rotateY(0deg);
}

.favorite-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}
.favorite-back img {
  filter: brightness(0.35);
}

.favorite-back {
  transform: rotateY(180deg);
  position: relative;
}

.favorite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.12)
  );
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  gap: 12px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(255, 255, 255, 0.08);
}

.carousel-track.focus-mode .favorite-card:not(.pos-center) {
  filter: brightness(0.2) blur(2px);
  opacity: 0.22;
}

.favorite-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.favorite-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.favorite-card.pos-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: brightness(1);
}

.favorite-card.pos-left-1 {
  transform: translate(calc(-50% - 250px), -50%) scale(0.88);
  opacity: 0.75;
  z-index: 4;
  pointer-events: auto;
  filter: brightness(0.8);
}

.favorite-card.pos-right-1 {
  transform: translate(calc(-50% + 250px), -50%) scale(0.88);
  opacity: 0.75;
  z-index: 4;
  pointer-events: auto;
  filter: brightness(0.8);
}

.favorite-card.pos-left-2 {
  transform: translate(calc(-50% - 440px), -50%) scale(0.72);
  opacity: 0.75;
  z-index: 3;
  filter: brightness(0.65);
}

.favorite-card.pos-right-2 {
  transform: translate(calc(-50% + 440px), -50%) scale(0.72);
  opacity: 0.75;
  z-index: 3;
  filter: brightness(0.65);
}

.favorite-card.pos-hidden {
  transform: translate(-50%, -50%) scale(0.55);
  opacity: 0;
  filter: brightness(0.3);
  z-index: 1;
}

@media (max-width: 900px) {
  .favorites-section {
    padding: 120px 20px 60px;
  }

  .favorites-carousel {
    height: 500px;
  }

  .favorite-card {
    width: 250px;
    height: 360px;
  }

  .favorite-card.pos-left-1 {
    transform: translate(calc(-50% - 170px), -50%) scale(0.84);
  }

  .favorite-card.pos-right-1 {
    transform: translate(calc(-50% + 170px), -50%) scale(0.84);
  }

  .favorite-card.pos-left-2,
  .favorite-card.pos-right-2 {
    opacity: 0;
  }
}


/*more */
.more-title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 20;
}
.more-title.show {
  opacity: 0.75;
  transform: translate(-50%, 0);
}

.extras-title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0.8;
  transition: 0.6s ease;
  z-index: 20;
}
.songs-subtitle {
  position: absolute;
  top: 180px; 
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0.8;
  transition: 0.6s ease;
  z-index: 20;
}
.extras-title.show,
.songs-subtitle.show {
   opacity: 0.8;
  transform: translate(-50%, 0);
}


.songs-section {
  min-height: 100vh;
  padding: 140px 40px 80px;
}

.songs-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.song-card {
  position: relative;
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.song-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.song-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.song-card:hover .song-overlay {
  opacity: 1;
  pointer-events: auto;
}

.song-overlay h4 {
  margin: 0;
  font-size: 1rem;
}

.artist {
  font-size: 0.85rem;
  opacity: 0.8;
}

.vibe {
  font-size: 0.8rem;
  margin: 6px 0;
}

.song-overlay a {
  font-size: 0.75rem;
  text-decoration: underline;
  color: white;
}


/* whats in the bag */
.bag-title {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -20px);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #e2e8f0;
  opacity: 0.8;
  transition: 0.6s ease;
  z-index: 20;
}
.bag-title.show {
  opacity: 0.8;
  transform: translate(-50%, 0);
}

.bag-section {
  min-height: 100vh;
  padding: 80px 40px 120px;
}

.bag-layout {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 760px;
  margin: 0 auto;
}

.purse {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 390px;
  z-index: 1;
  display: block;

  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.purse img {
  width: 80%;
  display: block;
  height: auto;
}
.purse:hover {
  transform: translateX(-50%) scale(1.03);
}

/* clickable items */
.bag-item {
  position: absolute;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.bag-item img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.bag-item:hover {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.bag-item.active {
  transform: scale(1.06);
  filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.15));
}

/* item positions */


.item-wallet {
  width: 120px;
  left: 25%;
  top: 15%;
  transform: rotate(-14deg);
}

.item-wallet2 {
  width: 120px;
  left: 41%;
  top: 14%;
  transform: rotate(11deg);
}

.item-lipgloss {
  width: 68px;
  left: 19%;
  top: 32%;
  transform: rotate(14deg);
}

.item-lipgloss2 {
  width: 72px;
  left: 16%;
  top: 24%;
  transform: rotate(-9deg);
}

.item-lipgloss3 {
  width: 70px;
  left: 52%;
  top: 18%;
  transform: rotate(-5deg);
}

.item-headphones {
  width: 165px;
  left: 57%;
  top: 13%;
  transform: rotate(-4deg);
}

.item-keys {
  width: 100px;
  left: 25%;
  top: 3%;
  transform: rotate(250deg);
}

.item-keys2 {
  width: 115px;
  left: 35%;
  top: 10%;
  transform: rotate(8deg);
}

.item-keys3{
  width: 35px;
  left: 55%;
  top: 5%;
  transform: rotate(50deg);
}

.item-perfume {
  width: 80px;
  left: 18%;
  top: 15%;
  transform: rotate(-9deg);
}

.purse-info {
  position: absolute;
  right: 10px;
  bottom: 120px;
  width: 260px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #e2e8f0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 5;
  pointer-events: none;
}

.item-wallet,
.item-wallet2,
.item-lipgloss,
.item-lipgloss2,
.item-lipgloss3,
.item-headphones,
.item-keys,
.item-keys2,
.item-keys3,
.item-perfume {
  z-index: 3;
}

.bag-item:hover
.purse:hover
.bag-item {
  transform: scale(1.05);
}

.purse-info.show {
  opacity: 1;
  transform: translateY(0);
}

.purse-info h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #fff;
}

.purse-info p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* mobile */
@media (max-width: 900px) {
  .bag-section {
    padding: 70px 20px 100px;
  }

  .bag-layout {
    height: 920px;
  }

  .purse {
    width: 290px;
    bottom: 40px;
  }

  .purse-info {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translate(-50%, 10px);
    width: min(90%, 320px);
  }

  .purse-info.show {
    transform: translate(-50%, 0);
  }

  .item-wallet {
    width: 110px;
    left: 8%;
    top: 430px;
  }

  .item-lipgloss {
    width: 58px;
    left: 25%;
    top: 240px;
  }

  .item-lipgloss2 {
    width: 60px;
    left: 42%;
    top: 265px;
  }

  .item-headphones {
    width: 135px;
    left: 46%;
    top: 185px;
  }

  .item-keys {
    width: 72px;
    left: 72%;
    top: 390px;
  }

  .item-perfume {
    width: 70px;
    left: 60%;
    top: 470px;
  }

  .item-perfume2,
  .item-gum {
    width: 68px;
    left: 18%;
    top: 520px;
  }
}