/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(to right, white, #91061D);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.decoration-dot-1 {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.decoration-dot-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: -4s;
    background: rgba(255, 255, 255, 0.4);
}

.decoration-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to right, white, #91061D);
}

.decoration-line-1 {
    top: 25%;
    right: 20%;
    transform: rotate(25deg);
    animation: pulse-line 4s ease-in-out infinite;
}

.decoration-circle {
    position: absolute;
    top: 15%;
    right: 25%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.decoration-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(to right, white, #91061D);
    border-radius: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes pulse-line {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(25deg) scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: rotate(25deg) scaleY(1.2);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}