/* 
 * Shared Hero Section Styling
 * Nexra Corppe v2
 */

.shared-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e0ff 100%);
    overflow: hidden;
    z-index: 1;
}

.shared-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/shapes/circuit-pattern.svg') repeat;
    opacity: 0.05;
    z-index: -1;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}

.hero-shape-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -20px); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-content p {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-light);
    color: var(--color-gray-dark);
    max-width: 600px;
    margin: 0 auto;
}
