/* CSS style file */
body {
  background-color: #f8f8f8;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.02) 25%, transparent 25%),
                    linear-gradient(-45deg, rgba(0,0,0,0.02) 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.02) 75%),
                    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.02) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #156849;
}

li {
  float: left;
}

li a {
  display: block;
  color: rgb(169, 146, 13);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 120%;
  font-weight: bold;
}

a:hover:not(.active) {
  background-color: #575656;
}

.active {
  background-color:#C0C0C0;
}


header {
    /*background-image: url("chialpha_photo.jpeg");   Replace with your image path */
    background-size: cover;  /* Resize image to fit the header */
    background-position: center;  /* Center the image in the header */
    display: flex;
    flex-direction: column;
    padding: 20px;  /* Add some padding for content */
    color: black;  /* Text color to be visible on the background image */
    text-align: center;  /* Center the content in the header */
    height: 300px;   /* Adjust the height of the header */
}

  
h1 {
    margin-top: 20px;
    font-size: 75px;
}

h2 {
    margin-top: 10px;
    font-size: 25px;
    text-align: left;
}

h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: right;
}

h4 {
    margin-top: 75px;
    font-size: 50px;
    margin-bottom: 15px;
    text-align: center;
}

p {
    margin-top: auto;
    text-align: left;
    font-size: 20px;
    text-indent: 25px;
    margin-bottom: 50px;
    margin-left: 40px;
    margin-right: 40px;
}

h5 {
    margin-top: 20px;
    text-align: left;
    font-size: 20px;
    text-indent: 25px;
    margin-bottom: 50px;
    margin-right: 150px;
}

footer {
    bottom: 0;
    left: 0;
    width: 100%;
    
    background-color: #a8a8a8; /* softer dark gray */
    color: #1a1a1a;; /* light text for contrast */
    text-align: center;
    padding: 20px;
}
 
/* ============= Events Page Styling ============ */
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Side by side if space, stack if not */
  gap: 20px;
  padding: 20px;
}

/* Events page card styling */
.event-card {
  background-color: #f0f0f0; /* Light gray background */
  border-left: 5px solid #156849; /* Accent color bar */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow */
  transition: transform 0.2s, box-shadow 0.2s; /* Hover effect */
}

.event-card:hover {
  transform: translateY(-5px); /* Lift on hover */
  box-shadow: 0 8px 12px rgba(0,0,0,0.15); /* Slightly bigger shadow */
}

.event-card h2 {
  color: #156849; /* Your accent color */
  margin-bottom: 5px;
}

.event-date {
  display: inline-block;
  border: 1px solid #156849;
  color: #156849;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  margin-bottom: 6px;
}

.event-location {
  display: inline-block;
  background-color: #e0f0e9; /* light greenish background */
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* Optional: adjust padding on smaller screens */
@media (max-width: 500px) {
  .event-card {
    padding: 15px;
  }
}

/* ============= Involved Page Styling ============ */
.get-involved-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px; /* space between sections */
}

.involvement-intro p {
  font-size: 20px;
  text-align: center;
  color: #555; /* slightly darker gray for readability */
  max-width: 800px;
  margin: 0 auto;
}

.involve-section {
  background-color: #f5f5f5; /* light gray background for sections */
  border-left: 6px solid #156849; /* your accent color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.involve-section h2 {
  color: #156849;
  margin-bottom: 10px;
}

.involve-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #a8960d; /* gold accent */
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #856f09; /* slightly darker gold on hover */
}

@media (max-width: 600px) {
  .get-involved-container {
    padding: 20px;
    gap: 40px;
  }
}

/* ============= Contact Us Page Styling ============ */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.contact-card {
  background-color: #f4f4f4;
  border-left: 5px solid #156849; /* green accent */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.12);
}

.contact-card h2 {
  color: #156849;
  margin-bottom: 8px;
}

.contact-card a {
  color: #156849;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

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

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Facebook style */
.social-icon.fb {
  background-color: #156849;
  color: #f0f0f0; /* lighter gray so "FB" is visible */
}

/* Instagram style */
.social-icon.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #f0f0f0;
}

/* ============= Blog Page Styling ============ */
.blog-post {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-post h2 {
  font-size: 28px;
  color: #2f4f4f;
  margin-bottom: 5px;
}

.blog-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-post p {
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.blog-author {
  color: #555;
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  text-align: right;
}