/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Comfortaa:wght@300;400;500;600;700&family=Fredoka:wght@300;400;500;600;700&display=swap');

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

/* Variables */
:root {
  /* Colors */
  --primary-color: #6b0f4b;
  --secondary-color: #efa1bf;
  --accent-color: #de7cd8;
  --light-pink: #f4cced;
  --hello-kitty-pink: #ffb3ba;
  --hello-kitty-bow: #ff6b9d;
  --pastel-yellow: #ffffba;
  --pastel-blue: #bae1ff;
  --kawaii-purple: #e6ccff;
  --dark-text: #333;
  --light-text: #666;
  --white: #ffffff;
  /* Gradients */
  --gradient-bg: linear-gradient(135deg, #efa1bf 0%, #f6cddd 100%);
  --hello-kitty-gradient: linear-gradient(135deg, #ffb3ba 0%, #ffe6e6 50%, #f4cced 100%);
  --kawaii-button-gradient: linear-gradient(135deg, var(--hello-kitty-bow), var(--hello-kitty-pink));
  --header-gradient: linear-gradient(135deg, var(--primary-color) 0%, #8b1a5c 100%);
  --decorative-gradient: linear-gradient(90deg, var(--hello-kitty-bow), var(--pastel-yellow), var(--hello-kitty-pink));
  /* Shadows */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  --kawaii-shadow: 0 8px 25px rgba(255, 179, 186, 0.3);
  --kawaii-hover-shadow: 0 15px 35px rgba(255, 179, 186, 0.4);
  /* Fonts */
  --font-primary: 'Baloo 2', 'Segoe UI', 'Arial', sans-serif;
  --font-heading: 'Fredoka', 'Baloo 2', sans-serif;
  --font-label: 'Comfortaa', sans-serif;
  /* Spacing */
  --border-radius: 25px;
  --border-radius-small: 15px;
  --border-radius-large: 50px;
  --padding-card: 30px;
  --padding-form: 40px;
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* Animations */
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

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

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Body */
body {
  font-family: var(--font-primary);
  background: var(--hello-kitty-gradient);
  color: var(--dark-text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Floating decorations */
body::before {
  content: '🌸 ✨ 💕 🎀 🌟 💖 🌸';
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  opacity: 0.2;
  pointer-events: none;
  animation: kawaiiFloat 4s ease-in-out infinite;
  z-index: 1;
}

/* Header */
header {
  background: var(--header-gradient);
  color: var(--white);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--hello-kitty-bow);
}

/* Title */
.title, header h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #f4cced, #ffffba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heartBeat 3s ease-in-out infinite;
}

/* Navigation */
.nav-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-buttons a {
  text-decoration: none;
}

/* Nav buttons */
.nav-buttons button {
  font-family: var(--font-label);
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--hello-kitty-pink);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--kawaii-shadow);
  position: relative;
  overflow: hidden;
}

/* Nav hover */
.nav-buttons button:hover {
  background: var(--hello-kitty-pink);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--kawaii-hover-shadow);
  animation: gentleBounce 0.6s ease-in-out;
}

/* Active nav */
.nav-buttons button.active {
  background: var(--hello-kitty-bow);
  color: white;
  animation: heartBeat 2s ease-in-out infinite;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
section, .content-section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

#home img {
     width: 900px;
      height: 450px;
      border-radius: 10px;
}

/* Cards */
.card, .journey-step, .fun-facts, form {
  font-family: var(--font-primary);
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--padding-card);
  margin-bottom: 30px;
  box-shadow: var(--kawaii-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--hello-kitty-pink);
}

/* Card decorations */
.card::before, .fun-facts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--decorative-gradient);
}

/* Card hearts */
.card::after {
  content: '💕';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  opacity: 0.3;
  animation: heartBeat 2s ease-in-out infinite;
}

/* Card hover */
.card:hover, .journey-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--kawaii-hover-shadow);
  animation: kawaiiFloat 0.6s ease-in-out;
}

/* Headings */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

/* H1 */
h1 {
  text-shadow: 2px 2px 4px rgba(255, 179, 186, 0.3);
}

/* H2 */
h2 {
  font-size: clamp(24px, 4vw, 32px);
  text-align: center;
  padding-bottom: 15px;
  color: var(--hello-kitty-bow);
}

/* H2 underline */
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--decorative-gradient);
  border-radius: 10px;
}

/* H2 bow */
h2::before {
  content: '🎀';
  position: absolute;
  top: -5px;
  right: 10%;
  font-size: 20px;
  animation: gentleBounce 2s ease-in-out infinite;
}

/* H3 */
h3 {
  color: var(--hello-kitty-bow);
  font-size: clamp(18px, 3vw, 24px);
}

/* H3 sparkle */
h3::before {
  content: '✨';
  margin-right: 8px;
  animation: fadeInOut 2s ease-in-out infinite;
}

/* Paragraphs */
p {
  font-family: var(--font-label);
  color: var(--light-text);
  font-size: 17px;
  line-height: 1.9;
  text-align: left;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 245, 250, 0.9) 100%);
  border-radius: 15px;
  border-left: 4px solid var(--hello-kitty-pink);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(5px);
}

/* Paragraph hover effect */
p:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
  border-left-color: var(--hello-kitty-bow);
}

/* Special paragraph styling for intro text */
.intro-text {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 192, 203, 0.3) 100%);
  border: 2px solid var(--hello-kitty-pink);
  border-radius: 20px;
  padding: 25px 30px;
  margin: 25px 0;
  position: relative;
}

/* Intro text decoration */
.intro-text::before {
  content: '🌸';
  position: absolute;
  top: -8px;
  left: 20px;
  background: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
}

.intro-text::after {
  content: '🌸';
  position: absolute;
  top: -8px;
  right: 20px;
  background: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
}

/* Indented paragraphs */
.indented-paragraph {
  padding-left: 40px;
  border-left: 3px solid var(--kawaii-purple);
  background: linear-gradient(135deg, rgba(230, 204, 255, 0.2) 0%, rgba(255, 245, 250, 0.9) 100%);
}

/* Quote-style paragraphs */
.quote-paragraph {
  font-style: italic;
  background: linear-gradient(135deg, rgba(255, 179, 186, 0.1) 0%, rgba(255, 245, 250, 0.8) 100%);
  border: 2px dashed var(--hello-kitty-pink);
  position: relative;
}

.quote-paragraph::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 30px;
  color: var(--hello-kitty-bow);
  background: white;
  padding: 0 5px;
}

/* Bow decoration */
.hello-kitty-bow::before {
  content: '🎀';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 16px;
  animation: gentleBounce 2s ease-in-out infinite;
}

/* Paw decoration */
.paw-print::after {
  content: '🐾';
  position: absolute;
  opacity: 0.3;
  font-size: 12px;
  animation: fadeInOut 3s ease-in-out infinite;
}

/* Journey timeline */
.journey-step {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  border-left: 5px solid var(--hello-kitty-pink);
}

/* Journey flowers */
.journey-step::before {
  content: '🌸';
  position: absolute;
  left: -15px;
  top: 20px;
  background: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
  animation: kawaiiFloat 3s ease-in-out infinite;
}

/* Journey even rows */
.journey-step:nth-child(even) {
  grid-template-columns: 2fr 1fr;
  border-left: none;
  border-right: 5px solid var(--hello-kitty-pink);
}

.journey-step:nth-child(even)::before {
  right: -15px;
  left: auto;
}

.journey-step:nth-child(even) .text-content {
  order: -1;
}

/* Image containers */
.image-placeholder {
  width: 100%;
  height: 500px;
  border-radius: 25px;
  box-shadow: var(--kawaii-shadow);
  transition: var(--transition);
  border: 4px solid var(--hello-kitty-pink);
  background: linear-gradient(45deg, var(--hello-kitty-pink), var(--pastel-yellow), var(--kawaii-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-heading);
  overflow: hidden;
  position: relative;
}

/* Actual images inside placeholders */
.journey-step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: var(--transition);
  filter: brightness(1.05) contrast(1.1);
}

/* Image hover effects */
.journey-step img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(1.15) contrast(1.2);
}

.image-placeholder:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    var(--kawaii-hover-shadow),
    0 0 30px rgba(255, 105, 180, 0.4);
  border-color: var(--hello-kitty-bow);
}

/* Placeholder bow */
.image-placeholder::before {
  content: '🎀';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  animation: gentleBounce 2s ease-in-out infinite;
}

/* Fun facts cat */
.fun-facts::before {
  content: '😸';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  animation: heartBeat 2s ease-in-out infinite;
}

/* Fun facts title */
.fun-facts h2::before {
  content: '🐱';
  margin-right: 10px;
}

/* Lists */
.fun-facts ul {
  list-style: none;
  padding: 0;
}

/* List items */
.fun-facts li {
  font-family: var(--font-label);
  padding: 15px 0 15px 40px;
  border-bottom: 2px dotted var(--hello-kitty-pink);
  position: relative;
  font-size: 16px;
  color: var(--light-text);
  transition: var(--transition);
  border-radius: 10px;
  margin-bottom: 5px;
}

/* List icons */
.fun-facts li::before {
  content: '🎀';
  position: absolute;
  left: 0;
  font-size: 18px;
  animation: gentleBounce 2s ease-in-out infinite;
}

.fun-facts li:nth-child(odd)::before { content: '🌸'; }
.fun-facts li:nth-child(3n)::before { content: '💕'; }

/* List hover */
.fun-facts li:hover {
  color: var(--hello-kitty-bow);
  transform: translateX(10px);
  background: rgba(255, 179, 186, 0.1);
  padding-left: 45px;
  border-radius: var(--border-radius-small);
}

.fun-facts li:last-child {
  border-bottom: none;
}

/* Forms */
form {
  max-width: 600px;
  margin: 40px auto;
  padding: var(--padding-form);
}

/* Form icon */
form::before {
  content: '💌';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  animation: heartBeat 2s ease-in-out infinite;
}

/* Form title */
form h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--hello-kitty-bow);
  font-family: var(--font-heading);
}

form h3::before { content: '✨ '; }
form h3::after { content: ' ✨'; }

/* Labels */
label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 600;
  color: var(--hello-kitty-bow);
  font-family: var(--font-label);
}

/* Label flowers */
label::before {
  content: '🌸';
  margin-right: 8px;
  font-size: 14px;
}

/* Inputs */
input, textarea {
  font-family: var(--font-label);
  width: 100%;
  padding: 15px;
  border: 3px solid var(--hello-kitty-pink);
  border-radius: var(--border-radius-small);
  font-size: 16px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
}

/* Input focus */
input:focus, textarea:focus {
  outline: none;
  border-color: var(--hello-kitty-bow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 179, 186, 0.2);
  transform: scale(1.02);
}

/* Textarea */
textarea {
  resize: vertical;
  height: 120px;
}

/* Buttons */
.submit-btn, .start-btn {
  font-family: var(--font-heading);
  background: var(--kawaii-button-gradient);
  color: var(--white);
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--kawaii-shadow);
}

/* Submit button */
.submit-btn {
  width: 100%;
  margin-top: 20px;
}

/* Button sparkles */
.submit-btn::before {
  content: '✨';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeInOut 2s ease-in-out infinite;
}

.submit-btn::after {
  content: '✨';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeInOut 2s ease-in-out infinite 1s;
}

/* Button hover */
.submit-btn:hover, .start-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
  animation: gentleBounce 0.6s ease-in-out;
}

/* Contact info */
.contact-info p {
  font-family: var(--font-label);
  font-size: 18px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-info strong {
  color: var(--hello-kitty-bow);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--hello-kitty-bow), var(--primary-color));
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  position: relative;
  font-family: var(--font-label);
}

/* Footer decorations */
footer::before {
  content: '🎀 💕 🌸 💕 🎀';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0.7;
  animation: kawaiiFloat 3s ease-in-out infinite;
}

/* Loading screen */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hello-kitty-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

/* Loading fade */
.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid var(--hello-kitty-pink);
  border-top: 6px solid var(--hello-kitty-bow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

/* Spinner bow */
.spinner::before {
  content: '🎀';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  animation: heartBeat 1s ease-in-out infinite;
}

/* Utilities */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none; }

/* Animations */
.fade-in { animation: fadeIn 0.8s ease-out; }
.fade-in-up { animation: fadeInUp 0.8s ease-out; }

/* Scroll effects */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
  animation: kawaiiFloat 0.8s ease-out;
}

/* Kawaii decorations */
.kawaii-decoration::before {
  content: '✨🌸💕🎀💖🌟✨';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 16px;
  opacity: 0.3;
  animation: kawaiiFloat 4s ease-in-out infinite;
}

/* Tablet responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-buttons { justify-content: center; }
  .nav-buttons button { padding: 10px 20px; font-size: 14px; }
  
  .journey-step, .journey-step:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
    border-left: none;
    border-right: none;
    border-top: 5px solid var(--hello-kitty-pink);
  }
  
  .journey-step::before, .journey-step:nth-child(even)::before {
    top: -15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .journey-step:nth-child(even) .text-content { order: 0; }
  
  section, .content-section { padding: 40px 15px; }
  .card, .journey-step { padding: 20px; }
  form { padding: 30px 20px; margin: 20px; }
}

/* Mobile responsive */
@media (max-width: 480px) {
  .title, header h1 { font-size: 20px; }
  .nav-buttons { gap: 10px; }
  .nav-buttons button { padding: 8px 16px; font-size: 13px; }
  h2 { font-size: 22px; }
  .image-placeholder { height: 350px; border-radius: 20px; }
  .fun-facts li:hover { padding-left: 40px; }
} 