/* === index-hero.css === */

/* Fullscreen Hero Background */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: var(--spacing-m);
    background: url('../assets/images/backgrounds/image_fx_6.jpg') no-repeat center center/cover;
}

/* Atmospheric Overlay Layer */
.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 10, 31, 0.6), rgba(8, 10, 31, 0.95));
    z-index: 1;
}

/* Content always above overlay */
.hero-title,
.hero-subtext,
.hero-header {
    position: relative;
    z-index: 2;
}

/* === Centered Header Section (Logo + Button) === */
.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.header-logo-image {
    width: 256px;
    height: auto;
    margin-bottom: var(--spacing-l);
}

/* === Glowing Title === */
.hero-title {
    font-family: "Spectral SC", serif;
    font-size: 4rem;
    color: #E0E7FF;
    text-transform: uppercase;
    text-shadow: 0 0 10px #A076F9, 0 0 20px #00E5FF;
    animation: pulseGlow 2s infinite alternate;
    margin-bottom: var(--spacing-s);
}

/* === Subtext Floating Effect === */
.hero-subtext {
    font-family: "Orbitron", sans-serif;
    font-size: 1.6rem;
    color: #00E5FF;
    opacity: 0.9;
    text-shadow: 0 0 10px #00E5FF;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* === CTA Button Styling === */
.header-button {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--color-text-headings);
    background-color: transparent;    
	padding: var(--spacing-m) var(--spacing-xl);
    border-radius: var(--border-radius-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.header-button:hover {
    background-color: var(--color-accent-glow);
    color: var(--color-primary-bg);
    box-shadow: var(--box-shadow-glow-strong);
    text-shadow: none;
}

/* === Glowing Pulse Animation === */
@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px #A076F9;
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 20px #A076F9, 0 0 30px #00E5FF;
        transform: scale(1.02);
    }
}

/* === Mobile Responsiveness === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .header-button {
        font-size: 1.2rem;
        padding: var(--spacing-s) var(--spacing-l);
    }

    .header-logo-image {
        width: 90px;
        margin-bottom: var(--spacing-m);
    }
}
