/* Animated Background Shapes */

.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--royal-gold);
    top: 10%;
    left: 5%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--royal-blue);
    top: 60%;
    right: 10%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-blue);
    bottom: 20%;
    left: 15%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--royal-gold-light);
    top: 30%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: 1s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--royal-blue-light);
    bottom: 10%;
    right: 5%;
    animation-duration: 14s;
    animation-delay: 3s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) rotate(270deg) scale(1.05);
    }
}

/* Interactive Hover Effects */
.interactive-element {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.interactive-element:hover::before {
    width: 300px;
    height: 300px;
}

.interactive-element:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Moving Gradient Lines */
.moving-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.moving-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--royal-gold), transparent);
    opacity: 0.3;
    animation: lineMove 8s linear infinite;
}

.moving-line:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.moving-line:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.moving-line:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.moving-line:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.moving-line:nth-child(5) {
    left: 90%;
    animation-delay: 1s;
}

@keyframes lineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Rotating Geometric Shapes */
.geometric-shape {
    position: absolute;
    border: 2px solid var(--royal-gold);
    opacity: 0.15;
    animation: geometricRotate 10s linear infinite;
}

.geometric-shape.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--royal-gold);
    border-top: none;
}

.geometric-shape.square {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.geometric-shape.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--royal-gold);
}

@keyframes geometricRotate {
    0% {
        transform: rotate(0deg) translateX(0);
    }
    100% {
        transform: rotate(360deg) translateX(50px);
    }
}

