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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #fffdfa;
  color: #333;
}

.site-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #7c0a02;
  color: white;
}

.logo1 {
  height: 70px;
  margin-right: 15px;
}

.site-title {
  font-size: 1.8rem;
}

.navigation-bar {
  background-color: #b31b1b;
}

.navigation-bar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation-bar li {
  margin: 0 10px;
}

.navigation-bar a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  transition: background-color 0.3s;
}

.navigation-bar a:hover {
  background-color: #ef4035;
}

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

.intro-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.beef-cattle-image {
  display: block;
  margin: 0 auto 20px;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.beef-club-text {
  text-align: center;
  font-size: 1.1rem;
  padding: 0 10px;
}

.footer {
  background: linear-gradient(135deg, #9e1b17, #b31b1b);
  color: white;
  padding: 40px 20px;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.2);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
  text-align: center;
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-section p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.logo2 {
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.5));
}

.contact-section .footer-link {
  display: inline-block;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.contact-section .footer-link:hover {
  color: #f0a500;
  text-decoration: underline;
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-section a img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
  transition: transform 0.2s ease;
}

.social-section a:hover {
  color: #f0a500;
}

.social-section a:hover img {
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-section .social-icons {
    justify-content: center;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation-bar ul {
    flex-direction: column;
  }

  .navigation-bar li {
    margin: 5px 0;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }
}

/* E-board Page Styles */

.intro-section p {
  text-align: center;
  font-size: 1.05rem;
  margin-top: 10px;
  color: #555;
}

.page-header {
  text-align: center;
  margin: 40px 0 30px;
  color: #7c0a02; /* matches your site-header background */
  font-weight: 700;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1.1rem;
  color: #555;
}

.board-container {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.board-member-card {
  background: white;
  border: 2px solid #b31b1b;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(179, 27, 27, 0.2);
  transition: box-shadow 0.3s ease;
}

.board-member-card:hover {
  box-shadow: 0 6px 15px rgba(179, 27, 27, 0.4);
}

.member-photo {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
  display: block;
  border-bottom: 2px solid #b31b1b;
}

.member-name {
  color: #b31b1b;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.member-position {
  font-size: 1rem;
  color: #7c0a02;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-info {
  list-style: none;
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
}

.member-info li {
  margin-bottom: 6px;
}

.member-description {
  font-size: 1rem;
  color: #333;
}

.member-info a {
  color: #b31b1b;
  text-decoration: none;
  font-weight: 500;
}

.member-info a:hover {
  text-decoration: underline;
  color: #7c0a02;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .board-member-card {
    padding: 15px;
  }

  .board-container {
    padding: 0 10px;
  }
}

.mission-goals-card {
  background: white;
  border: 2px solid #b31b1b;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(179, 27, 27, 0.2);
  transition: box-shadow 0.3s ease;
}

.goals-card li {
  margin-bottom: 10px;
}

.goals-card p {
  margin-bottom: 10px;
}

.goals-description {
  font-size: 1rem;
  color: #333;
}

.goals-bullet-points {
  margin-left: 20px;
}

.mission-goals-container {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

