:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7be8322 *//* Full-width header section */
.luc-events-header {
  width: 100vw; /* full viewport width */
  margin: 0; /* remove spacing */
  padding: 0; /* remove spacing */
  height: 400px;
  position: relative;
  background: url('https://loudurbanchoir.com/wp-content/uploads/2025/11/IMG_1375.JPEG-scaled.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Gradient overlay on top of image */
.luc-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(146,43,7,0.7) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

/* Content sits above overlay */
.luc-header-content {
  position: relative;
  z-index: 2;
  padding: 0 20px; /* optional horizontal padding */
}

.luc-header-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'inter';
}

.luc-header-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ddd;
  font-family: 'inter';
}

.luc-header-btn {
  padding: 12px 25px;
  background: #fff;
  color: #922b07;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.luc-header-btn:hover {
  background: #b5400a;
  color: #fff;
}

/* Responsive text */
@media (max-width: 768px) {
  .luc-header-content h1 { font-size: 36px; }
  .luc-header-content p { font-size: 16px; }
}

@media (max-width: 480px) {
  .luc-header-content h1 { font-size: 28px; }
  .luc-header-content p { font-size: 14px; }
}

/* Elementor overrides to remove padding/margin from container */
.elementor-section .elementor-container,
.elementor-column .elementor-widget-wrap {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e5344c3 */.luc-events-section {
  width: 100%;
  padding: 60px 20px;
  background: #fdfdfd; /* white/light background */
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.luc-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.luc-section-header h1 {
  font-size: 45Px;
  font-weight: 800;
  color: #922b07; /* primary color highlight */
  margin-bottom: 10px;
  font-family: 'inter';
}

.luc-section-header p {
  font-size: 18px;
  font-family: 'inter';
  color: #333; /* dark gray for contrast */
}

/* EVENTS GRID */
.luc-events-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 25px;
}

/* EVENT CARD */
.luc-event-card {
  background: #fff; /* white card */
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1); /* subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luc-event-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.luc-event-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 15px;
  filter: brightness(0.95);
}

.luc-event-card h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'inter';
  margin-bottom: 5px;
  color: #000; /* dark text for contrast */
}

.event-date, .event-venue {
  display: block;
  font-size: 14px;
  color: #555; /* medium gray */
}

.event-desc {
  margin: 12px 0;
  font-size: 14px;
  color: #333; /* readable against white */
}

.luc-event-card .luc-btn {
  padding: 10px 20px;
  border-radius: 5px;
  background: #922b07; /* primary color button */
  color: #fff;
  font-weight: 600;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.luc-event-card .luc-btn:hover {
  background: #b5400a; /* slightly brighter shade on hover */
  color: #fff;
}

/* View Past Events Button */
.luc-archive-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.luc-archive-btn {
  padding: 12px 30px;
  background: #922b07; /* primary color */
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.luc-archive-btn:hover {
  background: #b5400a; /* hover effect */
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .luc-events-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .luc-events-wrapper { grid-template-columns: 1fr; }
}/* End custom CSS */