@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500&display=swap');

:root {
  --primary: #ff4d6d; /* Watermelon pink */
  --secondary: #4ade80; /* Leaf green */
  --accent: #fcd34d; /* Sun yellow */
  --dark: #1e293b;
  --light: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, .brand {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
}

/* Navbar */
nav {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-decoration: none;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #475569;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, var(--primary), #fb7185);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  box-shadow: 0 10px 25px rgba(255, 77, 109, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.4);
}

/* Glass Card Illustration */
.hero-image-wrapper {
  flex: 1.2;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.glass-card:hover {
  transform: rotate(0deg) translateY(-10px);
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: block;
}

/* Author Section */
.author-section {
  padding: 6rem 5%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
}

.author-container {
  max-width: 800px;
  margin: 0 auto;
}

.author-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
  text-align: center;
}

.author-bio {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #334155;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  position: relative;
}

.author-bio p {
  margin-bottom: 1.5rem;
}

.author-bio p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #64748b;
  font-style: italic;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* Policy Content */
.author-image {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 4px solid white;
}
.policy-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 4rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.policy-container a {
  color: var(--primary);
  text-decoration: none;
}

.policy-container a:hover {
  text-decoration: underline;
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1rem;
}

.policy-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--dark);
}

.policy-container p, .policy-container li {
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.25rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 5%;
  background: white;
  color: #64748b;
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

footer a:hover {
  color: #e11d48;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 5%;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .glass-card {
    transform: rotate(0);
  }
  .policy-container {
    padding: 2rem;
    margin: 2rem 5%;
  }
}
