@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Inter:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #f8f8ff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top center, #ff003c20 0%, #040420 40%, #05051a 100%);
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #060620;
    padding: 20px 40px;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 1000;
}

.logo-text {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 1.8em;
    color: white;
}

.nav-container {
    display: flex;
    gap: 60px;
}

.nav-container a {
    color: #cfcfcf;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.2s;
}

.nav-container a:hover {
    color: #ff4c70;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .bar {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* --- HERO / ABOUT --- */
.hero {
    display: flex;
    justify-content: center;
    padding: 80px;
    position: relative;
    transition: transform 0.3s ease;
}
  #intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000726;
    color: #FF0000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    z-index: 1000;
    transition: opacity 1s ease;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
.hero::before {
    content:"";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,0,60,0.4), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #060620;
    border: 1px solid #ff4c70;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 1000px;
    z-index: 1;
    flex-wrap: wrap;
}

.about-text {
    max-width: 600px;
}

.about-text h3 {
    color: #ff6b8a;
    margin-bottom: 10px;
}

.about-logo img {
    width: 200px;
    height: auto;
    border-radius: 20px;
}

/* --- MAIN BOX --- */
.main-box {
    background-color: #050528;
    border: 1px solid #ff4c70;
    border-radius: 20px;
    margin: 80px auto;
    width: 90%;
    max-width: 1200px;
    height: 600px;
}

/* --- FOOTER --- */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 60px;
    background-color: #0a0a24;
}

.footer p {
    color: #ccc;
}

.footer .icons {
    display: flex;
    gap: 30px;
}

.footer .icons img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px #ff4c70);
    transition: 0.2s;
}

.footer .icons img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #ff6b8a);
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 1024px) {
    .hero { padding: 50px 20px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        gap: 20px;
        background-color: #060620;
        text-align: center;
    }

    .nav-container.active { display: flex; }

    .hero { flex-direction: column; gap: 30px; }
    .about { flex-direction: column; align-items: center; }
    .about-logo img { width: 150px; margin-top: 20px; }
    .main-box { width: 95%; height: 400px; }
    .footer { flex-direction: column; gap: 20px; }

    /* Przesunięcie sekcji about przy menu */
    body.menu-open .hero { transform: translateY(220px); }
}