* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #08111f;
    color: white;
}


/* MENÜ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 17, 31, 0.9);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 25px;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    color: #55d6ff;
}

.menu {
    display: flex;
    gap: 10px;
}

.menu a {
    color: white;
    text-decoration: none;

    padding: 10px 15px;
    border-radius: 10px;

    transition: 0.2s;
}

.menu a:hover {
    background: #12304a;
    color: #55d6ff;
}


/* FŐOLDAL */

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;

    background:
        radial-gradient(circle at center, #123b59, #08111f 70%);
}

.hero-content {
    max-width: 800px;
}

.small-title {
    color: #55d6ff;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(45px, 8vw, 85px);
    margin-bottom: 25px;
}

h1 span {
    color: #55d6ff;
}

.description {
    font-size: 20px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 15px 25px;

    background: #55d6ff;
    color: #06101c;

    text-decoration: none;
    font-weight: bold;

    border-radius: 12px;

    transition: 0.2s;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(85,214,255,0.25);
}

.minecraft-button {
    background: #4ade80;
}


/* SZEKCIÓK */

.section {
    max-width: 1100px;
    margin: auto;

    padding: 110px 25px;
}

.section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.section-text {
    text-align: center;
    color: #aebccc;
    margin-top: -30px;
    margin-bottom: 40px;
}


/* RÓLAM */

.about-card {
    display: flex;
    align-items: center;
    gap: 30px;

    background: #101d30;

    border: 1px solid #1d344e;
    border-radius: 20px;

    padding: 40px;
}

.about-icon {
    font-size: 80px;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-card p {
    color: #bdc9d8;
    line-height: 1.7;
    margin-bottom: 10px;
}


/* MINECRAFT */

.minecraft-section {
    text-align: center;
}

.game-card {
    max-width: 650px;
    margin: auto;

    padding: 50px;

    background:
        linear-gradient(145deg, #132b1d, #101d30);

    border: 1px solid #285a38;
    border-radius: 25px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.game-icon {
    font-size: 80px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.game-card p {
    color: #bdc9d8;
    margin-bottom: 30px;
}

#gameButton {
    border: none;

    padding: 16px 30px;

    background: #4ade80;
    color: #06210f;

    font-weight: bold;
    font-size: 16px;

    border-radius: 12px;

    cursor: pointer;

    transition: 0.2s;
}

#gameButton:hover {
    transform: scale(1.05);
}


/* PROJEKTE */

.projects {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.project-card {
    background: #101d30;

    border: 1px solid #1d344e;

    border-radius: 18px;

    padding: 30px;

    text-align: center;

    transition: 0.2s;
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: #55d6ff;
}

.project-card > div {
    font-size: 50px;
    margin-bottom: 15px;
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-card p {
    color: #aebccc;
    line-height: 1.6;
}


/* LÁBLÉC */

footer {
    text-align: center;

    padding: 35px;

    border-top: 1px solid #1d344e;

    color: #7f91a6;
}


/* TELEFON */

@media (max-width: 750px) {

    .menu {
        display: none;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .projects {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 34px;
    }
}