body {
  background: #fff8fc;
  color: #3e1d2c;
  font-family: 'Garamond', serif;
  margin: 0;
  padding: 0;
}

/* Global dreamy soft focus glow + pastel haze */
body {
  background: #fff8fc;
  color: #3e1d2c;
  font-family: 'Garamond', serif;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* subtle pastel gradient overlay for dreamy vibes */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 230, 250, 0.3), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

/* Soft box shadows on main content */
.content-section {
  padding: 30px;
  max-width: 800px;
  margin: 40px auto;
  background: #fff0f9;
  border-radius: 16px;
  box-shadow:
    0 15px 25px rgba(219, 77, 154, 0.12),
    0 5px 15px rgba(255, 182, 193, 0.15);
  transition: box-shadow 0.3s ease;
}
.content-section:hover {
  box-shadow:
    0 20px 40px rgba(219, 77, 154, 0.18),
    0 8px 25px rgba(255, 182, 193, 0.25);
}

/* Feminine soft edges on text */
h1, h2, h3 {
  letter-spacing: 0.06em;
  font-weight: 600;
  text-shadow:
    0 0 5px rgba(219, 77, 154, 0.3);
}

/* Add subtle pastel gradient to headings */
h2 {
  background: linear-gradient(45deg, #e06ea3, #f9b2d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Add soft glow and layering to links */
a {
  color: #db4d9a;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f69cc7;
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 4px;
}
a:hover {
  color: #f45da1;
}
a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Soft pink scroll bar for modern webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff0f9;
}
::-webkit-scrollbar-thumb {
  background: #f45da1;
  border-radius: 8px;
  border: 2px solid #fff0f9;
}

/* Add subtle vintage film grain overlay (optional) */
@keyframes grainAnimation {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  opacity: 0.04;
  animation: grainAnimation 8s infinite;
  z-index: -1;
}

/* Soft vignette effect */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, #ffe4f2 100%);
  z-index: -2;
}


a {
  color: #db4d9a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.navbar {
  background: #ffe0f3;
  text-align: center;
  padding: 15px;
  border-bottom: 1px dashed #e47fb4;
}
.navbar ul {
  list-style: none;
  padding: 0;
}
.navbar li {
  display: inline;
  margin: 0 15px;
}
.navbar a {
  font-weight: bold;
  font-size: 1.1em;
  font-family: 'Nanum Pen Script', cursive;
}

.site-header {
  text-align: center;
  padding: 40px 20px 20px;
  background: #ffe4f2;
}
.site-header h1 {
  font-size: 3em;
  margin: 0;
  color: #bb4b8e;
  font-family: 'Nanum Pen Script', cursive;
}
.site-header p {
  font-style: italic;
  font-size: 1.1em;
}

.content-section {
  padding: 30px;
  max-width: 800px;
  margin: auto;
}
.content-section h2 {
  font-family: 'Nanum Pen Script', cursive;
  color: #d84b8d;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.blog-post {
  background: #fff0f9;
  padding: 20px;
  border-left: 5px solid #f98ecf;
  margin-bottom: 20px;
}
.blog-post h3 {
  margin-top: 0;
  color: #d84b8d;
}
.blog-post .date {
  font-size: 0.9em;
  color: #888;
}

.email-form {
  background: #fff4fa;
  padding: 20px;
  border: 1px dashed #f69cc7;
  font-family: 'Courier New', monospace;
}
.email-form input,
.email-form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  font-family: inherit;
  border: 1px solid #e0a1c0;
  background: #fff9fc;
}
.email-form input[type="submit"] {
  background: #f45da1;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-family: 'Nanum Pen Script', cursive;
  font-size: 1.1em;
}

.music-player,
.ipod-player {
  margin: 20px auto;
  max-width: 500px;
  text-align: center;
}

.ipod-player img {
  max-width: 200px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(247, 129, 189, 0.3);
  transition: transform 0.2s ease;
}
.ipod-player img:hover {
  transform: scale(1.05);
}
.ipod-caption {
  font-size: 0.95em;
  color: #bb3c8c;
  margin-top: 10px;
  font-style: italic;
}

.stickers {
  text-align: center;
  margin: 30px 0;
}
.stickers img {
  margin: 5px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  padding: 15px;
  background: #fdd6ec;
  border-top: 1px dashed #d86fa5;
}

.custom-stickers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px auto;
  max-width: 600px;
}

.custom-stickers img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.custom-stickers img:hover {
  transform: scale(1.05);
}

/* Pink princess iPod mini-player */
.ipod-wrapper {
  max-width: 280px;
  margin: 25px auto;
  text-align: center;
}

.ipod-shell {
  background: #ffe4f2; /* soft pink from your header bg */
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(219, 77, 154, 0.4); /* pink shadow */
  text-align: center;
}

.ipod-screen {
  background: #fff0f9; /* light pink from blog posts */
  height: 140px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f98ecf; /* pink border from blog posts */
  box-shadow: inset 0 0 8px rgba(219, 77, 154, 0.2);
}

.track-title {
  white-space: nowrap;
  color: #bb3c8c; /* rich pink from your headings */
  font-weight: 700;
  font-size: 1.25em;
  line-height: 140px;
  position: absolute;
  will-change: transform;
  animation: scrollText 12s linear infinite;
  text-decoration: none;
  font-family: 'Nanum Pen Script', cursive;
}

.click-wheel {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.button,
.center-btn {
  width: 42px;
  height: 42px;
  background: #f69cc7; /* pastel pink button */
  border-radius: 50%;
  box-shadow:
    inset 0 3px 5px rgba(255, 255, 255, 0.6),
    0 3px 5px rgba(219, 77, 154, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a2659; /* darker pink text */
  font-weight: 700;
  font-size: 1.5em;
  text-decoration: none;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Nanum Pen Script', cursive;
}

.button:hover,
.center-btn:hover {
  background: #d84b8d; /* stronger pink on hover */
  color: #fff;
}

.ipod-caption {
  margin-top: 15px;
  font-style: italic;
  font-size: 0.9em;
  color: #bb3c8c;
  font-family: 'Nanum Pen Script', cursive;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.sparkles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #f9b2d6 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkleMove 12s linear infinite;
  filter: drop-shadow(0 0 3px #f45da1);
}

/* Position sparkles randomly on load */
.sparkles span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.sparkles span:nth-child(2) { top: 35%; left: 40%; animation-delay: 2s; }
.sparkles span:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.sparkles span:nth-child(4) { top: 80%; left: 50%; animation-delay: 6s; }
.sparkles span:nth-child(5) { top: 25%; left: 75%; animation-delay: 8s; }
.sparkles span:nth-child(6) { top: 50%; left: 85%; animation-delay: 1s; }
.sparkles span:nth-child(7) { top: 70%; left: 10%; animation-delay: 3s; }
.sparkles span:nth-child(8) { top: 40%; left: 60%; animation-delay: 5s; }
.sparkles span:nth-child(9) { top: 15%; left: 80%; animation-delay: 7s; }
.sparkles span:nth-child(10){ top: 85%; left: 30%; animation-delay: 9s; }

/* Soft pink sparkles floating */
.sparkles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #f9b2d6 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkleMove 12s linear infinite;
  filter: drop-shadow(0 0 3px #f45da1);
}

/* Sparkle positions */
.sparkles span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.sparkles span:nth-child(2) { top: 35%; left: 40%; animation-delay: 2s; }
.sparkles span:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; }
.sparkles span:nth-child(4) { top: 80%; left: 50%; animation-delay: 6s; }
.sparkles span:nth-child(5) { top: 25%; left: 75%; animation-delay: 8s; }
.sparkles span:nth-child(6) { top: 50%; left: 85%; animation-delay: 1s; }
.sparkles span:nth-child(7) { top: 70%; left: 10%; animation-delay: 3s; }
.sparkles span:nth-child(8) { top: 40%; left: 60%; animation-delay: 5s; }
.sparkles span:nth-child(9) { top: 15%; left: 80%; animation-delay: 7s; }
.sparkles span:nth-child(10){ top: 85%; left: 30%; animation-delay: 9s; }

@keyframes sparkleMove {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translate(15px, -20px) scale(0.8);
    opacity: 0;
  }
}

/* Shimmering gradients on links and buttons */
a, .center-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f9b2d6 20%, #f45da1 40%, #f9b2d6 60%);
  background-size: 200% 100%;
  color: white;
  transition: background-position 1.5s ease;
}

a:hover, .center-btn:hover {
  background-position: 100% 0;
  color: #fff;
  text-shadow: 0 0 6px #f45da1;
}

/* Soft focus on images */
img {
  border-radius: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.3));
  transition: filter 0.3s ease;
}
img:hover {
  filter: drop-shadow(0 0 16px rgba(255, 105, 180, 0.7));
}

/* Soft focus on inputs and textareas */
input, textarea {
  border-radius: 10px;
  border: 1.5px solid #f9b2d6;
  background: #fff0f9;
  box-shadow: inset 0 2px 5px rgba(255,182,193,0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #f45da1;
  box-shadow: 0 0 8px #f45da1;
  outline: none;
}

  
