/* Custom styles for Kingdom Counseling */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #3d0f0f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C9A962;
}

/* Selection color */
::selection {
    background: rgba(201, 169, 98, 0.3);
    color: #ffffff;
}

/* Base animations - progressive enhancement only */
@media (prefers-reduced-motion: no-preference) {
    .reveal-up {
        opacity: 1;
        transform: none;
    }
    
    .reveal-left {
        opacity: 1;
        transform: none;
    }
    
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Gold gradient text effect */
.text-gold-gradient {
    background: linear-gradient(135deg, #C9A962 0%, #E2BE46 50%, #C9A962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle hover glow for cards */
.glow-hover:hover {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.1);
}

/* Form focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(201, 169, 98, 0.5) !important;
    box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.2) !important;
}

/* Button hover lift effect */
button:hover,
a:hover {
    transform: translateY(-1px);
}

button:active,
a:active {
    transform: translateY(0);
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    .reveal-up,
    .reveal-left,
    .reveal-right {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .border-white\/5 {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
