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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.hero-logo-image {
    max-width: 200px;
    margin: 0 auto var(--spacing-xl);
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: clamp(2rem, 5vw, var(--font-size-h1));
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, var(--font-size-h5));
    font-weight: var(--font-weight-regular);
    opacity: 0.95;
    animation: slideUp 1s ease-out;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation-delay: -10s;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-circle-1,
    .hero-circle-2 {
        display: none;
    }
}
