/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 30% 30%, #152052, #0a0e2a 70%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #a3b4d1;
    margin-bottom: 40px;
}

.btn {
    background-color: #2dd4bf;
    color: #0a0e2a;
    padding: 12px 28px;
    margin: 10px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #24b5a3;
}

/* Hero animation background (simple particle effect) */
canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    @media (max-width: 700px) {

        .hero h1 {
        font-size: 2rem;
        }
        .hero p {
        font-size: 1rem;
        }
    }

    @media (max-height: 500px) {
        .hero h1 {
            margin-top: 100px;
        }
    }
