/* Example: using Poppins font from Google Fonts */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navigation Bar (optional) */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffffaa; /* Slightly transparent white */
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(6px);
  }
  
  .nav-logo {
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    text-align: center;
    background: linear-gradient(
      to bottom right,
      #5DADE2,
      #2E86C1
    );
    color: #fff;
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .hero-content h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }
  
  .cta-button {
    background-color: #fff;
    color: #2E86C1;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #f0f0f0;
  }
  
  /* Content Sections */
  .content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  .about-us,
  .join-us {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }
  
  .about-us h2,
  .join-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .email-link {
    color: #2E86C1;
    text-decoration: none;
    font-weight: 600;
  }
  
  .email-link:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #222;
    color: #aaa;
  }
  
  .footer-tagline {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
  }

/* The logo in the navbar */
.nav-logo .logo {
    height: 40px;
    width: auto;
  }
  
  /* The larger logo in the hero section */
  .hero-logo {
    width: 220px; /* or whatever size looks best */
    max-width: 90%; /* ensures it scales on mobile if needed */
    margin-bottom: 2rem; /* space between logo and hero text */
  }
  

  /* Replace fixed 100vh height with min-height for better mobile handling */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh;  <-- remove this */
    min-height: 80vh;   /* use a min-height instead */
    text-align: center;
    background: linear-gradient(to bottom right, #5DADE2, #2E86C1);
    color: #fff;
    padding: 0 1rem;
  }
  
  /* MEDIA QUERY: styles for screens 768px wide or smaller */
  @media (max-width: 768px) {
    /* Reduce hero title/subtitle sizes */
    .hero-content h1 {
      font-size: 2.2rem; /* smaller on mobile */
    }
    .hero-content h2 {
      font-size: 1.2rem; /* smaller on mobile */
    }
  
    /* Tighten spacing in navigation links */
    .nav-links a {
      margin-left: 1rem;
    }
  
    /* Allow nav items to wrap on very narrow screens */
    .nav {
      flex-wrap: wrap;
    }
  
    /* Optional: center the nav-links on wrap */
    .nav-links {
      margin-top: 0.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    /* Make content container padding smaller */
    .content-container {
      padding: 2rem 1rem;
    }
  }