/* Enhanced Gold Gradients */
.gold-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #DAA520 100%);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #DAA520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-gradient-hover {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #DAA520 100%);
    transition: all 0.3s ease;
}

.gold-gradient-hover:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
}

/* Enhanced Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(218, 165, 32, 0.2);
}

/* Enhanced Button Styles */
.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #DAA520 100%);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
}

/* Enhanced Header and Footer */
.site-header, .site-footer {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.95) 0%, rgba(218, 165, 32, 0.95) 50%, rgba(255, 215, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Hover Glow */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

/* Timeline Enhancements */
.timeline-item::before {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline-item::after {
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.3) 0%, rgba(184, 134, 11, 0.1) 100%);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(218, 165, 32, 0.3);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 1s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 1s ease-out;
}

.animate-delay-100 {
    animation-delay: 100ms;
}

.animate-delay-200 {
    animation-delay: 200ms;
}

.animate-delay-300 {
    animation-delay: 300ms;
}

.animate-delay-400 {
    animation-delay: 400ms;
}

.animate-delay-500 {
    animation-delay: 500ms;
} 