/* 
 * Hero Section Styles
 * Contains styles for the hero/header section
 */

.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    z-index: 2;
}

.hero-overline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.accent-text {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.accent-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(6, 182, 212, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-content .tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--background-color);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Hero button styling refinements */
.hero-cta .cta-button.primary {
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
}

.hero-cta .cta-button.primary:hover {
    background: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta .cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive hero section */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
}
