/* 
 * Hope Chiropractic - Custom Styles
 * Bold Editorial Aesthetic
 */

:root {
    --brand-burgundy: #800020;
    --brand-burgundy-dark: #580017;
    --brand-blush: #FDF2F5;
    --brand-cream: #FAF9F6;
    --brand-charcoal: #1A1A1A;
}

body {
    background-color: var(--brand-cream);
    color: var(--brand-charcoal);
    scroll-behavior: smooth;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

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

/* Form Styling */
input:focus, textarea:focus {
    border-bottom-color: var(--brand-burgundy);
}

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease;
}

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

::-webkit-scrollbar-track {
    background: var(--brand-blush);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-burgundy);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-burgundy-dark);
}
