body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    margin: 0;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 20px 40px;
    background: #000000;
    backdrop-filter: none;
    position: sticky;
    top: 0;
}

    header .logo {
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    header nav a {
        color: #00eaff;
        text-decoration: none;
        margin-left: 20px;
        font-weight: bold;
    }

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: url('sitebackground.png') no-repeat center center/cover;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .hero > * {
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-family: 'Press Start 2P', cursive;
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 48px;
        opacity: 0.8;
    }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #00eaff; /* cyan border */
    color: #00eaff; /* cyan text */
    background: transparent; /* transparent background */
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 25px;
    transition: 0.3s ease;
    font-family: 'Press Start 2P', cursive;
}

    .btn:hover {
        background: #00eaff; /* cyan fill */
        color: #000; /* black text */
    }


.cta {
    display: inline-block;
    padding: 12px 28px;
    background: #000000;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 25px;
}

.mission {
    padding: 80px 20px;
    text-align: center;
    background: #000;
}

    .mission h2 {
        font-family: 'Press Start 2P', cursive;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .mission p {
        font-size: 18px;
        opacity: 0.8;
    }

.partners {
    text-align: center;
    padding: 80px 20px;
    background: #000;
}

.partners {
    padding: 60px 20px;
    background: #000;
    text-align: center;
}

    .partners h2 {
        font-family: 'Press Start 2P', cursive;
        font-size: 24px;
        margin-bottom: 40px;
        color: #00eaff;
    }

/* Side-by-side layout */
.partner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Logo on the left */
.partner-logo {
    width: 80px; /* adjust size */
    flex-shrink: 0;
}

/* Text on the right */
.partner-info h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    margin-bottom: 10px;
    color: #00eaff;
}

.partner-info p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

/* Button */
.partner-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00eaff;
    color: #000;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    border-radius: 6px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000000;
    margin-top: 60px;
    opacity: 0.8;
}

.projects-hero {
    text-align: center;
    padding: 100px 20px;
    background: #000;
}

    .projects-hero h1 {
        font-family: 'Press Start 2P', cursive;
        font-size: 28px;
        color: #00eaff;
    }

    .projects-hero p {
        font-size: 18px;
        opacity: 0.8;
    }

.projects-list {
    display: grid;
    max-width: 1000px;
    margin: 60px auto;
    gap: 40px;
    padding: 0 20px;
}

.project-card {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00eaff;
    box-shadow: 0 0 12px #00eaff23;
}

.project-card h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: #00eaff;
    margin-bottom: 15px;
}

.project-card p {
    color: #ccc;
    margin-bottom: 20px;
}

.project-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-family: 'Press Start 2P', cursive;
}

    .project-btn:hover {
        background: #00eaff;
        color: #000;
    }
