/* Events Page Styles */
.events-page {
    min-height: 100vh;
    background-color: #f9fafb;
  }
  #main-wrap {
    padding: 0 !important;
  }
  
  /* Hero Section */
  .hero-section {
    background-color: #5c7064;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 5%;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
  }
  
  .hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 512px;
    margin: 0 auto;
  }
  
  /* Featured Events Section */
  .featured-events-section {
    padding: 64px 0;
    background-color: white;
  }
  
  .featured-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .featured-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
  }
  
  .featured-event-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-event-card:hover .event-image img {
    transform: scale(1.05);
  }
  
  .event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .event-badge.green {
    background-color: #5c7064;
    color: white;
  }
  
  .event-badge.red {
    background-color: #ef4444;
    color: white;
  }
  
  .event-badge.blue {
    background-color: #3b82f6;
    color: white;
  }
  
  .event-content {
    padding: 24px;
  }
  
  .event-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .event-type {
    background-color: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .event-date {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .event-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }
  
  .featured-event-card:hover .event-content h3 {
    color: #5c7064;
  }
  
  .event-content p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .event-location {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 20px;
  }
  
  .location-icon {
    margin-right: 4px;
  }
  
  .event-btn {
    display: block;
    width: 100%;
    background-color: #5c7064;
    color: white;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .event-btn:hover {
    background-color: #4a5d52;
    text-decoration: none;
    color: white;
  }
  
  /* Stats Section */
  .stats-section {
    background-color: white;
    padding: 48px 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #5c7064;
    margin-bottom: 8px;
  }
  
  .stat-label {
    color: #6b7280;
    font-size: 1rem;
  }
  
  /* Events by Location */
  .events-by-location {
    padding: 64px 0;
  }
  
  .locations-grid {
    display: grid;
    gap: 32px;
  }
  
  .location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .location-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .location-header {
    background: linear-gradient(135deg, #5c7064 0%, #6b7f73 100%);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .location-header h3 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
  }
  
  .location-icon {
    margin-right: 12px;
  }
  
  .event-count {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
  }
  
  .location-events {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
  }
  
  .event-item {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .event-item:hover {
    border-color: #5c7064;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .event-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .event-icons {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .event-emoji {
    font-size: 1.5rem;
  }
  
  .featured-star {
    color: #fbbf24;
  }
  
  .event-type-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .event-badge-red {
    background-color: #fef2f2;
    color: #dc2626;
  }
  .event-badge-purple {
    background-color: #faf5ff;
    color: #9333ea;
  }
  .event-badge-orange {
    background-color: #fff7ed;
    color: #ea580c;
  }
  .event-badge-blue {
    background-color: #eff6ff;
    color: #2563eb;
  }
  .event-badge-green {
    background-color: #f0fdf4;
    color: #16a34a;
  }
  .event-badge-teal {
    background-color: #f0fdfa;
    color: #0d9488;
  }
  .event-badge-yellow {
    background-color: #fefce8;
    color: #ca8a04;
  }
  .event-badge-indigo {
    background-color: #eef2ff;
    color: #4f46e5;
  }
  .event-badge-gray {
    background-color: #f9fafb;
    color: #374151;
  }
  
  .event-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  
  .event-item:hover h4 {
    color: #5c7064;
  }
  
  .event-date-info {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .calendar-icon {
    margin-right: 4px;
  }
  
  /* Call to Action */
  .cta-section {
    background-color: #5c7064;
    padding: 64px 0;
    text-align: center;
    color: white;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
  }
  
  .cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 512px;
    margin: 0 auto 32px;
    line-height: 1.6;
    color: white;
  }
  
  .cta-button {
    display: inline-block;
    background-color: white;
    color: #5c7064;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #5c7064;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
      color: white;
    }
  
    .hero-section p {
      font-size: 1rem;
      color: white;
    }
  
    .featured-events-grid {
      grid-template-columns: 1fr;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .location-events {
      grid-template-columns: 1fr;
    }
  
    .location-header {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  
    .section-header h2 {
      font-size: 1.5rem;
      color: white;
    }
  
    .cta-section h2 {
      font-size: 1.5rem;
      color: white;
    }
  
    .cta-section p {
      font-size: 1rem;
      color: white;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
  
    .hero-section {
      padding: 60px 0;
    }
  
    .featured-events-section,
    .events-by-location {
      padding: 48px 0;
    }
  
    .event-content {
      padding: 20px;
    }
  
    .location-events {
      padding: 20px;
    }
  }

  .event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-event-card:hover .event-image img {
    transform: scale(1.05);
  }

  