/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 230, 118, 0.1) 0%, transparent 50%);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
}

.floating-2 {
    top: 10rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(0, 188, 212, 0.2);
    animation-delay: 1s;
}

.floating-3 {
    bottom: 10rem;
    left: 5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(0, 230, 118, 0.2);
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 var(--spacing-md);
    max-width: 1024px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
}

.hero-highlight {
    display: block;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        padding: 0 var(--spacing-xl);
    }
}
