* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Responsive Design for Navbar */
  .navbar {
    background-color: #333;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000; 
  }
  
  .branding {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .branding img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .club-name {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .menu-toggle {
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    display: none;
    cursor: pointer;
    margin-left: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background 0.3s, color 0.3s;
  }
  
  .nav-links li a:hover {
    background-color: #555;
    border-radius: 5px;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #444;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 10px 0;
      gap: 15px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
 /* For the announcement bar*/
  .announcement-bar {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 2px solid #333;
    font-family: Arial, sans-serif;
  }

  /* for the image container*/
  .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 1rem;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 10px;
  }
  /* For the about section*/
  .about-section {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
  }

  /* Responsive Design for Footer */
  
.footer {
  background-color: #111;
  color: white;
  padding: 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin-top: auto;
}

.footer h3 {
  margin: 20px 0 10px;
  font-size: 1.2em;
  color: white;
}

.footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.footer li {
  margin: 8px 0;
  color: white;
}

.footer a {
  text-decoration: none;
  color: orange;
  font-weight: bold;
}

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

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange;
}

/* Responsive */
@media (max-width: 600px) {
  .footer {
    font-size: 0.9em;
    padding: 15px;
  }

  .footer ul {
    padding: 0 10px;
  }

  .footer li {
    text-align: left;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .social-icons a {
    font-size: 1.3em;
  }
}
