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

  /* 
  red = #e63b40
  orange = #f89537
  yellow = #ff8535
  brown = #471c0d
  */
  
  /* Fonts & Colors — web-safe */
  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    background-color: #fffdf9;
    scroll-behavior: smooth;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #f04e31;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Hero */
  .hero {
    height: 95vh;
    background: url("images/oct24_3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #222;
  }
  
  .hero-content {
    max-width: 400px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  
  .hero p {
    margin-bottom: 17rem;
    font-size: 1.2rem;
  }
  
  .btn {
    display: inline-block;
    background: #ffd400;
    color: #222;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .btn:hover {
    background: #ffca00;
  }
  
  /* Sections */
  .section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .section h2 {
    color: #f04e31;
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  .section h3 {
    margin-bottom: 1rem;
  }
  
  .section p {
    /* max-width: 700px; */
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .placeholder-img {
    width: 60%;
  }

  .alternate {
    background-color: #ffac06;
  }

  .alternate h2 {
    color: #471c0d;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  /* Events */
  .event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .event-card {
    background: #fff3e6;
    border: 1px solid #f04e31;
    border-radius: 8px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .event-card h3 {
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    background: #f04e31;
    color: white;
    text-align: center;
    padding: 1rem;
  }

  .split-section {
    display: flex;
    width: 100%;
    min-height: 400px; /* allows growth if needed */
}

.split-image {
    flex: 1;
    background: url("images/oct24_4.jpg");
    background-size: cover;
    background-position: center;
}

.split-image2 {
  flex: 1;
  background: url("images/oct24_2.jpg"); 
  background-size: cover;
  background-position: center;
}

.split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.split-content h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Ensure stacking on mobile */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-image {
        height: 250px; /* fixed height only for mobile image */
    }

    .split-content {
        padding: 30px;
    }
}
