* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Softened: Very subtle, cool white gradient for a cleaner look */
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  overflow-x: hidden;
  line-height: 1.6;
  color: #334155; /* Keep dark blue-gray for general text */
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Default Headings and Paragraphs (General page elements) */
h1, h2, h3, h4, h5, h6 {
    color: #2d3748; /* Softer dark tone for all general headings */
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}
p {
    margin-bottom: 1em;
}

/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(239, 68, 68, 0.15); /* Keep accent color */
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}


/* --- Featured Event Section Enhancements (Modified) --- */

.featured-event {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%); /* Keep light gradient background for this section */
    overflow: hidden;
}

.featured-content {
    text-align: center;
    margin-bottom: 40px;
}

.featured-badge {
    display: inline-block;
    background: #FFD700; /* Gold-like color for the badge */
    color: #333;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-title {
    font-size: 2.8em;
    color: #2d3748; /* CHANGED: Softer dark tone, less prominent than pure black */
    margin-bottom: 10px;
    font-weight: 800;
}

.featured-subtitle {
    font-size: 1.1em;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Card - The main container for image and info */
.featured-card {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Featured Hero - Image and Overlay Container */
.featured-hero {
    position: relative;
    flex: 1;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 25px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.featured-card:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff; /* Kept white for optimal readability on dark overlay */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-date {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.hero-name {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-location {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Featured Info - The right-hand side with price and CTA */
.featured-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.price-section {
    text-align: center;
    margin-top: auto;
}

.price-label {
    font-size: 1em;
    color: #667085;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #ef4444; /* Your brand's red color */
    margin-bottom: 20px;
}

.featured-cta {
    display: inline-block;
    background: #ef4444; /* Your brand's red color */
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.featured-cta:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .featured-card {
        flex-direction: column;
        max-width: 500px;
    }

    .featured-hero {
        min-height: 250px;
        padding: 20px;
    }

    .hero-name {
        font-size: 1.8em;
    }

    .featured-info {
        padding: 25px;
    }

    .price-amount {
        font-size: 2em;
    }

    .featured-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .featured-event {
        padding: 40px 0;
    }
    .featured-title {
        font-size: 1.8em;
    }
    .featured-subtitle {
        font-size: 0.95em;
    }
    .hero-name {
        font-size: 1.5em;
    }
    .hero-date, .hero-location {
        font-size: 0.9em;
    }
    .featured-cta {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}

/* --- HERO CONTENT NAVBAR OFFSET FOR DESKTOP --- */
.hero-content {
  position: relative !important;
  top: unset;
  margin-top: 0;
  padding-top: 0px; /* Adjust to match your navbar height */
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  z-index: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 70px;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding-top: 90px;
    max-width: 99vw;
  }
}