/* Custom styles for Phoenix Towing */

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Custom selection color */
::selection {
    background-color: #d4a0a0;
    color: #63262e;
}

/* Subtle gradient animation for hero */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

::-webkit-scrollbar-track {
    background: #fdf4f6;
}

::-webkit-scrollbar-thumb {
    background: #db7d86;
    border-radius: 4px;
}

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

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover card lift effect */
.group:hover {
    transform: translateY(-2px);
}

/* Navbar scroll state */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(140, 48, 59, 0.1);
}

/* Pulse animation for the availability indicator */
@keyframes soft-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: soft-pulse 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .font-display {
        line-height: 1.1;
    }
}

/* Print styles */
@media print {
    #floating-cta,
    .animate-bounce {
        display: none !important;
    }
}
