/* Custom Styles for CabinetRefacing.nyc */

:root {
    --primary-blue: #2563eb;
    --navy: #1e3a8a;
    --soft-white: #f8fafc;
    --warm-gray: #f5f5f4;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: var(--soft-white);
    scroll-behavior: smooth;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('23555986-kitchen-8368672.jpg');
    background-size: cover;
    background-position: center;
}

.sticky-header {
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    top: 100%;
    left: 0;
    border: 1px solid #f1f5f9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #475569;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f5f9;
    color: var(--primary-blue);
    padding-left: 20px;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
}
