/* Google Fonts (add this in your <head> if not already added)

*/

:root {
  --bg-light: #f3fff6;
  --bg-gradient: linear-gradient(135deg, #e8fdf0, #d4f8e8, #f0fff4);
  --primary: #2e7d4f;
  --soft-green: #66bb6a;
  --accent: #a5d6a7;
  --text-dark: #1f3d2b;
  --muted: #5f7f6d;
  --white-glass: rgba(255, 255, 255, 0.7);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Styling */
body {
  
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-x: hidden;
  
}

/* Floating subtle glow background effect */
body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c8facc 0%, transparent 70%);
  top: -200px;
  left: -200px;
  z-index: -1;
  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #b2f2bb 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  z-index: -1;
  opacity: 0.5;
}

/* Container */
.container {
  background: var(--white-glass);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 30px;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(46, 125, 79, 0.15);
  animation: fadeIn 1.2s ease forwards;
}

/* Main Title */
h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Subtitle */
.sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Letter Text */
.letter {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

/* Links Section */
.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Link Cards */
.link-card {
  text-decoration: none;
  color: var(--primary);
  border: 2px solid var(--accent);
  padding: 1rem;
  border-radius: 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.link-card:hover {
  background: var(--soft-green);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(46, 125, 79, 0.2);
}

/* Footer */
footer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 1px;
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Hearts Background */

.hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.heart {
  position: absolute;
  bottom: -50px;
  font-size: 1.5rem;
  opacity: 0.9;
  animation: rise linear forwards;
  filter: drop-shadow(0 0 10px rgba(255, 80, 120, 0.4));
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120vh) scale(1.3) rotate(20deg);
    opacity: 0;
  }
}

