/* ========================= */
/*        RESET BASE         */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0d0f14;
    color: #eaeaea;
    line-height: 1.6;
}

/* ========================= */
/*         HEADER            */
/* ========================= */

header {
    position: sticky;
    top: 0;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2430;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #00f0ff;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #cfcfcf;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #00f0ff;
}

/* ========================= */
/*          HERO             */
/* ========================= */

.hero {
    padding: 120px 8%;
    text-align: center;
    background: radial-gradient(circle at top, #1b2233, #0d0f14 70%);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 28px;
    background: linear-gradient(90deg, #00f0ff, #0066ff);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00f0ff;
}

/* ========================= */
/*         SECTIONS          */
/* ========================= */

section {
    padding: 80px 8%;
}

section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #00f0ff;
    padding-left: 15px;
}

/* ========================= */
/*       PROJECT CARDS       */
/* ========================= */

.project-card {
    background: #141823;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid #1f2430;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-card p {
    opacity: 0.8;
    margin-bottom: 10px;
}

/* ========================= */
/*         STATUS TAGS       */
/* ========================= */

.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
}

.private {
    background: #ff4d4d;
    color: white;
}

.public {
    background: #00cc66;
    color: white;
}

.alpha {
    background: #ffaa00;
    color: black;
}

/* ========================= */
/*         CONTACT           */
/* ========================= */

#contact p {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================= */
/*          FOOTER           */
/* ========================= */

footer {
    text-align: center;
    padding: 30px;
    background: #0b0d12;
    border-top: 1px solid #1f2430;
    font-size: 14px;
    opacity: 0.7;
}

/* ========================= */
/*        RESPONSIVE         */
/* ========================= */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    nav a {
        margin-left: 15px;
        font-size: 14px;
    }

    section {
        padding: 60px 5%;
    }
}
