/* Custom CSS for Harrison Family Practice */

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5a242b;
    --blush: #F7F0EE;
    --blush-light: #FDFBF9;
    --blush-accent: #E8D5D0;
    --text-dark: #1A1A1A;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(232, 213, 208, 0.5);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--blush-accent);
    border-radius: 4px;
}

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

/* Selection Color */
::selection {
    background-color: var(--burgundy);
    color: white;
}

/* Form Focus States */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--burgundy) !important;
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Image Hover Effects */
.group:hover .group-hover\:translate-x-1 {
    transform: translateX(4px);
}

/* Print Styles */
@media print {
    nav, button, .animate-bounce {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .bg-\[\#1A1A1A\] {
        background: #fff !important;
        color: #000 !important;
    }
}
