/* Header and Footer css only */

/* =====================================================
   WHF 2026 DESIGN SYSTEM
===================================================== */
:root {
    --green-main: #00C853;
    --green-dark: #009624;
    --green-light: #69F0AE;
    --dark: #07130D;
    --dark-2: #0B1F15;
    --white: #ffffff;
    --text-soft: #A8B8AF;
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 25px 70px rgba(0, 0, 0, .45);
    --transition: .35s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Inter, system-ui, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  /* =====================================================
     HEADER
  ===================================================== */
  .whf2026-header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 70px);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 19, 13, .88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  
  /* LOGO */
  .whf2026-logo {
    display: flex;
    align-items: center;
  }
  
  .whf2026-logoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-logoText {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
  }
  
  /* =====================================================
     NAVIGATION
  ===================================================== */
  .whf2026-navList {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
  }
  
  .whf2026-navItem {
    position: static;
  }
  
  .whf2026-navLink {
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
  }
  
  .whf2026-navLink:hover {
    background: rgba(0, 200, 83, .15);
    color: var(--green-light);
  }
  
  /* Make Tools button look like normal navigation text */
  .whf2026-megaTrigger {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* =====================================================
     DESKTOP FULL WIDTH MEGA MENU
  ===================================================== */
  .whf2026-megaMenu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 100vw;
    max-width: 100%;
    padding: 40px clamp(20px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #0B1F15, #07130D);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
  }
  
  .whf2026-hasMega:hover .whf2026-megaMenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  
  .whf2026-megaHeading {
    color: var(--green-light);
    margin-bottom: 15px;
  }
  
  .whf2026-megaLink {
    display: block;
    color: var(--text-soft);
    padding: 8px 0;
    transition: .3s;
  }
  
  .whf2026-megaLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  /* =====================================================
     HAMBURGER
  ===================================================== */
  .whf2026-navToggle {
    display: none;
    background: none;
    border: 0;
  }
  
  .whf2026-navToggleBar {
    width: 28px;
    height: 3px;
    display: block;
    margin: 5px;
    background: white;
    border-radius: 20px;
  }
  
  /* =====================================================
     FOOTER
  ===================================================== */
  .whf2026-footer {
    background: radial-gradient(circle at top, #10351F, #050B07);
    padding: 70px clamp(20px, 5vw, 80px) 25px;
    color: white;
  }
  
  .whf2026-footerContainer {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
  }
  
  .whf2026-footerLogo {
    display: flex;
    align-items: center;
  }

  .whf2026-footerLogoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-footerBrandName {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .whf2026-footerDesc {
    margin: 20px 0;
    line-height: 1.7;
    color: var(--text-soft);
  }
  
  /* SOCIAL */
  .whf2026-socialLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .whf2026-socialLink {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    color: white;
    transition: .3s;
  }
  
  .whf2026-socialLink:hover {
    background: var(--green-main);
    transform: translateY(-4px);
  }
  
  .whf2026-footerHeading {
    color: var(--green-light);
    margin-bottom: 20px;
  }
  
  .whf2026-footerNav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .whf2026-footerLink {
    color: var(--text-soft);
    transition: .3s;
  }
  
  .whf2026-footerLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  .whf2026-footerBottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }
  
  .whf2026-legalNav {
    display: flex;
    gap: 20px;
  }
  
  .whf2026-legalLink {
    color: var(--text-soft);
  }
  
  /* =====================================================
     MOBILE NAVIGATION + FOOTER
  ===================================================== */
  @media(max-width: 768px) {
    /* ================= HEADER ================= */
    .whf2026-header {
      height: 75px;
      padding: 0 20px;
    }
  
    /* Hamburger visible */
    .whf2026-navToggle {
      display: block;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 2000;
    }
  
    /* Hamburger animation */
    .whf2026-navToggleBar {
      width: 28px;
      height: 3px;
      margin: 6px auto;
      transition: .35s ease;
    }
  
    /* when menu opens */
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
  
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(2) {
      opacity: 0;
    }
  
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  
    /* ================= MOBILE MENU ================= */
    .whf2026-nav {
      position: fixed;
      top: 75px;
      left: 0;
      width: 85%;
      height: calc(100vh - 75px);
      background: linear-gradient(160deg, #0B1F15, #07130D);
      transform: translateX(-100%);
      transition: .45s ease;
      overflow-y: auto;
      z-index: 1500;
      border-right: 1px solid var(--border);
    }
  
    /* open menu */
    .whf2026-nav.active {
      transform: translateX(0);
    }
  
    .whf2026-navList {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 5px;
      padding: 25px;
    }
  
    .whf2026-navLink {
      width: 100%;
      justify-content: space-between;
      padding: 15px 10px;
      border-radius: 10px;
    }
  
    /* remove desktop hover */
    .whf2026-navLink:hover {
      background: none;
    }
  
    /* ================= TOOLS DROPDOWN ================= */
    .whf2026-hasMega {
      position: relative;
    }
  
    .whf2026-megaTrigger {
      width: 100%;
      justify-content: space-between;
    }
  
    /* arrow */
    .whf2026-megaTrigger::after {
      content: "›";
      font-size: 22px;
      transition: .3s;
    }
  
    .whf2026-hasMega.active .whf2026-megaTrigger::after {
      transform: rotate(90deg);
    }
  
    /* hide mega menu */
    .whf2026-megaMenu {
      position: static;
      width: 100%;
      padding: 10px 15px;
      display: none;
      grid-template-columns: 1fr;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
    }
  
    /* Disable desktop hover mega menu behavior */
    .whf2026-hasMega:hover .whf2026-megaMenu {
      transform: none;
    }
  
    .whf2026-megaMenu {
      left: auto;
      top: auto;
      transform: none !important;
      width: 100%;
    }
  
    /* show tools */
    .whf2026-hasMega.active .whf2026-megaMenu {
      display: block;
    }
  
    .whf2026-megaCol {
      margin-bottom: 20px;
    }
  
    .whf2026-megaHeading {
      font-size: .9rem;
    }
  
    /* ================= FOOTER MOBILE ================= */
    .whf2026-footer {
      padding: 50px 20px 25px;
    }
  
    .whf2026-footerContainer {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  
    .whf2026-footerBrand {
      text-align: center;
    }
  
    .whf2026-footerLogo {
      justify-content: center;
    }
  
    .whf2026-footerDesc {
      text-align: center;
    }
  
    .whf2026-socialLinks {
      justify-content: center;
    }
  
    .whf2026-footerCol {
      text-align: center;
    }
  
    .whf2026-footerNav {
      align-items: center;
    }
  
    .whf2026-addressLine {
      text-align: center;
    }
  
    .whf2026-footerBottom {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }
  
    .whf2026-legalNav {
      flex-direction: column;
      gap: 12px;
    }
  }
  
  
  
  
  
  /* ==================================================================================================================================================================== */
  
    /* HEADER AND FOOTER ENDS HERE */
    /* HEADER AND FOOTER ENDS HERE */
      /* HEADER AND FOOTER ENDS HERE */
  /* HEADER AND FOOTER ENDS HERE */
  /* ==================================================================================================================================================================== */
  

  





























/* =====================================================
   ABOUT PAGE
===================================================== */
.about-page {
    background: #e8e1e1;
    padding: 100px clamp(20px, 8vw, 120px);
}
.about-container {
    max-width: 1000px;
    margin: auto;
}

/* ================= HERO ================= */
.about-hero {
    text-align: center;
    margin-bottom: 80px;
}
.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #07130D;
    line-height: 1.15;
    margin-bottom: 25px;
}
.about-intro {
    max-width: 800px;
    margin: auto;
    color: #66756c;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ================= NAVIGATION ================= */

.about-navigation {

    max-width:750px;

    margin:50px auto 0;

    text-align:left;

    border-left:3px solid #e5eee8;

    padding-left:25px;

}



.about-navigation-title {

    font-size:.85rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#07130D;

    margin-bottom:18px;

}



.about-navigation ul {

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:12px;

}



.about-navigation a {

    display:block;

    color:#55635b;

    text-decoration:none;

    font-size:1rem;

    line-height:1.5;

    padding-left:15px;

    position:relative;

    transition:.25s ease;

}



.about-navigation a::before {

    content:"";

    position:absolute;

    left:-28px;

    top:50%;

    transform:translateY(-50%);

    width:3px;

    height:0;

    background:#00C853;

    transition:.3s ease;

}



.about-navigation a:hover {

    color:#009624;

}



.about-navigation a:hover::before {

    height:100%;

}

@media(min-width:1000px){


    .about-navigation {
    
        position:sticky;
    
        top:100px;
    
    }
    
    
    }

/* ================= TIMELINE ================= */
.about-section {
    position: relative;
    padding: 60px 0 60px 80px;
    border-left: 3px solid #00C853;
    scroll-margin-top: 100px;
    scroll-behavior: smooth;

}
.about-section::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 70px;
    width: 24px;
    height: 24px;
    background: #00C853;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 200, 83, .15);
}
.about-section h2 {
    font-size: 2rem;
    color: #07130D;
    margin-bottom: 25px;
}
.about-section p {
    color: #55635b;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ================= TOOLS ================= */
.about-tools-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin-top: 35px;
}
.about-tools-list a {
    display: block;
    padding: 30px;
    background: #07130D;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    border-top: 4px solid #00C853;
    transition: .35s ease;
}
.about-tools-list a:hover {
    transform: translateY(-8px);
    color: #69F0AE;
}

/* ================= ROADMAP ================= */

/* ================= BENEFITS ================= */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}
.benefits-list li {
    padding: 25px;
    background: #f6faf7;
    border-radius: 18px;
    line-height: 1.7;
}
.benefits-list strong {
    color: #009624;
}

/* ================= MOBILE ================= */
@media(max-width: 768px) {
    .about-page {
        padding: 60px 20px;
    }

    .about-navigation {
        
        margin-top:40px;
    
        padding-left:18px;
    
    }
    
    
    .about-navigation a {
    
        font-size:.95rem;
    
    }
    

    .about-section {
        padding: 40px 0 40px 40px;
    }
    .about-section::before {
        width: 18px;
        height: 18px;
        left: -10px;
    }
    .about-section h2 {
        font-size: 1.5rem;
    }
    .about-tools-list,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    .about-roadmap {
        padding: 35px 25px 35px 40px;
    }
}

@media(max-width: 480px) {
    .about-page {
        padding: 45px 15px;
    }
    .about-section {
        padding-left: 30px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
}
