 body {
      margin: 0;
      background-color: #537c8b;
      font-family: 'Lilita One', 'comic-sans', sans-serif;
      font-size: 21px;
      line-height: 1.8rem;
      color: #ffffff;
      text-align: center;
    }

    header {
        padding: 3% 0;
    }
    
    section{
        padding: 30px 0;
    }

    .logo {
      max-width: 380px;
    }

    h1 {
      font-size: 3em;
      margin: 20px 0 10px;
      line-height: 2.8rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    p {
        font-size: 1.3rem;
    }

    p.tagline {
      font-size: 1.7em;
      font-style: italic;
      margin-bottom: 30px;
    }

    footer a, footer span {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
    }

    section {
        clear: left;
      max-width: 800px;
      margin: auto;
      padding: 40px 20px;
    }

    .why-snax div:first-of-type img {
        max-width: 200px;
    }

    .snackmap img {
        width: 100%;
    }
    
    .snackmap .title-roadmap {
        width: 320px;
        max-width: 320px;
    }


    /* MOBILE */
    @media (max-width: 768px) {
        header {
            padding-top: 16px;
        }

        h1 {
        font-size: 2.6em;
        }

        .logo {
            max-width: 360px;
        }
    }

    /* DESKTOP */
    @media (min-width:769px){
        .why-snax{
            display: flex;
            justify-content: center;
        }

        .why-snax div:first-of-type {
            width: 30%;
        }

        .why-snax div:first-of-type img {
            max-width: 100%;
        }

        .why-snax div:last-of-type {
            width: 70%;
        }

        .snackmap img {
            max-width: 900px;
        }

    }
    footer {
      padding: 40px 20px;
      color: #cccccc;
      font-size: 0.9em;
    }
    .snax-tokenomics {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.tokenomics-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .tokenomics-content {
    flex-direction: row;
    text-align: left;
  }
}

.tokenomics-chart img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.tokenomics-stats h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.tokenomics-stats p {
  font-size: 1.3rem;
  margin: 10px 0;
  line-height: 1.6rem;
}
.home-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
      background: #eba723;
      border: 4px solid #b8860b;
      color: #1b1000;
  font-size: 1.8rem;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.home-button.visible {
  opacity: 1;
  pointer-events: auto;
}

.home-button:hover {
  transform: scale(1.1);
      background: #ffe135;
}
.buy-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #eba723;
  color: #1b1000;
  font-size: 1rem;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 4px solid #b8860b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.buy-button.visible {
  opacity: 1;
  pointer-events: auto;
}

.buy-button:hover {
  transform: scale(1.1);
  background-color: #ffe135;
}
/* HEADER NAV */
.site-header {
  padding: 10px 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
    padding-left:20px;
    padding-right:20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  margin-top: 18px;
  width: 108px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffe135;
}

.burger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Burger Nav Mobile */
@media (max-width: 768px) {
  footer {
    padding-bottom: 140px;
  }
.site-header {
  background-color: transparent;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background-color: #537c8b;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: none;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.8rem;
  }

  .nav-links a:hover {
    color: #ffe135;
  }
  
  .burger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  .site-header {
    justify-content: space-between;
  }
}
/* Desktop-only behavior */
@media (min-width: 769px) {
.nav-container {
    max-width: 1100px;
    padding-left: 0;
    padding-right: 0;
}
  .site-header {
    transition: opacity 0.6s ease;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  .site-header:hover {
    opacity: 1 !important;
    pointer-events: auto;
  }
}
    .btn {
      display: inline-block;
      background: #eba723;
      color: #1b1000;
      text-decoration: none;
      padding: 14px 28px;
      margin: 10px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 1em;
      border: 4px solid #b8860b;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: all 0.2s ease;
    }

    .btn:hover {
      background: #ffe135;
      color: #1b1000;
      transform: scale(1.05);
    }