/* style.css*/

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

body {
  font-family: 'Irish Grover', 'Comic Sans MS', sans-serif;
  background: linear-gradient(135deg, #ffb6c1, #ffe680, #a0d8f1);
  color: #333;
  line-height: 1.6;
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Header */
.site-header {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 3px dashed #ff69b4;
  box-shadow: 0 0 15px #ff69b4;
}

.site-header h1 {
  font-size: 3rem;
  color: #ff1493;
  text-shadow: 2px 2px #fff, -2px -2px #ff69b4;
  animation: bounce 2s infinite;
}

.tagline {
  font-style: italic;
  color: #ff69b4;
  margin-top: 0.5rem;
  text-shadow: 1px 1px #fff;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid #ff69b4;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.5);
}

.navbar a {
  text-decoration: none;
  color: #ff1493;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px dotted #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px #fff;
}

.navbar a:hover {
  background-color: #ff69b4;
  color: #fff;
  box-shadow: 0 0 15px #fff;
  transform: rotate(-2deg) scale(1.05);
}

.top-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}
.about-box {
  background: rgba(255,255,255,0.85);
  padding: 1.5rem;
  border-radius: 15px;
  border: 3px dashed #ff69b4;
  box-shadow: 4px 4px 10px rgba(255,105,180,0.5);
  animation: floatCard 4s ease-in-out infinite;
}

.about-box h2 {
  color: #ff1493;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px #fff;
}

.about-box p {
  font-size: 1.05rem;
}

/* Container Grid */
.container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Posts */
.post {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  border: 3px dashed #ff1493;
  box-shadow: 4px 4px 10px rgba(255, 105, 180, 0.5);
  position: relative;
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.post h2 {
  margin-bottom: 0.5rem;
  color: #ff1493;
  text-shadow: 1px 1px #fff;
}

.date {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #ff69b4;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more:hover {
  text-shadow: 1px 1px #fff, 0 0 5px #ff1493;
  transform: rotate(-2deg) scale(1.1);
}

/* Sidebar */
.sidebar {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px dashed #ff69b4;
  box-shadow: 4px 4px 10px rgba(255, 105, 180, 0.5);
}

.sidebar h3 {
  margin-bottom: 0.75rem;
  color: #ff1493;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar a {
  text-decoration: none;
  color: #ff69b4;
  font-weight: bold;
}

.sidebar a:hover {
  text-shadow: 1px 1px #fff, 0 0 5px #ff69b4;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 3rem;
  color: #ff1493;
  border-top: 3px dashed #ff69b4;
  box-shadow: 0 -4px 10px rgba(255, 105, 180, 0.5);
  text-shadow: 1px 1px #fff;
}

/* Floating sparkles / emojis */
.floating-sparkle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.8;
  pointer-events: none;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { opacity: 1; }
  100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}
.carousel {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  overflow: hidden;
  border: 3px dashed #ff69b4;
  border-radius: 15px;
  background: rgba(255,255,255,0.8);
  box-shadow: 5px 5px 15px rgba(255,105,180,0.5);
}

/* Track holds slides */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Each image = one slide */
.carousel img {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* Actual image styling */
.carousel img {
  object-fit: contain;
  max-height: 300px;
  border-radius: 15px;
  border: 3px solid white;
  box-shadow: 3px 3px 8px rgba(255,105,180,0.6);
}
/* Life Lately Section Layout */
.life-lately {
  max-width: 1000px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
  text-align: center;
}

.life-lately-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-box {
  text-align: left;
}
/* Y2K iPod Sticker */
.ipod-sticker {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  animation: ipodFloat 5s ease-in-out infinite;
}

.ipod-sticker img {
  width: 140px;
  cursor: pointer;
  filter: drop-shadow(6px 6px 12px hotpink);
  transition: transform 0.3s ease;
}

.ipod-sticker img:hover {
  transform: rotate(-3deg) scale(1.08);
}

@keyframes ipodFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .top-section {
    grid-template-columns: 1fr;
  }

  .life-lately-grid {
    grid-template-columns: 1fr;
  }

  .about-box {
    margin-top: 1.5rem;
  }
}
.ipod-sticker {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}


