/* Hero Banner */
.hero-banner {
    background: url('../assets/BackgroundAll.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px; /* Fixed Height */
}
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
@media (min-width: 769px) {
    .hero-banner {
        height: 700px; /* Updated height for larger screens */
    }
}
@media (max-width: 768px) {
    .hero-banner {
        height: 350px; /* Updated height for smaller screens */
    }
}
/* Section Styles */
section {
    padding: 40px 20px;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #f1bb65; /* Gold */
}
.hero-content p {
    font-size: 20px;
    color: #fff9e3; /* Cream */
}

/* Event List */
.events-list {
    padding: 40px 20px;
}
.events-list h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #5e0c4a;
}
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.event-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.event-card h3 {
    color: #5e0c4a;
    margin-bottom: 10px;
}
.event-card p {
    margin: 5px 0;
}
.event-card .btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #f1bb65;
    color: #5e0c4a;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}
.event-card .btn:hover {
    background-color: #e0a84e; /* Darker Gold */
}

/* Event Calendar */
.event-calendar {
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light grey for contrast */
}
.event-calendar h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #5e0c4a;
}
.calendar-item {
    margin-bottom: 20px;
    padding: 10px;
    background: white;
    border-left: 5px solid #5e0c4a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.calendar-item h4 {
    margin: 0;
    color: #5e0c4a;
}
.site-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }
  
  .site-credit a {
    color: #FFA725;
    text-decoration: none;
  }
  
  .site-credit a:hover {
    text-decoration: underline;
  }
  
  .site-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }
  
  .site-credit a {
    color: #FFA725;
    text-decoration: none;
  }
  
  .site-credit a:hover {
    text-decoration: underline;
  }
  