/* Landing/Hero Section Styles */

.hero {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 51, 102, 0.3) 0%, transparent 70%);
    overflow: hidden;
}

/* Hero background video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

/* Hero background gif */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
    filter: blur(2px);
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above background */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--lightning-blue), var(--electric-blue), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--light-yellow);
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--off-white);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--lightning-blue);
    color: var(--lightning-blue);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px var(--glow-blue);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--lightning-blue);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--black);
    box-shadow: 0 0 40px var(--glow-blue-strong);
    transform: translateY(-3px);
}

.cta-button:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
