* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
  }
  header {
    position: sticky;
    top: 0;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  header nav a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  header nav a:hover {
    color: #ff4081;
  }
  
  .hero {
    background: url('images/placeholder-hero1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  .hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px #000;
  }
  .hero-content p {
    font-size: 1.5rem;
    margin-top: 1rem;
    text-shadow: 1px 1px #000;
  }
  
  .about, .events, .contact {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .about img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-top: 1.5rem;
    border-radius: 10px;
  }
  
  .events .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .event-card {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .event-card h3 {
    margin: 1rem;
    color: #000;
  }
  .event-card p {
    margin: 0 1rem 1.5rem;
  }
  
  .contact {
    background: #000;
    color: #fff;
    text-align: center;
  }
  .contact a {
    color: #ff4081;
    font-weight: bold;
    text-decoration: none;
  }
  .contact a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    header nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 0.5rem;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .about, .events, .contact {
      padding: 2rem 1rem;
    }
  
    .event-card img {
      height: 150px;
    }
  }
    