/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Neue', cursive;
}

body {
    background-color: #1c1c1e;
    color: #ffffff;
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}



.cta {
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #e94057;
    color: white;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
}

.home {
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 20px;
    color: white;
}

.about {
    background: #ffffff;
    color: #333333;
}

.about img, .home img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, #4a90e2, #e94057, #a148e2);
    padding: 60px 20px;
    color: white;
}

.roadmap .phase {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.roadmap .phase img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.image-pair {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.image-container {
    margin: 0 10px;
    text-align: center;
}

.image-container img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
}

.image-container p {
    margin-top: 10px;
    color: white;
}

/* Buy Section */
.buy {
    background-color: #e94057;
    color: white;
    padding: 40px;
    text-align: center;
}

.buy-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.buy-icons a {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.buy-icons img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    background-color: #333333;
    color: white;
    padding: 40px;
    text-align: center;
}

.contact a img {
    width: 60px;
    height: 60px;
    margin: 0 10px;
    border-radius: 10px;
}

/* Button Styles */
.home #learn-more {
    margin-top: 20px;
    padding: 10px 20px;
    background: #e94057;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
    transition: background 0.3s;
}

.home #learn-more:hover {
    background: #d13650;
}

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