/* Hero Section */
.hero {
    height: 100vh;
    padding-bottom: 5rem;
    display: flex;
    padding-top: 5rem;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    /* Relative padding */
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    position: relative;
}

.hero-content {
    z-index: 1;
    width: 80%;
}

.hero-content h1 {
    font-size:4rem;
    /* Relative font size */
    margin-bottom: 1rem;
    
    /* Relative margin */
}

.neon-logo {
    width: 10rem;
    /* Relative width */
    filter: drop-shadow(0 0 8px rgba(143, 192, 255, 0.8));
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 8px rgba(143, 192, 255, 0.8));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(143, 192, 255, 1));
    }
}

.hero-content p {
    font-size: 1.5rem;
    /* Relative font size */
    margin-bottom: 5rem;
    /* Relative margin */
}

.cta-buttons .btn {
    margin: 0 0.5rem;
    /* Relative margin */
    padding: 0.5rem 1rem;
    /* Relative padding */
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 0.3rem;
    font-size: var(--font-button);
    /* Relative border radius */
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 15rem;
        padding-bottom: 10rem;

    }
}