:root {
  --black: #010101;
  --brown: #672E4F;
  --venus: #ad8ba3;
  --bonjour: #faf9fa;
  --hibiscus: #be3e73;
}

html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Georgia", serif; background-color: var(--bonjour); color: var(--black); line-height: 1.6; font-size: 1.15em; }

/* NAVIGATION */
nav { position: fixed; top: 0; width: 100%; background: var(--brown); padding: 12px 0; z-index: 1000; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 28px; margin: 0; padding: 0; }
nav a { color: var(--bonjour); text-decoration: none; font-weight: 400; font-size: 1.05em; padding: 6px 0; font-family: "Dancing Script", cursive; letter-spacing: 0.5px; }
nav a:hover { color: var(--hibiscus); }
nav a.active { color: var(--hibiscus); border-bottom: 3px solid var(--hibiscus); padding-bottom: 3px; }

/* SECTIONS */
section { padding: 40px 15% 30px; }
h1,h2 { color: var(--brown); font-family: "Dancing Script", cursive; letter-spacing: 0.5px; }
h1 { font-size: 2.5em; margin-bottom: 15px; }
h2 { font-size: 1.8em; margin-bottom: 25px; }

.title { color: var(--hibiscus); font-size: 1.3em; }

/* HERO */
.hero { display: flex; align-items: flex-start; gap: 50px; padding-top: 120px; }
.hero img { width: 400px; height: 300px; object-fit: cover; border-radius: 50%; border: 4px solid var(--venus); }

/* ALBUM COUNTDOWN */
.album-countdown {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
.album-cover-wrap {
  position: relative;
}
.album-cover {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(218, 150, 200, 0.55);
  box-shadow: 0 8px 32px rgba(104, 46, 79, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.album-cover:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(104, 46, 79, 0.35);
}
.album-info {
  text-align: left;
}
.album-title {
  font-size: 2.3em;
  color: #c472a8;
  margin: 0 0 4px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
}
.album-subtitle {
  color: var(--venus);
  font-size: 1.1em;
  margin: 0 0 28px;
  letter-spacing: 1px;
}
.countdown-box {
  background: rgba(196, 114, 168, 0.3);
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 20px;
}
.countdown {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  align-items: baseline;
}
.countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.countdown-number {
  font-size: 2.8em;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  font-family: "Dancing Script", cursive;
  display: inline-block;
  min-width: 1.3em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
}
.album-date {
  color: #c472a8;
  font-size: 1.1em;
  margin: 0 0 20px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
}
.presave-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: #c472a8;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}
.presave-btn:hover {
  background: #a85d90;
  transform: translateY(-2px);
}
.presave-btn i {
  margin-right: 8px;
}

/* WORKS */
.works iframe { margin-bottom: 30px; }
.works a.works-link { display: inline-block; margin: 10px 20px 10px 0; padding: 14px 25px; border-radius: 30px; background-color: #c472a8; color: var(--bonjour); text-decoration: none; font-size: 1em; }
.works a.works-link:hover { background-color: #a85d90; }

/* EXAMPLES */
.example { margin-bottom: 25px; }
.example h3 { margin: 0 0 8px; font-size: 1.2em; color: var(--hibiscus); font-weight: 600; }
.example p { margin: 0 0 12px; font-size: 1.05em; max-width: 700px; }
.example audio { width: 60%; max-width: 400px; height: 36px; }

/* RESUME & CONTACT */
.simple-links a { display: block; margin: 10px 0; color: var(--hibiscus); text-decoration: none; }
.simple-links a:hover { text-decoration: underline; }
footer { text-align: center; padding: 30px; font-size: 0.95em; color: var(--venus); }

/* FADE-IN ANIMATION */
.fade-section { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in { opacity: 1; transform: translateY(0); }

/* CONTACT SOCIALS */
.contact-socials { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
.contact-socials a { font-size: 2.5em; color: var(--brown); transition: transform 0.2s ease, color 0.2s ease; }
.contact-socials a[aria-label="Instagram"]:hover { color:#C13584; transform: scale(1.3); }
.contact-socials a[aria-label="TikTok"]:hover { color:#69C9D0; transform: scale(1.3); }
.contact-socials a[aria-label="Spotify"]:hover { color:#1DB954; transform: scale(1.3); }
.contact-socials a[aria-label="Apple Music"]:hover { color:#FC3C44; transform: scale(1.3); }

/* MOBILE */
@media screen and (max-width:480px){
  nav a { font-size:1.1em; }
  .hero { flex-direction: column; gap: 30px; padding-top: 100px; }
  .hero img { width: 300px; height: 250px; }
  .album-countdown { flex-direction: column; gap: 30px; }
  .album-cover { width: 260px; height: 260px; }
  .countdown { gap: 4px; flex-wrap: wrap; }
  .countdown-number { font-size: 2em; }
}