:root {
  --color-primary: #00715d;
  --color-background: #efe0ae;
  --color-text: #333333;
  --color-border: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  line-height: 1.5;
  color: var(--color-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar Styles */
.top-bar {
  padding: 0.5rem 0;
  /* background-color: var(--color-background); */
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 1;
}

/* Main Navigation Styles */
.main-header {
  padding: 0rem 0;
  /* background-color: var(--color-background); */
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.5rem;
}
.logo img {
  width: 70px;
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.donate-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.donate-btn:hover {
  background-color: #006c5d;
}
.navbar-toggle {
  padding: 0.675rem 1rem;
  display: none;
}
/* Hero Section Styles */
.hero {
  padding: 2rem 0;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  background-color: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h2 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: #666;
  margin-bottom: 2rem;
}

.supporters {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.supporter-avatars {
  align-items: center;
  gap: 20px;
}
.supporter-avatars {
  font-size: 1rem;
}

.supporter-count {
  background-color: var(--color-primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-images {
  position: relative;
  width: 100%;
  transition: transform 0.2s ease;
  will-change: transform;
}

/* .image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
} */

.hero-images img {
  width: 100%;
  height: 500px;
  border-radius: 0.5rem;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-primary);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  width: fit-content;
}
.play-btn:hover {
  background-color: #006c5d;
}

.play-label {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.hero p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.focus-areas {
  padding: 4rem 0;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/*About Section */
.about-section {
  padding: 5rem 0;
  background-color: #f9f5e8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.subtitle {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-content p {
  font-size: 1.125rem;
  color: var(--color-text);
  opacity: 0.9;
}

.about-image {
  position: relative;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 350px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 2rem;
  }

  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .text-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}
/* Focus Section*/
.focus-areas {
  padding: 4rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card-grid .card {
  background-color: #006c5d;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2.2rem;
  text-align: start;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-grid .card:hover {
  transform: translateY(-5px);
}
.card-grid .card svg {
  color: #fff;
  margin-bottom: 1rem;
}
.card-grid .card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/*impact section */

.impact-snapshot {
  padding: 80px 0;
  background-color: #f9f5e8;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.impact-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.impact-icon {
  background-color: var(--color-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.impact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.impact-description {
  font-size: 1rem;
  color: #666;
}
.active {
  color: #006c5d;
  border-bottom: 2px solid #006c5d;
  padding-bottom: 10px;
}

/* Section  Styles */
/* Section Intro Styles */
.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-intro p {
  color: var(--color-text-muted);
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.multimedia-grid {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  max-width: 1000px;
}

/* Card Styles */
.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.icon-wrapper {
  background-color: rgba(0, 131, 116, 0.1);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.card-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Button Styles */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #006c5d;
}

.btn svg {
  flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .section-intro h2 {
    font-size: 1.75rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }

  .header h1 {
    font-size: 1.75rem;
  }

  .section-intro h2 {
    font-size: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
  }

  .icon-wrapper {
    margin: 0 auto;
  }
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*Blog section*/
.blog-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.subtitle {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}

.card-image {
  border-radius: 0.5rem;
  position: relative;
  height: 250px;
}

.card-image img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #006c5d;
  padding: 0.25rem 1.5rem 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.card-content {
  padding-top: 1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-content h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.card-content h3 a:hover {
  color: var(--color-primary);
}

.card-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.read-more,
.donate-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 30px;
}

.read-more:hover {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 2rem 0;
  }

  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .impact-snapshot {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .impact-snapshot {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .impact-card {
    padding: 20px;
  }

  .impact-number {
    font-size: 2rem;
  }

  .impact-title {
    font-size: 1.1rem;
  }
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .cta-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
  .logo span,
  .donate-btn {
    display: none;
  }
}

/*contact section*/
.contact-section {
  padding: 4rem 0;
}
/* Contact Info Bar Styles */
.contact-info-bar {
  padding: 2rem 0;
  margin-bottom: 4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: #006c5d solid 2px;
  padding-left: 10px;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Main Content Styles */
.contact-section {
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  width: 90%;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.submit-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: fit-content;
}

.submit-btn:hover {
  background-color: #006c5d;
}

/* Map Styles */
.map-wrapper {
  height: 100%;
  min-height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 400px;
  }

  .contact-info-bar {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding-bottom: 2rem;
  }

  .submit-btn {
    width: 100%;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }
}

/*About section*/
.organization-description {
  background-color: var(--color-secondary);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mission,
.vision {
  background-color: #006c5d;
  padding: 2rem;

  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.core-values h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.value-card {
  background-color: #006c5d;
  padding: 2rem;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .organization-description,
  .mission,
  .vision,
  .value-card {
    padding: 1rem;
  }
}
/*Programs section*/
.programs-top {
  background-color: var(--color-primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.program {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.program:nth-child(even) {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.program-content {
  flex: 1;
  padding: 0 2rem;
}

.get-involved {
  background-color: var(--color-secondary);
  padding: 4rem 0;
}

.involvement-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.involvement-option {
  flex-basis: calc(33.333% - 2rem);
  margin: 0.5rem;
  padding: 5rem;
  background-color: #006c5d;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .program {
    flex-direction: column;
    padding: 2rem;
  }

  .program:nth-child(even) {
    flex-direction: column;
  }

  .program-image {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .program-content {
    padding: 0;
  }

  .involvement-option {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .involvement-option {
    flex-basis: 100%;
  }
}

/*Event section*/
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* Countdown Styles */
.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.countdown-item {
  background-color: var(--color-primary);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 80px;
}

.countdown-item .number {
  font-size: 1.5rem;
  font-weight: bold;
}

.countdown-item .label {
  font-size: 0.875rem;
}

/* Social Share Styles */
.social-share {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background: none;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.2s;
}

.share-button:hover {
  background-color: #f5f5f5;
}

/* Campaign Content Styles */
.campaign-content {
  color: var(--color-text);
}

.campaign-content h1 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.campaign-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Sidebar Styles */
.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Event List Styles */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: flex;
  gap: 1rem;
}

.event-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.event-details time {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.event-details h3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Tags Styles */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #f5f5f5;
  color: var(--color-text);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .countdown-item {
    flex: 1;
    min-width: 60px;
  }

  .container {
    padding: 1rem;
  }

  .campaign-content h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-item {
    min-width: calc(50% - 0.5rem);
  }

  .social-share {
    justify-content: center;
  }
}
/*Blog details sections*/
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.main-content .hero-image {
  position: relative;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.main-content .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign-description {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Quote Section */
.quote-section {
  margin-bottom: 2rem;
}

blockquote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background: none;
  color: var(--color-text);
  cursor: pointer;
}

.button-group {
  display: flex;
  gap: 0.5rem;
}

/* Cards */
.sidebar .card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: #000;
}

/* Form Elements */
.select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  min-height: 100px;
  resize: vertical;
}

/* Post List */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.avatar.large {
  width: 4rem;
  height: 4rem;
}

.post-item time {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.post-item p {
  font-weight: 500;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #f5f5f5;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* Author Profile */
.author-profile {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-share {
  display: flex;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }

  .button-group {
    flex-direction: column;
  }

  .social-share {
    justify-content: center;
  }
}
/* Footer Section */
.footer {
  background-color: #000;
}
.footer-nav {
  padding: 1rem 0;
}
.nav-wrapper {
  border-bottom: 1px solid gray;
  padding-bottom: 20px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer Content */
.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Contact Info */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.footer .contact-info svg {
  color: #fff;
}

/* Project Cards */
.project-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
}

.project-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-info .date {
  color: #fff;
  font-size: 0.875rem;
}

.project-info h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Footer Section */
.footer-bottom {
  padding: 1.5rem 0;
}
.bottom-wrapper {
  border-top: 1px solid gray;
  padding-top: 20px;
}

.bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-wrapper p {
  color: #fff;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-links a {
  color: #fff;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .navbar-toggle {
    display: block;
  }
  /* .donate-btn {
    display: none;
  } */
  .logo span {
    display: none;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-nav {
    gap: 1rem;
  }

  .project-card {
    flex-direction: column;
  }

  .project-card img {
    width: 100%;
    height: 200px;
  }
}

/* Navbar toggle button (hamburger) */
.navbar-toggle {
  padding: 0.675rem 1rem;
  display: none;
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none; /* Hide menu by default on mobile */
    flex-direction: column;
    background-color: #006c5d;
    width: 100%;
    position: absolute;
    top: 200px; /* Adjust position */
    left: 0;
    z-index: 210000;
    padding: 1rem 0;
  }
  .navbar-toggle {
    display: block;
  }

  .donate-btn {
    display: none;
  }
  .nav-links.show {
    display: flex; /* Show the links when 'show' class is added */
  }
  .nav-links li a {
    text-align: center;
    width: 100%;
    color: #fff;
    margin-left: 20px;
  }
  .active {
    border-bottom: #000 solid 2px;
  }
  .nav-links li a:hover {
    color: #000;
  }
}
