/* Hero Section Styles */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    background: radial-gradient(
        ellipse at center top,
        rgba(52, 189, 255, 0.08) 0%,
        rgba(0, 0, 0, 0) 60%
    );
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content p {
    margin-bottom: var(--spacing-md);
}

.hero-content p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

/* Hero Logo */
.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 0 30px rgba(52, 189, 255, 0.4));
    transition: filter var(--transition-base);
}

.hero-logo:hover {
    filter: drop-shadow(0 0 40px rgba(172, 113, 255, 0.5));
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--color-background);
    background: var(--color-blue);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 0 25px rgba(52, 189, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--color-purple);
    box-shadow:
        0 0 30px rgba(172, 113, 255, 0.5),
        0 8px 16px rgba(172, 113, 255, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-content p {
        font-size: 1.0625rem;
    }

    .hero-logo {
        max-width: 240px;
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-logo {
        max-width: 200px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
    }
}
