/* Custom Styles for Forensic Investigations */

/* Silver Gradient for Text and Borders */
.text-silver-gradient {
    background: linear-gradient(to bottom, #A0A0A0, #707070, #A0A0A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bg-silver-gradient {
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 50%, #B0B0B0 100%);
}

.border-silver-gradient {
    border-image: linear-gradient(to bottom, #E0E0E0, #B0B0B0) 1;
}

/* Metallic Button Effect */
.btn-metallic {
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
    border: 1px solid #c0c0c0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-metallic:hover {
    background: linear-gradient(to bottom, #e0e0e0 0%, #ffffff 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* Dark Metallic Button */
.btn-metallic-dark {
    background: linear-gradient(to bottom, #333333 0%, #000000 100%);
    color: #e0e0e0;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.btn-metallic-dark:hover {
    background: linear-gradient(to bottom, #000000 0%, #333333 100%);
    color: #ffffff;
    border-color: #silver;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

/* Subtle Pattern Background */
.bg-tech-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-tech-pattern-dark {
    background-color: #000000;
    background-image: radial-gradient(#333333 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Emboss Effect for Text */
.text-emboss {
    text-shadow: 0px 1px 1px rgba(255,255,255,0.2), 0px -1px 1px rgba(0,0,0,0.5);
}

/* Smooth Transitions */
a, button, .transition-all {
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Fade-Up Animation (matching hairbylucinda.co.za style) */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-drop-in {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-drop-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-drop-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero-drop-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

/* Hero Button with Glow */
.btn-hero-outline {
    border: 1px solid rgba(192, 192, 192, 0.5);
    color: #C0C0C0;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}
