/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: #0066cc;
    text-decoration: none;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
  }
  
  .nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
  }
  
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-spacer {
    height: 80px; /* Match your nav bar height */
  }

  .hamburger {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
  }
  
  /* Dropdown */
  .dropdown-toggle {
    font: inherit;
    color: #fff;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    list-style: none;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 5px;
    min-width: 140px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .dropdown-menu.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 500;
  }
  
  /* Mobile Menu */
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
  
    .nav-menu {
      flex-direction: column;
      background: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      padding: 1rem 2rem;
      display: none;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .dropdown-menu {
      position: relative;
      padding-left: 1rem;
    }
  
    .dropdown-menu li a {
      color: #fff;
    }
  }
  
  /* Hero */
  .hero {
    position: relative;
    background: url('https://chargevia.net/chargevia-preview.png') center/cover no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .logo {
    height: 240px;
    max-width: 90%;
    margin-bottom: 1rem;
  }
  
  .hero-text {
    position: relative;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    color: #fff;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    color: #eee;
    margin-top: 0.5rem;
  }
  
  .cta {
    background: #ffffff;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
  }
  
  /* Section Styling */
  .container {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about h2,
  .events h2,
  .connect h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .calendar-placeholder {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
    color: #666;
  }
  
  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .buttons a {
    background: #0066cc;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
  }
  
  /* Footer */
  footer {
    background: #f0f0f0;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Mobile Button Stack */
  @media (max-width: 600px) {
    .buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .buttons a {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
  }
  
  /* Responsive Logo Size */
  @media (min-width: 768px) {
    .logo {
      height: 300px;
      margin-bottom: 1.5rem;
      margin-top: -2rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
