/* Reset & Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7;
  font-weight: 500;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header & Navigation */
header {
  background-color: #301400;
  color: #b89141;
  padding: 10px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-width: 150px;
}
nav {
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #b89141;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f7f7f7;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #b89141;
  margin: 4px;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  background: rgba(184, 145, 65, 1) url("hero-bg.jpg") no-repeat center
    center/cover;
  background-blend-mode: luminosity;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 20, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.btn {
  background-color: #b89141;
  color: #301400;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #f7f7f7;
}

/* Sections */
section {
  padding: 60px 0;
  background-color: #dbceb3;
}
section:nth-of-type(even) {
  background-color: #fff;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #301400;
}
.about p,
.about ul {
  margin-bottom: 15px;
}
.about ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.program {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.program h3 {
  margin-bottom: 10px;
  color: #301400;
}

/* Achievements Section */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.achievement {
  background: #b89141;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.achievement h3 {
  margin-bottom: 10px;
}

/* Library Section Styles */
.library {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  background-color: #dbceb3;
}
.library h2 {
  color: #301400;
  margin-bottom: 20px;
}
.library p {
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}
.library-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.btn-library {
  background-color: #301400;
  color: #b89141;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn-library:hover {
  background-color: #5a2e0a;
}

/* Support & Contributions Section Styles */
.contributions {
  background-color: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}
.contributions h2 {
  color: #301400;
  margin-bottom: 20px;
}
.contributions p {
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.5;
}
.btn-contribute {
  background-color: #b89141;
  color: #301400;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn-contribute:hover {
  background-color: #f7f7f7;
  color: #301400;
}

/* Contact Section */
.contact-info address {
  font-style: normal;
  margin-bottom: 15px;
}
.contact-info p {
  margin-bottom: 10px;
}
.social-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #301401;
  color: #b89141;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s;
}
.social-links a:hover {
  background: #5a2e0a;
}
.social-links img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Footer */
footer {
  background-color: #301400;
  color: #b89141;
  text-align: center;
  padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    text-align: center;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-active {
    display: flex;
  }
  .hero {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  footer {
    font-size: 0.8rem;
  }
}
