/* ========================================
   MANAGER PAGE PREMIUM EFFECTS
   Additional animations and effects specific to manager page
   ======================================== */

/* Enhanced Shimmer Text for Hero */
.shimmer-text {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.6) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    font-weight: 700;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Premium Card Glow Effect */
.premium-card-glow {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.premium-card-glow:hover::before {
    opacity: 0.4;
}

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    font-weight: 700;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating Animation for Icons */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced Pulse Effect */
.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Slide In Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Card Hover */
.card.tilt-effect,
.premium-card.tilt-effect {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.tilt-effect:hover,
.premium-card.tilt-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Zoom Effect */
.image-zoom-container {
    overflow: hidden;
    border-radius: 12px;
}

.image-zoom-container img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-container:hover img {
    transform: scale(1.08);
}

/* Enhanced Icon Box */
.icon-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.card:hover .icon-box::before {
    width: 100%;
    height: 100%;
}

.card:hover .icon-box {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(201, 162, 77, 0.4);
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(201, 162, 77, 0.6);
    transform: translateY(-3px);
}

/* Section Line Enhancement */
.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: line-glow 2s ease-in-out infinite;
}

@keyframes line-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

/* Fade Up Animation Enhancement */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shimmer-text {
        font-size: 1.8rem !important;
    }

    .gradient-text {
        font-size: 1.6rem !important;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .card.tilt-effect:hover,
    .premium-card.tilt-effect:hover {
        transform: translateY(-5px);
    }

    .float-animation {
        animation: none;
        /* Disable on mobile for performance */
    }
}

/* Smooth Page Load */
body {
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Enhanced Split Section */
.split-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.split-section>div {
    flex: 1;
    min-width: 0;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
        gap: 30px;
    }

    .split-section>div {
        max-width: 100% !important;
    }
}