/* Enhanced hero section styling */

/* Hero highlights */
.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--primary-color-rgb), 0) 70%);
    top: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--primary-color-rgb), 0) 70%);
    bottom: -50px;
    left: 10%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }
    50% {
        transform: translate(5px, 15px) rotate(0deg);
    }
    75% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Hero content positioning */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Add a slight text shadow to the hero title for better readability */
.hero-content h2 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
