/* Events Page Styles */
body {
  background-color: #fdf6ee;
}

/* Events Header Section */
.events-header-section {
  background-color: #f8f9fa;
  padding: 60px 0 30px;
  text-align: center;
}

.events-header-section h1 {
  color: #2277c9;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Events Filter Section */
.events-filter-section {
  padding: 30px 0;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sort-filter-group {
  margin-bottom: 15px;
}

.sort-filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.sort-filter-group select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
  min-width: 200px;
}

/* Event Cards */
.event-card {
  display: flex;
  background-color: #4CAF50; /* Green background */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  min-width: 150px;
  text-align: center;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month-year {
  font-size: 1.2rem;
  margin-top: 5px;
}

.event-content {
  flex: 1;
  padding: 25px;
  color: white;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-description {
  margin-bottom: 15px;
  line-height: 1.6;
}

.event-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.view-more-btn {
  display: inline-block;
  background-color: white;
  color: #4CAF50;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-filter-group {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .sort-filter-group select {
    width: 100%;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 15px;
    flex-direction: row;
    justify-content: center;
  }
  
  .event-date .day {
    font-size: 2rem;
    margin-right: 10px;
  }
  
  .event-content {
    padding: 20px;
  }
}
/* ... existing code ... */

/* Curved Footer Styles */
.curved-footer {
    position: relative;
    background-color: #5d4037; /* Brown background color */
    color: white;
    text-align: center;
    padding: 60px 0 30px;
    margin-top: 50px;
    overflow: hidden;
  }
  
  .curved-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fdf6ee; /* Match body background */
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
    transform: translateY(-50%);
  }
  
  .footer-logo {
    position: relative;
    margin-bottom: 15px;
  }
  
  .footer-logo img {
    height: 60px;
    width: auto;
  }
  
  .copyright-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
  }
  
  .contact-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .contact-link:hover {
    opacity: 1;
    text-decoration: underline;
  }