/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Baloo 2', cursive;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
h1 {
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
button {
    cursor: pointer;
    transition: transform 0.3s;
}
button:hover {
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.nav-title {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}
.nav-links a:hover {
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
}
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: white;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.open {
        display: flex;
    }
}

/* Home Section */
#home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('home.jpeg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 20px;
}
#home h1 {
    font-size: 4em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.home-image {
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* About Section */
#about {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 50px 20px;
}
.about-image {
    border-radius: 15px;
    margin-bottom: 20px;
}
.about-text p {
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgba(0, 123, 255, 0.1);
}

/* Buy Section */
.buy-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
#contract-address {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.buy-button {
    display: block;
    margin: 20px auto;
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.buy-button:hover {
    background-color: #0056b3;
}

/* Roadmap Section */
.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 20px;
}
.phase {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Memes Section */
.memes-carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}
.memes-images {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.memes-images img {
    width: 200px;
    border-radius: 10px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* Tokenomics Section */
.tokenomics-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.token-card {
    text-align: center;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-icons {
    text-align: center;
    margin-top: 20px;
}
.contact-icons a {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(0, 123, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}
.contact-icons a:hover {
    background-color: #007BFF;
    color: white;
}










/* General Section Styles */
section {
    padding: 60px 20px; /* Increased padding for more space between sections */
    margin: 20px 0; /* Added margin to create separation */
}
section:nth-child(even) {
    background-color: #f1f1f1;
}
section:nth-child(odd) {
    background-color: #ffffff;
}

/* Vision Section */
#vision {
    text-align: center; /* Centered the content */
    padding: 50px 20px; /* Additional padding for breathing room */
}
#vision p {
    margin: 20px auto; /* Centered and added spacing */
    max-width: 800px; /* Constrained the width for better readability */
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 123, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.8; /* Better line spacing for the text */
    font-size: 18px; /* Slightly larger font size */
}

/* Other Improvements */
h1 {
    margin-bottom: 30px; /* More space below headings */
}

button {
    margin-top: 20px; /* Add spacing above buttons */
}













/* Memes Section */
.memes-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    padding: 20px;
    width: 90%; /* Ensures the carousel is responsive */
    max-width: 1200px; /* Constrains the max width */
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.memes-images {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.memes-images img {
    width: 300px; /* Fixed width for consistency */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Arrow Buttons */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.arrow:hover {
    background-color: #0056b3;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}