/* Custom Styles for Total Quality Service Automotive */

:root {
    --burgundy-900: #5B0A1A;
    --burgundy-800: #7A1428;
    --burgundy-700: #9A2A3F;
    --blush-50: #FFF5F5;
    --blush-100: #FFE8E8;
    --blush-200: #FFD4D4;
    --blush-300: #FFB8B8;
    --blush-400: #FF9E9E;
    --blush-500: #FF8080;
    --blush-600: #E86060;
    --stone-50: #FAFAF8;
    --stone-100: #F5F5F0;
    --stone-200: #E8E8E0;
    --stone-300: #D4D4CC;
    --stone-500: #787870;
    --stone-600: #5C5C54;
    --stone-700: #44443C;
    --stone-800: #2C2C24;
}

/* Font Families */
.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

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

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

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

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

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

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

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

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

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

/* Form Focus Styles */
input:focus,
textarea:focus {
    outline: none;
}

/* Image Hover Effect */
img {
    transition: transform 0.7s ease;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Card Hover */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Button Hover Effects */
button,
a {
    transition: all 0.3s ease;
}

/* Thin Lines */
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-300), transparent);
}

/* Asymmetric Layout Adjustments */
@media (min-width: 1024px) {
    .lg\:-ml-12 {
        margin-left: -3rem;
    }
}

/* Print Styles */
@media print {
    nav,
    #contact-form,
    .hover\:scale-105 {
        display: none;
    }
    
    body {
        background: white;
    }
}
