@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Poppins:wght@300;400;500&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #4D4D4D;
    color: white;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #3f3f3f;
    border-bottom: 1px solid #5a5a5a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

.logo-pfp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

/* ================= NAV ================= */

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}

/* ================= HAMBURGER ================= */

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

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

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
}

.hero p {
    margin-top: 15px;
    font-size: 18px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: white;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

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

.section {
    padding: 90px 60px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    margin-bottom: 40px;
}

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

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #5a5a5a;
    padding: 30px;
    border-radius: 12px;
    transition: 0.2s;
}

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

/* ================= ABOUT BOX ================= */

.about-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: #5a5a5a;
    padding: 40px;
    border-radius: 12px;
}

.owner-card {
    text-align: center;
    background: #666;
    padding: 25px;
    border-radius: 12px;
}

.owner-card img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.twitter-link {
    display: inline-block;
    margin-top: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    background: #5a5a5a;
    color: white;
}

button {
    margin-top: 18px;
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

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

.site-footer {
    text-align: center;
    padding: 40px 0;
}

.footer-pfp {
    width: 70px;
    border-radius: 50%;
}

/* ================= MOBILE ================= */

@media screen and (max-width: 900px) {
    header {
        padding: 15px 25px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #3f3f3f;
        width: 200px;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links a {
        padding: 10px 0;
    }

    #menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .about-box {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 25px;
    }

    .hero h1 {
        font-size: 36px;
    }
}
