/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* Colors & Base Styles */
:root {
  --pale-yellow: #FFFFE0;
  --fluorescent-yellow: #F5FF90;
  --dark-beige: #8B7D6B;
  --white: #F8F7FF;
  --azul: #246EB9;
  --overlay: rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--pale-yellow);
  color: var(--dark-beige);
  font-size: 18px;
  line-height: 1.8;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: 4rem;
  color: var(--dark-beige); /* Changed from white for visibility */
}

h2 {
  font-size: 2.5rem;
  color: var(--dark-beige);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--dark-beige);
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background: var(--pale-yellow);
  padding: 1rem;
  z-index: 1000;
  text-align: center;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-button {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-beige);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-button:hover {
  color: var(--fluorescent-yellow);
}

/* Parallax & Hero Section */
.parallax {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
}

#hero {
  background-image: url('https://images.unsplash.com/photo-1620052599533-53c8a993739d?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb');
}

.hero-content {
  position: relative;
  padding: 2rem;
  background: var(--pale-yellow); /* Changed from white to match page */
  opacity: 0.9;
}

/* Static Sections */
.static-section {
  padding: 4rem 2rem;
  background: var(--pale-yellow);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Timeline Section */
#timeline-section {
  background-image: url('https://images.unsplash.com/photo-1563245372-f217242f8560?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb');
}

.timeline-content {
  background: var(--pale-yellow); /* Changed from white to match page */
  opacity: 0.9;
  padding: 2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.milestone {
  padding: 1rem;
  background: var(--pale-yellow);
}

/* Donation Section */
.donation-form {
  margin-top: 2rem;
}

/* CTA Button */
.cta-button {
  background: var(--fluorescent-yellow);
  color: var(--azul);
  padding: 0.8rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: bolder;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #e0e000; /* Slightly darker fluorescent yellow */
}

/* Footer */
#contact {
  background: var(--pale-yellow);
  padding: 3rem 2rem;
}

#contact h2 {
  font-size: 2rem;
}

.social-links a {
  color: var(--dark-beige);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  margin: 0 0.8rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--fluorescent-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  p { font-size: 1rem; }
  .nav-content { gap: 1rem; flex-wrap: wrap; }
}