/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Typography */
  @font-face {
    font-family: "Franklin Gothic Demi";
    src: local("Franklin Gothic Demi");
  }
  
  @font-face {
    font-family: "Franklin Gothic Medium";
    src: local("Franklin Gothic Medium");
  }
  
  @font-face {
    font-family: "Fairweather Semibold";
    src: local("Fairweather Semibold");
  }
  
  @font-face {
    font-family: "Fairweather Regular Italic";
    src: local("Fairweather Regular Italic");
  }
  
  body {
    font-family: "Fairweather Semibold", sans-serif;
    background-color: #FFFCEA;
    color: #000000;
    line-height: 1.6;
  }
  .navbar {
    background-color: #FFFCEA;
    border-bottom: 1px solid #40774B;
    font-family: "Franklin Gothic Medium", sans-serif;
    z-index: 1000;
    position: sticky;
    top: 0;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .nav-logo img {
    height: 40px;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-link {
    color: #40774B;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  .nav-link:hover,
  .dropdown-menu a:hover {
    color: #67975A;
  }
  /* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  
  .hamburger span {
    height: 3px;
    background-color: #40774B;
    border-radius: 2px;
  }
  
  /* Mobile Nav Hidden by Default */
  .nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      flex-direction: column;
      background-color: #FFFCEA;
      width: 100%;
      padding: 1rem;
      border-top: 1px solid #40774B;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-item {
      margin-bottom: 1rem;
    }
  
    .dropdown-menu {
      position: static;
      border: none;
      background: transparent;
      padding: 0;
    }
  
    .dropdown-menu a {
      padding-left: 1rem;
    }
  }
  
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFCEA;
    border: 1px solid #40774B;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 999;
  }
  
  .dropdown-menu li {
    padding: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #40774B;
    text-decoration: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  
  .container {
    width: 90%;
    max-width: 960px;
    margin: auto;
    padding: 2rem 0;
  }
  .logo {
      max-width: 500px;
      width: 70%;
  }
  h1, h2, h3 {
    font-family: "Franklin Gothic Medium", sans-serif;
    color: #40774B;
  }
  
  h1.hero-title {
    font-family: "Franklin Gothic Demi", sans-serif;
    font-size: 2.5rem;
    color: #FFFCEA;
  }
  
  h2 {
      font-size: 2rem;
  }
  h3 {
      font-size: 1.3rem;
  }
  .founder > p:first-of-type {
      opacity: 0.5;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    color: #FFFCEA;
    margin-bottom: 1.5rem;
  }
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFCEA;
    text-align: center;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust for legibility */
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
  }
   
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    background: url('images/wind-bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 6rem 2rem;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .cta-button {
    display: inline-block;
    background-color: #40774B;
    color: #FFFCEA;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .cta-button:hover {
    background-color: #67975A;
  }
  
  .identity .tags {
    margin-top: 1rem;
    font-style: italic;
  }
  
  .founder-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .pillar h3 {
    font-family: "Franklin Gothic Medium", sans-serif;
    color: #40774B;
    margin-bottom: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .founder-grid {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .tech-grid {
      display: flex;
      gap: 2rem;
      gap: 100px;
    }

    .pillars {
        flex-direction: row;
      }
    
      .pillar {
        flex: 1;
        padding-right: 1rem;
      }
  }
  
  .tech-link {
    color: #40774B;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .footer {
    background-color: #40774B;
    color: #FFFCEA;
    text-align: center;
    padding: 3rem 1rem;
  }
  