/* Custom CSS for AquaBlast Cleaning */

:root {
    --primary-color: #015571;
    --secondary-color: #00757F;
    --accent-color: #FFDBA1;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Custom Bootstrap color overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

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

/* Navigation */
.navbar-brand img {
    height: 40px;
}

.navbar {
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    padding-top: 100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
}

/* Team Section */
.team-member {
    padding: 1rem;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

/* Quote Form */
.quote-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.hero-section {
    background: linear-gradient(to right, var(--accent-color) 0%, rgba(255, 219, 161, 0.9) 40%, rgba(255, 219, 161, 0.3) 60%, transparent 100%), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    padding-top: 100px;
}

/* Mobile adjustments for hero background */
@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(to bottom, var(--accent-color) 0%, rgba(255, 219, 161, 0.95) 60%, rgba(255, 219, 161, 0.8) 100%), 
                    url('../images/hero-bg.jpg');
        background-size: cover;
        background-position: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
}
