:root {
  --faff-pink: #ffaff3;
  --unnamed-blue: #a6f0fc;
  --aged-plastic-yellow: #fffbe8;
  --underwater-blue: #292d3e;
  --charcoal: #2f2f2f;
  --white: #fefefc;
  --light-gray: #f5f5f5;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  min-height: 100vh;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--faff-pink) 0%, var(--unnamed-blue) 50%, var(--aged-plastic-yellow) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

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

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.gradient-text {
  background: linear-gradient(45deg, var(--underwater-blue), var(--charcoal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--underwater-blue);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--charcoal);
  opacity: 0.8;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(255, 175, 243, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--underwater-blue);
}

.contact-card p {
  color: var(--charcoal);
  opacity: 0.8;
}

.about-section {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  text-align: center;
}

.about-card h2 {
  color: var(--underwater-blue);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card, .about-card {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-bg {
    animation: none;
  }
  
  .contact-card {
    transition: none;
  }
  
  .contact-card:hover {
    transform: none;
  }
}