/* ===== GLOBAL STYLES ===== */
/* === Font Rendering Consistency Fix === */
body, h1, h2, h3, p, a {
  -webkit-font-smoothing: antialiased; /* Chrome, Safari */
  -moz-osx-font-smoothing: grayscale;   /* Firefox */
  text-rendering: optimizeLegibility;   /* Improves kerning and smoothing */
  font-smooth: always;                  /* Edge/Windows hint */
}
body {
  margin: 0;
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Josefin Sans', sans-serif;
}

h1, h2, h3 {
  font-family: 'Righteous', cursive;
  color: #00b4d8;
  letter-spacing: 1px;
}

a {
  color: #00b4d8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
  background: #0d0d0d;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  margin-bottom: 40px;
  font-size: 4rem;  /* around 56px — adjust as you like */
  letter-spacing: 2px;
  line-height: 1.1;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.hero-img {
  width: 420px;
  max-width: 45%;
  height: auto;
  filter: drop-shadow(0 0 20px #00b4d8);
}

.hero-text {
  text-align: left;
  flex: 1;
  max-width: 500px;
}

.hero-text h2 {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.hero-text p {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== ROW SECTIONS ===== */
.row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 100px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.section-img {
  width: 50%;
  max-width: 480px;
  height: auto;
  border-radius: 6px;
  display: block;
}

.section-text {
  width: 100%;
  max-width: 1000px;
  text-align: left;
}

.section-text h2 {
  color: #00b4d8;
  font-size: 2rem;
  margin-bottom: 15px;
}
.section-text h2 {
  color: #00b4d8;
  font-size: 2rem;
  margin-bottom: 15px;
  white-space: nowrap; /* ✅ keeps “SATOSHI’S HERD – MINTING NOW” on one line */
}


.section-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d;
  color: #e0e0e0;
  text-align: center;
  padding: 60px 20px;
}

footer h3 {
  color: #00b4d8;
  margin-top: 40px;
}

.footer-note {
  margin-top: 10px;
  color: #aaa;
}

.x-icon {
  width: 64px;
  margin-top: 10px;
  filter: invert(1);
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* spacing between icons */
  margin-top: 15px;
}

.x-icon,
.discord-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.x-icon:hover,
.discord-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}
#dexhunter-root {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* ===== DEXHUNTER SWAP SECTION ===== */
#swap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  padding: 100px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
}

#swap h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.2rem;
  color: #00b4d8;
  margin-bottom: 20px;
}

#swap p {
  color: #e0e0e0;
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}

#dexhunter-root {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  filter: drop-shadow(0 0 25px rgba(0,180,216,0.3));
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .hero-row,
  .row {
    flex-direction: column;
    text-align: center;
  }

  .section-img,
  .hero-img {
    width: 85%;
  }

  .section-text,
  .hero-text {
    text-align: center;
    width: 90%;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-text h2,
  .section-text h2 {
    font-size: 1.6rem;
  }
  
  
}
