.hero-banner {
  /*background: url('images/logo.jpg') no-repeat center center/cover;*/
  background-color: var(--accent-color);
  height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.916), rgba(0, 0, 0, 0.432))
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Top Buttons */
.top-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    }

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-outline {
    background-color: white;
    border: 1px solid #ccc;
}

    /* Layout */
.container {
   display: flex;
   gap: 20px;
   align-items: first baseline;
   padding: 60px;
   color: var(--text-color2);
}

.left-section {
  flex: 2; /* wider than right */
}

.left-section h2 {
  margin: 0 0 12px 0; /* spacing below heading */
  font-size: 22px;
}

.card {
   background: white;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 6px rgba(0,0,0,0.1);
   flex: 2;
}

.card2 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1;
    width: 60px;
    flex: 1;
    }

.card h2 {
    margin-top: 0;
    font-size: 22px;
}

.event {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.event h3 {
    margin: 0;
    font-size: 16px;
    color: var(--accent-color);
}

.event p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.event a {
    font-size: 14px;
    color: var(--accent-color);
    text-decoration: none;
}

.event a:hover {
    text-decoration: underline;
}

h2{
    padding: 20px;
}
  
