/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f9f9f9;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #00c6ff, #0072ff), url('https://source.unsplash.com/random/1600x900/?coconut');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  max-width: 600px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: #ffd700;
  color: #333;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: white;
  color: #0072ff;
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: 100px 5%;
}

.section.light {
  background: #f9f9f9;
  color: #333;
}

.section.dark {
  background: #222;
  color: #fff;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 40px;
  text-align: center;
}

/* Intro Section */
.intro {
  background: #fff8dc;
  padding: 100px 5%;
  text-align: center;
  font-family: 'Comic Neue', cursive;
}

.intro h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: bold;
  color: #5a2d0c;
  margin-bottom: 30px;
}

.intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #4a3b2c;
}

/* How to Buy Section */
.how-to-buy {
  background: linear-gradient(135deg, #00aaff, #0072ff);
  color: white;
  padding: 100px 5%;
  text-align: center;
  font-family: 'Comic Neue', cursive;
}

.how-to-buy h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 50px;
  font-weight: bold;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.number {
  background: white;
  color: #0072ff;
  font-weight: bold;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tokenomics */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.dark .card {
  background: #333;
  color: white;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1.2rem;
}

/* Community */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2.5rem;
}

.social-icons a {
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Footer */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 5%;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.footer p {
  margin-bottom: 10px;
}


/* Section Background */
.how-to-buy {
  background: linear-gradient(135deg, #ff9d76, #ff6f61, #ff4757);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.how-to-buy::before {
  /*content: "🥥";*/
  font-size: 200px;
  opacity: 0.08;
  position: absolute;
  top: -40px;
  right: 20px;
  transform: rotate(-20deg);
}

.how-to-buy .title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
}

.how-to-buy .title span {
  color: #ffeaa7;
  text-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}

/* Step Cards */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 40px rgba(0,0,0,0.25);
}

/* Step Number */
.step-number {
  background: linear-gradient(135deg, #ffdd59, #fbc531);
  color: #2d3436;
  font-weight: bold;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2d3436;
}

.step-card p {
  font-size: 1rem;
  color: #636e72;
}


/* Tokenomics Section */
.tokenomics {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 20px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.tokenomics h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}

/* Grid Layout */
.tokenomics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Individual Card */
.tokenomics-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  color: #2d3436;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 40px rgba(0,0,0,0.25);
}

/* Icon */
.tokenomics-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

/* Titles */
.tokenomics-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2d3436;
}

.tokenomics-card p {
  font-size: 1rem;
  color: #636e72;
}
/* Intro Section */
.intro {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Coconut Emojis Floating (Optional animation) */
.intro::before, .intro::after {
  /*content: "🥥";*/
  position: absolute;
  font-size: 4rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}
.intro::before {
  top: 15%;
  left: 10%;
}
.intro::after {
  bottom: 10%;
  right: 15%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Container */
.intro .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.intro-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.intro-title span {
  color: #ffe066;
  text-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}

/* Paragraph */
.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f8f9fa;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #ff6b6b;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: #ff4757;
  transform: translateY(-3px);
}

h1 {
    font-size: 55px !important;
}

.h-10 {
height: 110px !important;
}
.py-4 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .section {
    padding: 60px 5%;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 20px;
  }
  h1 {
    font-size: 19px !important;
  }
  .intro {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
    min-height: auto;
    display: flex;
    align-items: center;
    text-align: center;
     padding: 30px 20px; 
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.intro p {
    
    margin: 0 auto;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #4a3b2c;
    text-align: justify;
}
.how-to-buy {
    background: linear-gradient(135deg, #ff9d76, #ff6f61, #ff4757);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}
.how-to-buy .title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
}
.tokenomics {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    padding: 50px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
.tokenomics h2

 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

}