/* Hero Section - Orizon Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #050812 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Hero Layout */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Code lines background */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(255, 107, 53, 0.1) 30px,
            rgba(255, 107, 53, 0.1) 31px
        );
    background-size: 100% 100%;
    background-position: 0% 0%;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
    text-align: left;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-line:last-child {
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    text-align: left;
}

/* Hero CTA Section */
.hero-cta-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cta-button {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

.hero-cta-button i {
    font-size: 2rem;
    margin-bottom: 1rem;
    transform: rotate(-45deg);
}

.hero-cta-text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-cta-text div:first-child {
    margin-bottom: 0.25rem;
}

/* Human Silhouette Background */
.hero-silhouette-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><defs><filter id="blur"><feGaussianBlur stdDeviation="20"/></filter></defs><path d="M200 100 Q300 150 350 200 Q400 300 350 400 Q300 500 200 550 Q100 500 50 400 Q0 300 50 200 Q100 150 200 100" fill="rgba(255,107,53,0.1)" filter="url(%23blur)"/></svg>') no-repeat;
    background-size: contain;
    background-position: right center;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Floating Cards - Dark Theme */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    max-width: 280px;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.08);
}

.floating-card:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 8%;
}

.floating-card:nth-child(3) {
    bottom: 15%;
    left: 20%;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.floating-card h3 {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.floating-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Animated Code Background */
.code-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(40px, 1fr));
    gap: 20px;
    padding: 40px;
    overflow: hidden;
    pointer-events: none;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    min-width: 30px;
    font-size: 12px;
}

.code-content {
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
}



/* Hero Right Side - Silhouette and CTA */
.hero-right {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-silhouette {
    position: relative;
    width: 300px;
    height: 400px;
}

.silhouette-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(20px);
}

.hero-cta {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    cursor: pointer;
    z-index: 3;
}

.hero-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.hero-cta i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-cta-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive Design pentru Hero */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta-button {
        width: 150px;
        height: 150px;
    }
    
    .hero-cta-button i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-cta-text {
        font-size: 0.75rem;
    }
    
    .code-background {
        font-size: 12px;
        padding: 1rem;
        gap: 15px;
    }
    
    .hero-silhouette-bg {
        width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .hero-cta-button {
        width: 120px;
        height: 120px;
    }
    
    .hero-cta-button i {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-cta-text {
        font-size: 0.7rem;
    }
    
    .code-background {
        font-size: 10px;
        padding: 0.5rem;
        gap: 10px;
    }
}
