/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    color: #fff;
  }
    /* Navbar */
    .navbar {
      background-color: #000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 110px;
      padding-right: 330px;
    }
  
    /* Logo */
    .logo {
      background-image: url(logo.png);
      width: 80px;
      height: 80px;
      background-size: cover;
      margin-left: 65px;
      padding-right: 50px;
    }
  
    /* 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;
    }
  #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;
    
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero p {
    color: #ccc;
  }
  
  /* Banner */
  .banner {
    background: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem;
    border-radius: 20px;
    position: relative;
  }
  
  .banner h1 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .banner em {
    font-style: italic;
  }
  
  .collab-btn {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    position: relative;
  }
  
  .collab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  
  /* Contact Section */
  .contact-section {
    display: flex;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .left {
    flex: 1;
  }
  
  .left h2 {
    font-size: 2rem;
    margin: 1rem 0;
  }
  
  .left ul {
    list-style: none;
    margin-top: 1rem;
  }
  
  .left ul li {
    margin: 0.5rem 0;
    color: #8f8;
  }
  
  .right {
    flex: 1;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
  }
  
  input, select, textarea {
    flex: 1;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #444;
    background: #1a1a1a;
    color: #fff;
  }
  
  textarea {
    min-height: 100px;
    resize: vertical;
  }
  nav {
    text-decoration: none;

  }
  button {
    background: #00cc00;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
  }
  
  button:hover {
    background: #00aa00;
  }
  
  /* Footer */
  footer {
    background: #0e0e0e;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .footer-links {
    margin-top: 0.5rem;
  }
  
  .footer-links a {
    color: #ccc;
    margin: 0 0.5rem;
    text-decoration: none;
  }
  