/* Hero Section Animations */

/* Floating shapes */
.floating-shape {
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape1 {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 107, 0.2);
    animation: float 6s ease-in-out infinite, morphShape 15s linear infinite alternate;
}

.shape2 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 115, 170, 0.2);
    animation: float 8s ease-in-out infinite 1s, morphShape 20s linear infinite alternate;
}

.shape3 {
    bottom: 15%;
    left: 15%;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 193, 7, 0.2);
    animation: float 7s ease-in-out infinite 2s, morphShape 18s linear infinite alternate;
}

.shape4 {
    bottom: 20%;
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: rgba(76, 175, 80, 0.2);
    animation: float 9s ease-in-out infinite 3s, morphShape 22s linear infinite alternate;
}

/* Pulse circles */
.pulse-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
}

.circle1 {
    top: 40%;
    left: 10%;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    animation: pulse 5s infinite;
}

.circle2 {
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    animation: pulse 5s infinite 2.5s;
}

/* Hero content animations */
.hero-title {
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-btn {
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .hero-btn {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
        width: 80%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        width: 90%;
        max-width: 300px;
        margin-top: 1rem;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
} 