* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    color: #fff;
    background-image: url(about_hero_bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Navbar */
.navbar {
    background-color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    font-size:18px;
    padding-right: 300px;
}

/* Logo */
.logo {
    background-image: url(logo.png);
    width: 80px;
    height: 80px;
    background-size: cover;
    margin-left: 65px;
}
#jjjjj{
    font-size: 26px;
    padding-top: 20px;
    font-style: poppins;
}
/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    /* Space between items */
    padding: 0;
    margin: 0;
    align-items: center;
    padding-left: 200px;
    font-size: 23px;
}

#myevent {
    padding-left: 25px;
}

.hero a {
    text-decoration: none;
    color: white;
}
.about
#mylogina {
    padding-left: 300px;
}

#myteam {
    padding-left: 40px;
}

#myabout {
    padding-left: 40px;
}

#mycontact {
    padding-left: 40px;
}

/* Remove unnecessary ul inside nav-links */
.nav-links ul {
    display: none;
}

/* Ensure list items are inline */
.nav-links li {
    display: inline-block;
}

/* Navigation Links Styling */
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Fix alignment issues */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Centers nav links */
}
  /* Hero */
  .hero {
      text-align: center;
      padding: 4rem 1rem 2rem;
      height: 400px;
      background-image: url(about_hero_bg.jpeg);

  }

  .hero h2 {
      font-size: 50px;
      margin-bottom: 0.5rem;
      font-family: poppins;
  }

  .hero p {
      color: #ccc;
      font-size: 20px;
  }
  .ourevents{
    background-color: #171717;
    font-family: poppins;
    margin-top: 0;
  }
  .ourevents p{
    padding-left: 100px;
    font-size: 30px;
  }
  .ourevents h3{
    padding-left: 100px;
        font-size: 50px;
        font-family: poppins;
  }
  .content h1{
    font-size: 45px;
    font-family: poppins;
  }
  .content a{
    font-size: 25px;
  }
  .content a:hover{
    font-size: 28px;
    color: rgb(48, 131, 169);
  }
  .sponsors{
    margin-top: 10px;
  }
  .image-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      /* Space between rows */
      padding: 20px;
  }

  .image-row {
      display: flex;
      gap: 80px;
      /* Space between images */
  }

  .image-row img {
      width: 48%;
      /* Make images take almost half of the container */
      max-width: 500px;
      /* Prevents images from being too large */
      height: 500px;
      border-radius: 10px;
      /* Optional: Rounded corners */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      /* Optional: Shadow effect */
  }
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Full viewport height */
    height: 100px;
}

.register-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: #5CB338;
    /* Blue button */
    padding: 15px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.register-link:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}
  @media (max-width: 768px) {
      .image-row {
          flex-direction: column;
          /* Stack images on smaller screens */
          align-items: center;
      }

      .image-row img {
          width: 90%;
          /* Make images take more space on smaller screens */
      }
  }
  .image-container{
    background-color: #171717;
  }
  footer {
      padding: 20px;
      background: #111;
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      /* Ensures elements stay in line */
      align-items: center;
      color: white;
  }

  footer span {
      display: flex;
      align-items: center;
      gap: 20px;
      /* Adds spacing between text and nav */
  }

  footer nav {
      display: flex;
      gap: 10px;
      margin-left: 1100px;
  }

  footer nav a {
      color: gray;
      text-decoration: none;
  }

  footer nav a:hover {
      color: white;
  }
  