:root {
  --roni-green: #2f6e2f;
  --roni-gold: #e9b949;
  --neutral-bg: #fafafa;
  --soft-gray: #f0f0f0;
  --text-color: #222;
  --accent-dark: #1f4d1f;
  --header-font: "Inter", sans-serif;
}

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

body {
  font-family: var(--header-font);
  background: var(--neutral-bg);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVIGATION */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: transparent;
}

.hero-nav img {
  height: clamp(40px, 8vw, 80px);
}

.hero-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-nav ul li a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.hero-nav div {
  display: flex;
  gap: 1rem;
}

.contact-btn,
.primary-btn {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.donate-btn {
  background: var(--roni-gold);
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
}

.large-btn {
  display: inline-block;
  margin: 2rem 0;
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.primary-btn:hover,
.contact-btn:hover {
  background: var(--roni-green);
}

.donate-btn:hover {
  background: #d9a83a;
}

/* HERO */
.hero-full {
  height: 100vh;
  background: url("pictures/home-banner.avif") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  position: relative;
}

.hero-center h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 3rem;
}

.hero-btn button {
  padding: 1rem 3rem;
  background: #e9b949;
  border: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

/* INTRO */
.intro-section {
  background: #fff8e1;
  padding: 5rem 1rem;
}

.intro-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.intro-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.intro-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.intro-text h3 {
  font-size: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.intro-text p {
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
}

.btn-center {
  margin-top: 3rem;
  text-align: center;
}

.intro-image {
  flex: 1 1 400px;
  max-width: 600px;
}

.placeholder-img {
  width: 100%;
  height: 500px;
  background: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
}

/* PROGRAMS */
.programs-section {
  padding: 5rem 1rem;
  background: white;
}

.programs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.program-card {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.program-img {
  width: 100%;
  height: 300px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.program-card p {
  font-size: 1.1rem;
}

/* SUPPORT */
.support-section {
  background: #fff8e1;
  padding: 6rem 1rem;
}

.support-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.support-img {
  flex: 1 1 500px;
  height: 500px;
  background: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.support-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.support-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: justify;
}

.sponsors {
  margin-top: 3rem;
  text-align: center;
}

.sponsors h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.sponsor-logos img {
  height: 60px;
}

/* FOOTER */
footer {
  background: #fdf6e3;
  padding: 5rem 1rem;
  color: #222;
  font-size: 0.95rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-grid p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.wide-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.wide-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
}
/* STAFF PAGE */
.staff-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.staff-section img {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.staff-bio {
  flex: 2 1 600px;
}

.staff-bio p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.education-box {
  background: #fff8e1;
  border-left: 6px solid var(--roni-gold);
  padding: 25px 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.education-box h3 {
  color: #2f6e2f;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.education-box ul {
  list-style: none;
  padding-left: 0;
}

.education-box li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}

.education-box li::before {
  content: "🎓";
  position: absolute;
  left: 0;
  top: 0;
}
/* RESPONSIVE NAV STACKING */
@media (max-width: 768px) {
  .hero-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-nav ul {
    justify-content: center;
  }
}
