/* Grundsetup */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1E1E1E;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    background: rgba(30,30,30,0.9);
    z-index: 100;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #9146FF;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00FFF7;
}

/* Hamburger Menü (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1E1E1E, #9146FF);
    padding: 0 1rem;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin: 1rem 0;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00FFF7;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* CTA Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-twitch {
    background-color: #9146FF;
    color: #fff;
}

.btn-twitch:hover {
    background-color: #7B38E0;
}

.btn-discord {
    background-color: #7289DA;
    color: #fff;
}

.btn-discord:hover {
    background-color: #5b6eae;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .profile-pic {
        width: 120px;
        height: 120px;
    }
}