:root {
  --primary-color: #E85A24;
  --primary-dark: #C74A14;
  --secondary-color: #2D5016;
  --accent-color: #5A8F3E;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F8F8F8;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
}

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

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.logo-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #1F3A0F;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://foodandfriends.org/wp-content/uploads/2024/01/RalphAlswang_0232-1-scaled.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-color);
}

.hero-buttons .btn-outline {
  border-color: white;
  color: white;
}

.hero-buttons .btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

.stats-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.stat-item p {
  font-size: 16px;
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.card-content .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.programs-section {
  background-color: var(--bg-white);
}

.program-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.program-item:nth-child(even) {
  flex-direction: row-reverse;
}

.program-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.program-content {
  flex: 1;
}

.program-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.program-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.program-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.program-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.program-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn-secondary {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .btn-secondary:hover {
  background-color: var(--bg-light);
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #AAA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #AAA;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.page-header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://foodandfriends.org/wp-content/uploads/2024/01/RalphAlswang_0232-1-1024x683.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.content-section h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.content-section p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.content-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 15px;
}

.contact-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-item {
  background-color: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.news-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background-color: var(--bg-light);
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--border-color);
}

.faq-answer {
  padding: 20px;
  display: none;
}

.faq-answer.active {
  display: block;
}

.event-card {
  display: flex;
  gap: 30px;
  background-color: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.event-date-box {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  text-align: center;
  min-width: 120px;
}

.event-date-box .day {
  font-size: 36px;
  font-weight: 700;
}

.event-date-box .month {
  font-size: 16px;
}

.event-content {
  padding: 30px;
  flex: 1;
}

.event-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.event-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-member p {
  color: var(--text-light);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.timeline-year {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  nav ul.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .program-item,
  .program-item:nth-child(even) {
    flex-direction: column;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date-box {
    min-width: auto;
  }

  .stat-item h3 {
    font-size: 36px;
  }
}
