/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-color: #ff69b4;
    --secondary-color: #4a90e2;
    --accent-color: #7b2cbf;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Styling */
nav {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: inline-block;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    display: inline-block;
    text-align: center;
    float: left;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/pattern.png');
    opacity: 0.1;
    animation: backgroundFloat 20s linear infinite;
}

.hero-text {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

/* About Section */
.about {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-block {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    padding: 100px 0;
    color: white;
}

.phase {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.phase-content ul {
    list-style: none;
}

.phase-content ul li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.phase-content ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Tokenomics Section */
.tokenomics {
    background: var(--light-bg);
    padding: 100px 0;
}

.token-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.token-item:hover {
    transform: scale(1.02);
}

/* Animations */
@keyframes backgroundFloat {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Common Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container h2{
  color: #ff7200;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff7200;
}

img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Add these new styles to your CSS file */

/* Updated Navigation Styles */
nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 105, 180, 0.1);
    color: var(--primary-color);
}
.contract-address {
  background-color: rgba(173, 216, 230, 0.5);
}

.contract-address {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#copyButton {
    margin-left: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#copyButton:hover {
    background-color: #0056b3;
}


/* Contact Section Styles */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon i {
    font-size: 4rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.social-icon span {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.social-icon:hover i {
    filter: brightness(1.2);
}

/* Responsive Design for Navigation and Contact */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .social-links {
        flex-direction: column;
        gap: 30px;
    }

    .social-icon i {
        font-size: 3rem;
    }
}

/* Animation for Social Icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.social-icon {
    animation: float 3s ease-in-out infinite;
}

.social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

/* Hover effect for social icons */
.social-icon:hover i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Additional hover effects for navigation */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 70%;
}
/* Updated Navigation Styles */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links li {
        opacity: 0;
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 20px;
        display: block;
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }

    /* Active State */
    .nav-active {
        right: 0;
    }

    /* Hamburger Animation */
    .toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle span:nth-child(2) {
        opacity: 0;
    }

    .toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Desktop Styles */
@media screen and (min-width: 769px) {
    .nav-links {
        position: relative;
        right: 0;
        height: auto;
        background: none;
        backdrop-filter: none;
    }

    .nav-links li {
        opacity: 1;
    }

    .nav-links ul {
        flex-direction: row;
    }
}

/* Additional hover effects for desktop */
@media screen and (min-width: 769px) {
    .nav-links a {
        position: relative;
        overflow: hidden;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 100%;
    }
}

/* Active link style */
.nav-links a.active {
    color: var(--primary-color);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.contract-address {
    display: flex;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

#copyButton {
    margin-left: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#copyButton:hover {
    background-color: #0056b3;
}
#buy {
  background-color: #e0ffe0;
  /* Light green */
  text-align: center;
}