/* Custom styles for RA Appliance Service */

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

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

::-webkit-scrollbar-track {
    background: #2a1418;
}

::-webkit-scrollbar-thumb {
    background: #a6626d;
    border-radius: 5px;
}

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

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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

/* Service card hover effect */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Input focus styles */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
}

/* Button press effect */
button:active {
    transform: scale(0.98);
}

/* Image aspect ratios */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile menu transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Hero section gradient overlay */
.hero-gradient {
    background: linear-gradient(135deg, rgba(42, 20, 24, 0.9) 0%, rgba(74, 41, 46, 0.7) 50%, rgba(42, 20, 24, 0.9) 100%);
}

/* Amber accent line */
.amber-line {
    position: relative;
}

.amber-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f0a500, #ffb820);
}

/* Text selection color */
::selection {
    background: #f0a500;
    color: #2a1418;
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .font-serif {
        line-height: 1.2;
    }
}
