 body {
      font-family: Arial, sans-serif;
      background: #f8f9fa;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #A51313;
       display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
     
        color: white;
        position: relative;
        flex-wrap: wrap;
    }

    .container {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .event {
      background-color: white;
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: box-shadow 0.3s ease;
    }

    .event:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .event h2 {
      margin: 0.5rem 0 0.25rem;
      color: #333;
    }

    .event p {
      margin: 0.5rem 0 0;
      color: #666;
    }

  /* This is now only for the main banner/event image */
.event-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: block;
}

/* This is for the small inline calendar icon */
.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.4em;
}

    .date {
      font-weight: bold;
      color: #007bff;
    }
/* Logo */
.logo {
    max-width: 80px;
}

/* Mobile menu toggle (hamburger icon) */
.menu-toggle {
     display: none;
        font-size: 2rem;
        cursor: pointer;
        color: white;
}

/* Navigation menu */
nav {
   display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.header-cta {
  background-color: #fff;
  color: #A51313;

        border: none;
        padding: 8px 18px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    
    background-color: #A51313;
     display: none;
            flex-direction: column;
            
            position: absolute;
            top: 70px;
            right: 0;
            width: 100%;
            padding: 20px;
            z-index: 1000;
  }

  nav.active {
    display: flex;
  }

}


    @media (max-width: 600px) {
      .event {
        padding: 1rem;
      }
    }