
body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #222;
  background-color: #f8f8f8;
  line-height: 1.6;
  margin: 0;
}

header, nav, footer {
  background-color: #c48d34;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
}

nav a.active {
  border-bottom: 2px solid #de7418;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2 {
  color: #e9431e;
}

a {
  color: #0a0a0a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.9em;
  color: #070707;
}


.project-media {
  text-align: center; 
  margin: 20px 0;
}

.project-media img {
  width: 200px;       
  height: auto;        
  border-radius: 8px;   
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  display: inline-block;
}


/* Volunteer entries – logo left, text right */
.volunteer-entry {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.logo-container {
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.org-logo {
  max-width: 90px;
  height: auto;
  object-fit: contain;
}

.volunteer-text h3 {
  margin: 0 0 6px 0;
}

.volunteer-text p {
  margin: 4px 0;
}

/* Home page layout */
.home-main {
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hero-text {
  flex: 2 1 260px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #0b0000;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem 0;
}

.hero p {
  line-height: 1.6;
}


.hero-badges {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.85rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ffe4f0;
  color: #e9431e;
}

/* Buttons */
.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-primary {
  background: #e9431e;
  color: #fff;
}

.btn-primary:hover {
  background: #e9431e;
}

.btn-outline {
  border: 1px solid #e9431e;
  color: #762507;
}

.btn-outline:hover {
  background: #e9431e;
  color: #fff;
}


.hero-highlight {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  padding: 1.25rem 1.5rem;
}

.hero-highlight h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-highlight ul {
  padding-left: 1.1rem;
  margin: 0;
}


.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.home-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  padding: 1.25rem 1.5rem;
}

.home-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #e9431e;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}


@media (max-width: 700px) {
  .hero {
    flex-direction: column;
  }
}



.about-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}


.about-photo img {
  width: 220px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: white;
  object-fit: cover;
}


.about-text {
  max-width: 650px;
}

.about-text h2 {
  color: #e9431e; 
  margin-bottom: 1rem;
}

.about-text h3 {
  margin-top: 1.5rem;
}

.about-text ul {
  padding-left: 1.2rem;
}

.about-text li {
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-photo img {
    width: 180px;
  }

  .about-text {
    text-align: center;
  }
}
