/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.85) 0%,
        rgba(26, 21, 53, 0.75) 30%,
        rgba(102, 126, 234, 0.4) 60%,
        rgba(118, 75, 162, 0.6) 80%,
        rgba(237, 147, 60, 0.5) 100%
    );
    backdrop-filter: blur(2px);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 80px 20px 20px 20px;
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
                 0 0 60px rgba(102, 126, 234, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #a8b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 300;
    color: #e0e7ff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-title {
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        letter-spacing: 2px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4rem;
    color: white;
    text-align: center;
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}