/* Custom Styles for Guffey's Auto Detailing */

/* Base Typography */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7; /* Sand/Off-white */
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to { 
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0; /* Start hidden */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F2EBE1;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2C3E50;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: #C05640 !important;
}

/* Mobile Menu Transition */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Image Aspect Ratios */
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
