@import url("https://fonts.googleapis.com/css2?family=Nosifer&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
body {
  margin: 0;
  background-color: #0e0804;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.navbar-custom {
  background-color: #0e0804; /* Dark brown/black shade */
  padding: 12px 0;
}
.navbar-brand {
  color: #f7c948; /* Yellow */
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: underline;
}
.navbar-brand:hover {
  color: #fcd34d;
}
.nav-link {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0 10px;
}
.nav-link:hover {
  color: #f7c948;
}
.btn-login {
  color: #f7c948;
  border: 1px solid #f7c948;
  font-size: 0.85rem;
  padding: 5px 18px;
  margin-right: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background-color: #f7c948;
  color: #000;
}

.btn-signup {
  background-color: #f7c948;
  color: #000;
  font-size: 0.85rem;
  padding: 5px 18px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-signup:hover {
  background-color: #ffda6a;
}

/* 🔹 Responsive styles */
@media (max-width: 576px) {
  .btn-login,
  .btn-signup {
    display: block; /* हर बटन अलग लाइन पर */
    width: 100%; /* पूरी चौड़ाई लेगा */
    margin: 6px 0; /* ऊपर-नीचे spacing */
    font-size: 1rem; /* थोड़ा readable size */
    padding: 10px; /* touch friendly */
  }
}

/* hero */
.hero-section {
  min-height: 90vh;
  background: url("img/hero.png") no-repeat center bottom/cover; /* mountain + trees background */
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative; /* for absolute button */
  padding: 20px;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.highlight {
  color: #f1c40f;
}

/* Coins image */
.coins-img {
  max-width: 400px;
  margin: 20px auto;
  display: block;
  animation: fadeInBottom 1.2s ease-out forwards;
}

/* Join Button */
.btn-join {
  background: #f1c40f;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  transition: 0.3s;

  /* absolute position */
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.btn-join:hover {
  background: #d4ac0d;
  color: #fff;
}

/* Animations */
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-top {
  animation: fadeInTop 1s ease-out forwards;
}

.animate-bottom {
  animation: fadeInBottom 1s ease-out forwards;
}

/* 🔹 Responsive styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  .coins-img {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 15px 120px; /* नीचे जगह ताकि button fit हो */
    background-size: contain;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .coins-img {
    max-width: 250px;
  }
  .btn-join {
    position: relative; /* mobile पर नीचे fix नहीं रहेगा */
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    width: 100%; /* full width button */
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .coins-img {
    max-width: 200px;
  }
  .btn-join {
    font-size: 0.95rem;
    padding: 10px;
  }
}

.about-title {
  font-family: "Nosifer", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 134.3%; /* ~48px */
  text-align: center;
  color: #ffffff;
}

.drip-text {
  font-family: "Nosifer", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 134.3%;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
}

/* card styling */
.info-card {
  background: linear-gradient(180deg, #4a2e0d, #1a0e00);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

.info-card p {
  font-family: "Nova Slim", cursive;
  font-size: 1rem;
  margin-top: 1rem;
  color: #ddd;
}

.supply-btn {
  width: 387px;
  height: 90px;
  background: #f2c649;
  border-radius: 64px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nova Slim", sans-serif;
  font-size: 24px;
  line-height: 144%;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover effect */
.supply-btn:hover {
  background: #e0b235;
  transform: scale(1.05);
}

/* 🔹 Responsive styles */
@media (max-width: 992px) {
  .about-title {
    font-size: 30px;
  }
  .drip-text {
    font-size: 26px;
    font-family: "Nova Slim", sans-serif;
  }
  .supply-btn {
    width: 300px;
    height: 75px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
    line-height: 1.3;
  }
  .drip-text {
    font-size: 22px;
  }
  .info-card {
    min-height: auto; /* card height auto adjust */
    padding: 1.5rem 1rem;
  }
  .info-card p {
    font-size: 1rem;
  }
  .supply-btn {
    width: 100%; /* full width button */
    max-width: 260px;
    height: 65px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 22px;
  }
  .drip-text {
    font-size: 18px;
  }
  .info-card {
    padding: 1rem;
  }
  .info-card p {
    font-size: 0.85rem;
  }
  .supply-btn {
    width: 100%;
    max-width: 220px;
    height: 55px;
    font-size: 16px;
  }
}

.chart-container {
  position: relative;
  width: 500px;
  max-width: 90%; /* ensures it shrinks on smaller screens */
  margin: auto;
}
.chart-container canvas {
  z-index: 2;
}

/* Center text inside chart */
.chart-center {
  position: absolute;
  top: 50%;
  left: 50%; /* center horizontally */
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.chart-center .circle {
  width: 120px;
  height: 120px;
  background: #f2c649;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  color: #000;
  border: 5px solid #000;
  font-size: 1rem; /* scalable font */
}

/* About title */
.aboutt-title {
  font-family: "Nosifer", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 134.3%;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}
.aboutt-title.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chart-container {
    width: 100%;
  }
  .chart-center .circle {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
    border-width: 4px;
  }
  .aboutt-title {
    font-size: 28px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .chart-center .circle {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
    border-width: 3px;
  }
  .aboutt-title {
    font-size: 22px;
  }
}

.stage-card {
  background: #201608;
  border: 1px solid #7c5215;
  border-radius: 8px;
  color: #fff;
  padding: 20px;
}

.stage-title {
  font-size: 28px;
  color: #f2c649;
}

.stage-date {
  font-size: 18px;
  color: #8c8c8c;
}

.stage-price {
  font-size: 20px;
  color: #fff;
}

.presale-banner {
  background: linear-gradient(90deg, #7a5014 0%, #110601 100%);
  border-radius: 8px;
  color: #fff;
  padding: 25px 40px;
  position: relative;
  overflow: hidden;
}
.presale-banner h2 {
  font-size: 32px;
  margin: 0;
}

.join-btn {
  background: #f2c649;
  border-radius: 58px;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  color: #000;
  padding: 12px 32px;
  border: none;
}

/* Stars */
.stars span {
  position: absolute;
  background: #cc8832;
  opacity: 0.45;
  border-radius: 50%;
}

.star1 {
  width: 15px;
  height: 15px;
  top: 60px;
  left: 20px;
}
.star2 {
  width: 15px;
  height: 15px;
  top: 20px;
  left: 200px;
}
.star3 {
  width: 10px;
  height: 10px;
  top: 40px;
  left: 100px;
}
.star4 {
  width: 10px;
  height: 10px;
  top: 70px;
  left: 150px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  /* Tablets */
  .stage-card {
    padding: 15px;
  }
  .stage-title {
    font-size: 24px;
  }
  .stage-date {
    font-size: 16px;
  }
  .stage-price {
    font-size: 18px;
  }
  .presale-banner {
    padding: 20px 30px;
  }
  .presale-banner h2 {
    font-size: 28px;
  }
  .join-btn {
    font-size: 18px;
    padding: 10px 28px;
  }
  /* Adjust star positions proportionally */
  .star1 {
    top: 50px;
    left: 15px;
    width: 12px;
    height: 12px;
  }
  .star2 {
    top: 15px;
    left: 160px;
    width: 12px;
    height: 12px;
  }
  .star3 {
    top: 35px;
    left: 80px;
    width: 8px;
    height: 8px;
  }
  .star4 {
    top: 60px;
    left: 120px;
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .stage-card {
    padding: 12px;
  }
  .stage-title {
    font-size: 20px;
  }
  .stage-date {
    font-size: 14px;
  }
  .stage-price {
    font-size: 16px;
  }
  .presale-banner {
    padding: 15px 20px;
  }
  .presale-banner h2 {
    font-size: 22px;
  }
  .join-btn {
    font-size: 16px;
    padding: 8px 24px;
  }
  /* Adjust stars for mobile */
  .star1 {
    top: 40px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
  .star2 {
    top: 10px;
    left: 120px;
    width: 10px;
    height: 10px;
  }
  .star3 {
    top: 30px;
    left: 60px;
    width: 6px;
    height: 6px;
  }
  .star4 {
    top: 50px;
    left: 90px;
    width: 6px;
    height: 6px;
  }
}

.btn-presale {
  position: relative;
  display: inline-block;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  width: 220px;
  height: 60px;
}

/* White layer (Rectangle 25) */
.btn-presale::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 58px;
  z-index: 1;
}

/* Yellow layer (Rectangle 26) */
.btn-presale::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 6px;
  bottom: 6px;
  background: #f2c649;
  border-radius: 58px;
  z-index: 2;
}

/* Button Text */
.btn-presale span {
  position: relative;
  z-index: 3;
  line-height: 60px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  /* Tablets */
  .btn-presale {
    width: 180px;
    height: 50px;
    font-size: 18px;
  }
  .btn-presale::before {
    top: 5px;
    left: 5px;
  }
  .btn-presale::after {
    right: 5px;
    bottom: 5px;
  }
  .btn-presale span {
    line-height: 50px;
  }
}

@media (max-width: 480px) {
  /* Mobile */
  .btn-presale {
    width: 150px;
    height: 45px;
    font-size: 16px;
  }
  .btn-presale::before {
    top: 4px;
    left: 4px;
  }
  .btn-presale::after {
    right: 4px;
    bottom: 4px;
  }
  .btn-presale span {
    line-height: 45px;
  }
}

.utility-card {
  background: #201608;
  border: 1px solid #7c5215;
  padding: 20px;
  border-radius: 6px;
  height: 100%;
  transition: all 0.4s ease; /* smooth animation */
}

.utility-card:hover {
  transform: translateY(-8px) scale(1.02); /* हल्का ऊपर उठे और बड़ा हो */
  border-color: #f2c649; /* border गोल्ड हो जाए */
  box-shadow: 0 8px 20px rgba(242, 198, 73, 0.4); /* glow effect */
}

.utility-card h5 {
  font-family: "Nova Slim", sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.utility-card p {
  font-family: "Nova Slim", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #8c8c8c;
  margin: 0;
}

.utility-title {
  font-family: "Nosifer", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 134.3%; /* around 48px */
  text-align: center;
  color: #f2c649;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  /* Tablets */
  .utility-card {
    padding: 15px;
  }
  .utility-card h5 {
    font-size: 20px;
  }
  .utility-card p {
    font-size: 18px;
    line-height: 24px;
  }
  .utility-title {
    font-size: 30px;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .utility-card {
    padding: 12px;
  }
  .utility-card h5 {
    font-size: 18px;
  }
  .utility-card p {
    font-size: 16px;
    line-height: 22px;
  }
  .utility-title {
    font-size: 24px;
    line-height: 1.2;
  }
}

.roadmap-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap; /* allows wrapping on small screens */
  gap: 20px; /* spacing between items */
}

.roadmap-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #201608;
  border: 1px solid #7c5215;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Nova Slim", sans-serif;
  font-size: 28px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.roadmap-text {
  font-family: "Nova Slim", sans-serif;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  max-width: 110px;
}

/* connector lines */
.roadmap-container::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  height: 2px;
  background: #7c5215;
  z-index: 1;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  /* Tablets */
  .roadmap-circle {
    width: 100px;
    height: 100px;
    font-size: 24px;
  }
  .roadmap-text {
    font-size: 10px;
    max-width: 90px;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .roadmap-container {
    flex-direction: column; /* stack vertically */
    align-items: center;
  }
  .roadmap-circle {
    width: 80px;
    height: 80px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .roadmap-text {
    font-size: 15px;
    max-width: 70px;
    margin-top: 5px;
  }
  .roadmap-container::before {
    display: none;
  }
}
.feature-box {
  background: #1a0f00;
  border: 1px solid #a57c1b;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  color: #fff;
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.3);
}

.feature-box h5 {
  font-family: "Nosifer", cursive;
  font-size: 20px;
  font-weight: 300;
  line-height: 130.3%;
  text-align: left;
  margin-bottom: 18px;
  color: #fff;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
}

.feature-box p {
  font-size: 0.95rem;
  color: #ddd;
  text-align: left;
  margin-top: auto; /* ensures same baseline across all cards */
}

.feature-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #f2c94c;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ✅ Responsive tweaks */
@media (max-width: 991px) {
  .feature-box {
    padding: 20px;
  }
  .feature-box h5 {
    font-family: "Nova Slim", sans-serif;
    font-size: 18px;
  }
  .feature-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .feature-title {
    font-size: 1.6rem !important;
    margin-bottom: 25px !important;
  }
  .feature-box {
    text-align: left !important;
  }
  .feature-box h5 {
    font-family: "Nova Slim", sans-serif;
  }
  .feature-box p {
    font-size: 0.85rem !important;
  }
}

/* CTA Bar */
.cta-bar {
  background: #e3b63f;
  padding: 20px 0;
  text-align: center;
  position: relative;
  font-family: "Nova Slim", cursive;
}

.cta-bar h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}

.cta-btn {
  background: transparent;
  border: 1px solid #000;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 500;
  color: #000;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000;
  color: #e3b63f;
}

/* Footer */
footer {
  background: #1a1209;
  padding: 30px 0 15px;
  border-top: 5px solid #000;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #e3b63f;
}

/* Branding */
.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e3b63f;
  margin-bottom: 15px;
}

.footer-brand span {
  border-bottom: 2px solid #e3b63f;
}

.footer-desc {
  color: #bbb;
  font-size: 0.9rem;
}

/* Bottom Copyright */
.footer-bottom {
  text-align: center;

  font-size: 0.85rem;
  color: #ccc;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  /* CTA bar */
  .cta-bar h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .cta-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    display: block;
    margin: 10px auto 0;
  }

  /* Footer */
  footer {
    padding: 20px 0 10px;
    text-align: center;
  }

  footer h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-desc {
    font-size: 0.85rem;
  }

  footer ul li {
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  /* CTA bar */
  .cta-bar h4 {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-brand {
    font-size: 1.1rem;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

  footer h5 {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}
