
:root {
    /* Colors */
    --primary-purple: #5b005d;
    --dark-bg: #121927;
     --light-bg: #ffffff;
    --text-light: #ffffff;
    --bg-muted: #f7f6f6;
    --accent-gold: #FDCC0D;
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}




.service-hero {
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.service-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 20px;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

/* Optional container width */
.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* ========================= */
.featured-event{
    width:100%;
    padding:60px 5%;
    background:#f8f8f8;
}

/* Split Container */
.event-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:420px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* Image Side */
.event-image{
    background:url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3') center/cover no-repeat;
    filter: brightness(0.9);
}

/* Content Side */
.event-content{
    background:var(--primary-purple);
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Badge */
.badge{
    display:inline-block;
    background:var(--accent-gold);
    color:var(--dark-bg);
    padding:6px 16px;
    border-radius:20px;
    font-weight:700;
    font-size:14px;
    width:max-content;
    margin-bottom:20px;
}

/* Title */
.event-title-3{
    font-family: serif;
    font-size:40px;
    color:white;
    margin-bottom:25px;
}

/* Event Info */
.event-info p{
    color:white;
    font-size:16px;
    margin:6px 0;
}

.event-info i{
    margin-right:10px;
}

/* Description */
.event-description-3{
    color:white;
    font-family:sans-serif;
    margin-top:25px;
    line-height:1.6;
    max-width:90%;
}

/* Responsive */
@media(max-width:900px){
    .event-container{
        grid-template-columns:1fr;
    }

    .event-title{
        font-size:34px;
    }

    .event-content{
        padding:40px 30px;
    }
}





/* ========= */
.events-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.event-title {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  color: #333;
  margin: 0 0 12px 0;
}

.event-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 0.85rem;
  color: #666;
}

.event-meta li {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}




/* ============= */
.newsletter-section {
  background-color: #F8F5FF; /* Pale lavender background */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-heading {
  font-family: 'Georgia', serif; /* Serif font for the question */
  font-size: 2rem;
  color: #1A1A2E; /* Deep navy/black */
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-subtext {
  font-size: 1rem;
  color: #555577; /* Muted slate blue */
  margin-bottom: 30px;
  line-height: 1.5;
}

.newsletter-button {
  display: inline-block;
  background-color: #9D39EF; /* Vibrant purple button */
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(157, 57, 239, 0.3);
}

.newsletter-button:hover {
  background-color: #8327D8;
  transform: translateY(-2px);
}