/* IMPORT FONTÓW */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

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

/* ?? GLOBAL FONT FIX (NAJWAŻNIEJSZE) */
body,
input,
textarea,
button,
select,
option {

    font-family: 'Rajdhani', sans-serif !important;

}

/* ?? FIX: NIE NADPISUJ LOGO */
.logo {
    font-family: 'Orbitron', sans-serif !important;
}

body {

    background: #050505;
    color: white;

    overflow-x: hidden;

    min-height: 100vh;

    position: relative;

}

/* BACKGROUND */

.bg-grid {

    position: fixed;
    inset: 0;

    background:
        linear-gradient(rgba(0, 255, 100, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 100, 0.06) 1px, transparent 1px);

    background-size: 60px 60px;

    opacity: 0.15;

    z-index: -3;

}

.overlay {

    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(0, 255, 100, 0.08),
            transparent 60%);

    z-index: -2;

}

/* NAVBAR */

.navbar {

    width: 100%;

    padding: 30px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0, 255, 100, 0.15);

    position: relative;

}

/* LOGO BOX */

.logo-box {

    display: flex;
    align-items: center;

    gap: 14px;

}

.logo-img {

    width: 48px;
    height: 48px;

    object-fit: contain;

    filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.7));

}

/* ?? LOGO FIX */
.logo {

    font-size: 32px;

    font-weight: 800;

    font-family: 'Orbitron', sans-serif !important;

    color: #00ff66;

}

.logo span {

    color: white;

}

/* NAV */

nav {

    display: flex;

    gap: 40px;

}

nav a {

    text-decoration: none;

    color: #b5b5b5;

    font-size: 14px;

    letter-spacing: 2px;

    transition: 0.3s;

    position: relative;

}

nav a:hover,
nav a.active {

    color: #00ff66;

}

nav a.active::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 2px;

    background: #00ff66;

    box-shadow: 0 0 10px #00ff66;

}

/* LOGIN */

.login-btn {

    background: transparent;

    border: 1px solid #00ff66;

    color: #00ff66;

    padding: 10px 30px;

    border-radius: 6px;

    cursor: pointer;

    font-weight: 600;

    transition: 0.3s;

}

.login-btn:hover {

    background: #00ff66;

    color: black;

    box-shadow: 0 0 20px #00ff66;

}

/* HAMBURGER */

.hamburger {

    display: none;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;

    z-index: 2000;

}

.hamburger span {

    width: 30px;
    height: 3px;

    background: #00ff66;

    border-radius: 10px;

    transition: 0.3s;

}

/* ABOUT */

.about-section {

    width: 100%;

    min-height: calc(100vh - 100px);

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 60px;

    padding: 80px 70px;

    align-items: center;

}

/* LEFT */

.small-title {

    color: #00ff66;

    letter-spacing: 3px;

    margin-bottom: 20px;

    font-size: 14px;

}

.about-left h1 {

    font-size: 82px;

    line-height: 0.95;

    margin-bottom: 35px;

}

.about-left h1 span {

    color: #00ff66;

}

.about-text {

    color: #9b9b9b;

    font-size: 20px;

    line-height: 1.8;

    max-width: 700px;

}

/* STATS */

.stats {

    display: flex;

    gap: 25px;

    margin-top: 50px;

    flex-wrap: wrap;

}

.stat-box {

    flex: 1;

    min-width: 180px;

    border: 1px solid rgba(0, 255, 100, 0.15);

    background: rgba(255, 255, 255, 0.02);

    padding: 30px;

    transition: 0.3s;

}

.stat-box:hover {

    border-color: #00ff66;

    box-shadow: 0 0 20px rgba(0, 255, 100, 0.15);

    transform: translateY(-4px);

}

.stat-box h2 {

    color: #00ff66;

    font-size: 42px;

    margin-bottom: 10px;

}

.stat-box span {

    color: #8f8f8f;

    letter-spacing: 2px;

    font-size: 13px;

}

/* RIGHT */

.about-right {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.info-card {

    border: 1px solid rgba(0, 255, 100, 0.15);

    background: rgba(255, 255, 255, 0.02);

    padding: 35px;

    transition: 0.3s;

}

.info-card:hover {

    border-color: #00ff66;

    transform: translateY(-5px);

    box-shadow: 0 0 30px rgba(0, 255, 100, 0.18);

}

.info-card h3 {

    color: #00ff66;

    font-size: 30px;

    margin-bottom: 15px;

}

.info-card p {

    color: #9b9b9b;

    line-height: 1.8;

    font-size: 17px;

}

/* RESPONSIVE */

@media(max-width:1100px) {

    .about-section {

        grid-template-columns: 1fr;

    }

    .about-left h1 {

        font-size: 58px;

    }

}

/* MOBILE MENU */

@media(max-width:900px) {

    .hamburger {

        display: flex;

    }

    nav {

        position: absolute;

        top: 100%;

        left: 50%;

        transform:
            translateX(-50%)
            translateY(-20px);

        width: 240px;

        background: rgba(5, 5, 5, 0.98);

        border: 1px solid rgba(0, 255, 100, 0.2);

        backdrop-filter: blur(10px);

        display: flex;

        flex-direction: column;

        padding: 25px;

        gap: 20px;

        opacity: 0;

        pointer-events: none;

        transition: 0.3s;

        z-index: 1500;

    }

    nav.active {

        opacity: 1;

        pointer-events: auto;

        transform:
            translateX(-50%)
            translateY(0);

    }
}

/* DESKTOP */

@media(min-width:901px) {

    nav {

        display: flex !important;

        opacity: 1 !important;

        pointer-events: auto !important;

        transform: none !important;

        position: static;

    }

}

@media(max-width:700px) {

    .navbar,
    .about-section {

        padding-left: 25px;
        padding-right: 25px;

    }

    .about-left h1 {

        font-size: 42px;

    }

    .about-text {

        font-size: 18px;

    }

}

.no-underline {

    text-decoration: none;
    color: inherit;

}