/* Custom Styles for Shine My Ride */

:root {
    --coral: #FF6B6B;
    --coral-dark: #E85555;
    --charcoal-dark: #2D3436;
    --charcoal-light: #636E72;
    --peach: #FFEAA7;
    --peach-light: #FFF8E7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Gradient Classes */
.coral-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

/* Navbar Styles */
#navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Service Card Hover Effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--coral);
}

.service-card:hover .w-16 {
    transform: scale(1.1) rotate(5deg);
}

/* Testimonial Card */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

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

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

.animate-float-delay {
    animation: float-delay 5s ease-in-out infinite;
    animation-delay: 1s;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--coral);
    border-radius: 5px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-fredoka {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .service-card,
    .testimonial-card {
        break-inside: avoid;
    }
}
