/* Body Background with Subtle Blur */
body {
    margin: 0;
  font-family: 'Sour Gummy', sans-serif; /* Replace 'sans-serif' with a fallback */
    
}

/* Subtle Blur Effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Use the same background image */
     /* Very subtle blur and almost full brightness */
    z-index: -1; /* Push it behind the content */
}
/* Glowing h1 Tags */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: blue;
    text-shadow: 0 0 5px #fff, 0 0 10px #00f, 0 0 20px #00f, 0 0 40px #0ff;
    font-family:  'Sour Gummy', sans-serif;
}

/* Section-Specific Background Colors */
#home {
    padding: 2rem 0;
    text-align: center;
    background: url('back.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

#about {
    padding: 3rem;
    text-align: center;
    background: lightgrey;
}
#buy {
    background: lightgrey;
    padding: 3rem;
    text-align: center;
}
#roadmap {
    background: lightskyblue;
    padding: 3rem;
    text-align: center;
}
#vision {
    background: rosybrown;
    padding: 3rem;
    text-align: center;
}
#contact {
    background: rosybrown;
    padding: 3rem;
    text-align: center;
}

/* Home Section */
.home-image {
    max-width: 300px;
    border-radius: 50%;
    border: 3px solid white;
}

/* About Section */
.about-content {
    display: block;
    align-items: center;
    gap: 2rem;
}
.about-image {
    width: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.about-text p {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

/* Buy Section */
.ca-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
}
.ca-box button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ca-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.buy-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: blue;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}
/* Roadmap Section */
#roadmap {
    padding: 2rem;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

.roadmap-container {
    display: flex;
    flex-direction: column; /* Switch to vertical arrangement */
    align-items: center; /* Center align phases */
    gap: 2rem; /* Add spacing between phases */
}

.roadmap-phase {
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%; /* Adjust width for a cleaner vertical layout */
    max-width: 600px; /* Optional: Restrict the maximum width */
    text-align: left;
}

/* Styling for phase titles */
.roadmap-phase h3 {
    margin: 0 0 0.5rem 0;
    color: #0066ff;
}

/* Add optional connector lines (vertical) */
.roadmap-phase::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px; /* Space above each phase */
    width: 2px;
    height: 20px;
    background-color: #0066ff;
    transform: translateX(-50%);
}

.roadmap-phase:first-child::before {
    display: none; /* Remove line for the first phase */
}

/* Vision Section */
#vision p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-icons img {
    width: 100px;
    margin: 0 10px;
    height: 100px;
    border-radius: 50%
}

/* Buy Section */
#buy {
    text-align: center;
    padding: 2rem;
    background: lightgray;
}

.ca-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 90%; /* Prevents CA from extending beyond the container */
    border: 2px solid white;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Hides overflowing content */
}

#ca {
    font-size: 0.9rem;
    word-wrap: break-word; /* Allows CA to wrap to the next line if it's too long */
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%; /* Ensures CA text doesn't overflow */
    text-align: left;
}

.ca-box button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0; /* Prevents button from resizing when the CA shrinks */
}

.ca-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buy-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: blue;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    #ca {
        font-size: 0.8rem; /* Adjust font size for smaller screens */
    }
    .ca-box {
        flex-direction: column; /* Stack content vertically on smaller screens */
        padding: 15px;
    }
}
.sui-logo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* How to Buy Section */
#how-to-buy {
    padding: 2rem;
    background: white;
    color: #202020;
    text-align: center;
}

#how-to-buy h1 {
    color: #0066ff; /* Matching the Suimer theme */
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Step */
.step {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    width: 250px;
    text-align: left;
}

.step h3 {
    color: #0066ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}






/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0066ff;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffff66; /* Yellow highlight on hover */
}

/* Hamburger Menu */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #0066ff;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
    }

    .nav-links.active {
        display: flex; /* Show dropdown when active */
    }

    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }
}
h1 h2 p{
  font-family: 'Sour Gummy', sans-serif;
}

.mine{
  color: #fff;
  font-size: 2.2rem;
}


/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0066ff;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Navbar Left Section */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between logo image and text */
}

/* Navbar Logo (Image) */
.navbar-logo {
    width: 40px; /* Adjust size */
    height: 40px; /* Match width for a perfect circle */
    border-radius: 50%; /* Make it round */
    object-fit: cover; /* Ensure the image fits perfectly */
    border: 2px solid white; /* Optional: Add a white border */
}

/* Navbar Text Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffff66; /* Yellow highlight on hover */
}

/* Hamburger Menu (Mobile Only) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #0066ff;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .menu-toggle {
        display: block;
    }
}


/* Tokenomics Section Styling */
#tokenomics {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 95%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}



/* Tokenomics Items Container */
.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
}

/* Individual Tokenomics Items */
.tokenomics-item {
    flex: 1 1 calc(30% - 1rem); /* Adjust width dynamically */
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tokenomics-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.tokenomics-item p {
    font-size: 1rem;
    color: #555;
}













p {
  text-align: justify;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Meme Section */
.meme-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Spreads images evenly */
  gap: 20px; /* Adds space between images */
  margin-top: 30px;
}

.meme-section img {
  width: 100%; /* Responsive on smaller screens */
  max-width: 300px; /* Limits image size on desktop */
  height: auto;
  border-radius: 12px; /* Adds rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.meme-section img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* About Section */
.about-section {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555;
}

/* Media Query for Desktop Screens */
@media screen and (min-width: 1024px) {
  /* Adjust Text */
  h1, h2 {
    font-size: 2.5rem; /* Larger headings */
  }

  p {
    font-size: 20px;
    line-height: 2;
  }

  /* Meme Section Adjustments */
  .meme-section {
    justify-content: center; /* Center-align images */
    gap: 30px; /* Larger spacing between images */
  }

  .meme-section img {
    max-width: 350px; /* Larger image size for desktop */
    height: auto;
  }

  /* About Section Enhancements */
  .about-section {
    padding: 30px;
    margin: 50px auto;
    max-width: 1000px; /* Wider container for desktop */
  }
}






/* Memes Section */
#memes {
    padding: 50px 20px;
    text-align: center;
    background-color: #222;
    color: white;
}

.memes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.memes-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.meme-img {
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

#prevBtn, #nextBtn {
    position: absolute;
    background-color: rgba(0, 191, 255, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

#prevBtn:hover, #nextBtn:hover {
    background-color: #0088cc;
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
    .roadmap-phase {
        width: 95%;
    }
}


/* Memes Section */
.memes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.memes-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.meme-img {
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Arrows */
.arrow-btn {
    position: absolute;
    background-color: rgba(0, 191, 255, 0.8);
    color: white;
    border: none;
    padding: 15px 20px; /* Increased padding for size */
    font-size: 2em; /* Larger font size */
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.3s ease-in-out;
    margin: 0 10px; /* Added spacing */
}

.arrow-btn:hover {
    background-color: #0088cc;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }
