/* Hero Section Styles */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 80vh;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0.05;
    animation: gradientAnimation 15s ease infinite;
}

.text-gradient {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-text {
    background: linear-gradient(120deg, var(--color-primary-light) 0%, var(--color-primary-light) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    padding: 0 4px;
    color: inherit;
    border-radius: 3px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 540px;
}

.py-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 992px) {
    .py-7 {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Animation du gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Animation des éléments du héro */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}