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

body {
  background: linear-gradient(135deg, #2a3d2a 0%, #1e2d1e 50%, #2a3d2a 100%);
  min-height: 100vh;
}

.homepage {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  position: relative;
}

.homepage::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(34, 139, 34, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(107, 142, 35, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.hero-section {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #1a2e0a 0%, #1e4a1e 50%, #223322 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(107, 142, 35, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.hero-section h1 {
  color: #90ee90;
  margin-bottom: 15px;
  font-size: 3.5em;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(144, 238, 144, 0.3);
}

.tagline {
  font-size: 1.3em;
  color: #98fb98;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.photo-gallery {
  text-align: center;
  margin: 60px 0 50px 0;
  padding: 30px;
  background: linear-gradient(
      135deg,
      rgba(42, 61, 42, 0.6),
      rgba(30, 45, 30, 0.7)
    ),
    radial-gradient(
      circle at center,
      rgba(34, 139, 34, 0.2) 0%,
      transparent 70%
    );
  border-radius: 20px;
  border: 2px solid rgba(107, 142, 35, 0.4);
}

.photo-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.profile-photo {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(107, 142, 35, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  border: 3px solid #228b22;
}

.profile-photo:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 5px rgba(107, 142, 35, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.main-photo {
  max-width: 300px;
  height: auto;
}

.secondary-photo {
  max-width: 250px;
  height: auto;
}

.bio-section {
  margin: 50px 0;
  line-height: 1.7;
  background: linear-gradient(135deg, #3a4a3a, #2f3f2f),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-10 0c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10 10 4.5 10 10z' fill='%23228B22' fill-opacity='0.1'/%3E%3C/svg%3E");
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(107, 142, 35, 0.3);
}

.bio-section h2 {
  color: #90ee90;
  border-bottom: 3px solid #6b8e23;
  padding-bottom: 12px;
  margin-bottom: 25px;
  font-size: 2.2em;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bio-content p {
  margin-bottom: 18px;
  color: #c0d6c0;
  font-size: 1.1em;
  font-weight: 400;
  text-align: justify;
}

.navigation-links {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #1a2e0a 0%, #1e4a1e 100%);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(107, 142, 35, 0.5);
}

.navigation-links h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #90ee90;
  font-size: 1.6em;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.navigation-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.navigation-links li {
  margin: 15px 0;
}

.navigation-links a {
  color: #98fb98;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2em;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
  background: rgba(152, 251, 152, 0.1);
  border: 2px solid rgba(152, 251, 152, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.navigation-links a:hover {
  background: linear-gradient(135deg, #90ee90, #98fb98);
  color: #2d5016;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 238, 144, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: none;
}

/* Forest-themed decorative elements */
.hero-section::after {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2em;
  opacity: 0.7;
  z-index: 2;
}

.bio-section::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background: #6b8e23;
  border-radius: 50%;
  box-shadow: 30px 0 0 #90ee90, 60px 0 0 #6b8e23, 90px 0 0 #90ee90;
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2.5em;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 1.1em;
  }

  .photo-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main-photo,
  .secondary-photo {
    max-width: 90%;
  }

  .bio-section {
    padding: 25px;
  }

  .bio-section h2 {
    font-size: 1.8em;
  }

  .bio-content p {
    text-align: left;
  }

  .navigation-links {
    padding: 25px;
  }
} 