/* General Styles */
body {
    margin: 0;
    font-family: 'Kalam', cursive;
    color: #000;
    background: sandybrown;
}



/* Body Background with Subtle Blur */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: url('back.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Subtle Blur Effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* Use the same background image */
    filter: blur(1.5px) brightness(0.9); /* 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;
}

/* Section-Specific Background Colors */
#home {
    padding: 2rem 0;
    text-align: center;
}

#about {
    padding: 3rem;
    text-align: center;
}
#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: 15px;
    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-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 2rem;
}
.roadmap-phase {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    animation: scrollRoadmap 10s infinite;
}

.roadmap-phase li{
  font-size: 2rems;
}

/* 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-color: rgba(240, 240, 240, 0.9);
    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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        width: 90%; /* Full width for smaller screens */
    }
}





/* 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 */
    }
}