/* Elevra Styles */
body {
  margin: 0;
  font-family: Inter, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 10px;
  background-color: #121212; /* Same as your header for seamless flow */
}

.logo-wrapper img.logo {
  width: 100%;
  max-width: 340px; /* Good starting size */
  height: auto;
}

/* Make logo sticky */
.sticky-logo {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  transition: padding 0.3s ease, transform 0.3s ease;
}

/* Logo inside it */
.sticky-logo .logo {
  max-width: 260px;
  height: auto;
  transition: transform 0.3s ease;
}

/* Optional: Shrink effect on scroll */
body.scrolled .sticky-logo {
  padding: 8px 0;
}

body.scrolled .sticky-logo .logo {
  transform: scale(0.85);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #121212;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* Optional for float effect */
}

/* NAV CONTAINER */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #121212;
  position: relative;
  top: 0;
  z-index: 1000;
}



  

/* NAV LINKS BASE STYLE */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #121212;
}

/* NAV LINKS - CENTERED ROW */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* NAV LINK STYLES */
.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
}

/* CTA Styling */
.nav-links a.cta {
  color: #34C759;
  border: 1px solid #34C759;
  border-radius: 6px;
}

/* Hover Effects */
.nav-links a:hover {
  color: #FFD700;
  transition: color 0.3s ease;
}

.nav-links a.cta:hover {
  background-color: #FFD700;
  color: #121212;
  transition: background-color 0.3s ease, color 0.3s ease;
}


button:hover {
  background-color: #FFD700;
  color: #121212;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #FFD700;
  color: #121212;
  transition: background-color 0.3s ease, color 0.3s ease;
}


/* Mobile hamburger button */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #f5f5f5;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 140px 20px 100px 20px;
  background: linear-gradient(180deg, #121212 0%, #1c1c1c 100%);
  color: #f5f5f5;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #34C759;
  color: #121212;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #FFD700;
  color: #121212;
}

.tokenomics {
  background-color: #1c1c1c;
  color: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
}

.tokenomics h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  margin-bottom: 60px;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tokenomics-card {
  background-color: #121212;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.tokenomics-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #FFD700;
}

.tokenomics-card p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

.governance {
  background-color: #121212;
  color: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
}

.governance h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  margin-bottom: 40px;
}

.governance-intro {
  font-size: 18px;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.allocation-card {
  background-color: #1c1c1c;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.allocation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.allocation-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #FFD700;
}

.allocation-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

.waitlist {
  background-color: #1c1c1c;
  color: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
}

.waitlist h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  margin-bottom: 30px;
}

.waitlist-intro {
  font-size: 18px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #333;
  border-radius: 10px;
  background-color: #121212;
  color: #f5f5f5;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #FFD700;
  outline: none;
}

.cta-button {
  display: inline-block;
  background-color: #34C759;
  color: #121212;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #FFD700;
  color: #121212;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.section {
  padding: 80px 20px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'DM Serif Display', serif;;
}

#waitlist .container h2{
    text-align: center;
}

.section ul {
  list-style: none;
  padding: 0;
  line-height: 2em;
}

.iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  max-width: 100%;
}



footer {
  background-color: #121212;
  text-align: center;
  padding: 0px 20px;
  font-size: 14px;
  color: #999;
}

.footer-links {
  margin-top: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
}

.share-buttons {
    margin-top: 40px;
    text-align: center;
}

.share-buttons a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #34C759;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.share-buttons a:hover {
    background-color: #FFD700;
}

.share-section {
  text-align: center;
  margin: 60px auto;
  padding: 20px;
}

.share-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.share-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.share-icons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background-color: #34C759;
  color: #121212;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.share-icons a:hover {
  background-color: #FFD700;
  color: #121212;
}



/* MEDIA QUERY FOR MOBILE */



/* MEDIA QUERY FOR MOBILE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  .menu-toggle {
    display: block;
    font-size: 32px;
    color: #f5f5f5;
    cursor: pointer;
    margin: 0 auto;           /* Center horizontally */
    text-align: center;
    padding: 10px
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 16px;
  }
}


@media (max-width: 425px) {
  .logo {
    height: 50%;
  }
}

@media (max-width: 375px) {
  .logo {
    height: 50%;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-toggle {
  animation: fadeIn 0.5s ease-out;
}

.free-gift-note {
  opacity: 0;
  animation: fadeIn 1s ease-in 1.5s forwards;
  display: block;
  color: #FFD700; /* Elevra gold tone */
  font-size: 2rem; /* Slightly larger than default */
  font-weight: 500;
  margin-top: 0.5rem;
}

