/* NueCoat Painting Custom Styles */

:root {
    --primary-orange: #FF6B35;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

/* Navigation */
.navbar-brand img {
    max-width: 200px;
    height: auto;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

.btn-warning {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

.btn-warning:hover {
    background-color: #e55a2b !important;
    border-color: #e55a2b !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #34495e 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    padding: 4rem 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Service Cards */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    color: white;
}

.cta-banner h2,
.cta-banner p {
    color: white !important;
}

/* Footer */
footer a:hover {
    color: var(--primary-orange) !important;
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}
