@charset "utf-8";
/* -------------------------- */
/* ROOT COLORS AND RESET */
/* -------------------------- */
:root {
  --forest: #3a4f3f;
  --moss: #6b8e6e;
  --acorn: #8b5e3c;
  --cream: #f5f1ea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  line-height: 1.6;
  background: #F4F6F5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* -------------------------- */
/* HEADER & NAVIGATION */
/* -------------------------- */
.site-header {
  background: var(--forest);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease forwards;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* NAVIGATION */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: #3E6B55;
}

.main-nav a.active {
  background: #F4A261;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* -------------------------- */
/* HERO SECTION */
/* -------------------------- */
.hero {
  max-width: 1100px;
  margin: 80px auto 40px;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: var(--forest);
  margin-bottom: 20px;
  animation: fadeIn 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.5s;
}

.hero-mascot {
  max-width: 300px;
  width: 100%;
  margin: auto;
  display: block;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.3));
  animation: float 3s ease-in-out infinite;
}

/* -------------------------- */
/* CARDS */
/* -------------------------- */
.card {
  background: #FFF;
  padding: 25px;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* -------------------------- */
/* DONATION BUTTON */
/* -------------------------- */
.btn-donate {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #F4A261, #E76F51);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-donate:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* -------------------------- */
/* CONTACT FORM */
/* -------------------------- */
.contact-form {
  background: #FFF;
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #CCC;
  width: 100%;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #3E6B55;
}

/* -------------------------- */
/* FOOTER */
/* -------------------------- */
.site-footer {
  text-align: center;
  padding: 25px;
  background: var(--forest);
  color: white;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  animation: fadeInFooter 1s ease forwards;
}

/* -------------------------- */
/* MOBILE NAVIGATION */
/* -------------------------- */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 220px;
    background: var(--forest);
    padding: 0 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: -4px 6px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .main-nav ul.show {
    max-height: 500px; /* Enough to show all links */
    padding: 20px;
  }

  .main-nav ul li {
    margin: 10px 0;
    opacity: 0;
    animation: fadeInLink 0.3s ease forwards;
  }

  .main-nav ul.show li {
    opacity: 1;
    animation-delay: 0.1s;
  }
}

/* -------------------------- */
/* ANIMATIONS */
/* -------------------------- */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideDown {
  0% { transform: translateY(-80px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInFooter {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLink {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

