/* ==========================================
   CYBERSECURITY HERO SECTION - PROFESSIONAL
   ========================================== */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-green: #00ff88;
    --accent-cyan: #00d4ff;
    --accent-red: #ff0055;
    --text-light: #e0e0e0;
    --border-color: rgba(0, 255, 136, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1), transparent);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 1;
    animation: heroTitleGlow 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    z-index: 1;
    letter-spacing: 1px;
    animation: heroPGlow 2.5s ease-in-out infinite;
}

/* ==========================================
   HERO ANIMATIONS
   ========================================== */

@keyframes heroTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

@keyframes heroPGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

/* ==========================================
   HERO RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 80px);
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem;
        min-height: calc(100vh - 70px);
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero p {
        animation: none !important;
    }
}
