/* General Styles */
body {
    background-color: white;
    color: black;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-overlay video {
    width: 50%;
    max-width: 400px;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
}

/* Header */
header {
    padding: 10px 5%;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px; /* Adjust logo size */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #888;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Add padding for fixed header */
    box-sizing: border-box;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 5em;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background-color: black;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
}

.cta-button:hover {
    background-color: #333;
}

/* Sections */
section {
    padding: 100px 5%;
    text-align: center;
    box-sizing: border-box;
}

section h2 {
    font-size: 3em;
    margin-bottom: 50px;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.about-content {
    max-width: 600px;
}

.about img {
    max-width: 400px;
    border-radius: 10px;
}

/* Features Section */
.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

.card {
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease;
}

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

/* How It Works Section */
.steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow steps to wrap on smaller screens */
}

.step {
    max-width: 300px;
}

.step-number {
    font-size: 3em;
    font-family: 'Bebas Neue', sans-serif;
    color: #ccc;
}

/* Join Community Section */
.join-community p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Pumpfun Section */
.pumpfun p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Coming Soon Page */
.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 100px;
    box-sizing: border-box;
}

.coming-soon-content h1 {
    font-size: 5em;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
    background-color: #f4f4f4;
}

/* Social Media */
.social-media {
    margin-top: 20px;
}

.social-media a {
    color: black;
    text-decoration: none;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #888;
}

/* Animations */
.animate-text {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(20px); }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1em;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .feature-cards, .steps {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 80px 5%;
    }
}