/* Master Cobbler Styles - Taylor's Boot & Shoe Repair */

/* Cookie Consent Styling */
.cobbler-checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #F5F5DC;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

.cobbler-checkbox:checked {
    background-color: #DAA520;
    border-color: #DAA520;
}

.cobbler-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: #654321;
    font-size: 12px;
    font-weight: bold;
    left: 1px;
    top: -1px;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Form Enhancements */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

/* Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Leather Texture Enhancement */
.leather-texture {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.1) 2px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.1) 1px, transparent 2px);
    background-size: 20px 20px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Workshop Hours Styling */
.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

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

.testimonial-card:hover {
    transform: scale(1.02);
}

/* Navigation Enhancement */
.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DAA520;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Footer Enhancement */
.footer-section h4 {
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #DAA520;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .cookie-consent-banner,
    nav,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .bg-leather-brown {
        background-color: #5D4E37;
    }
    
    .text-boot-tan {
        color: #8B7355;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}