/* 
 * Zompero Professional Cleaning - Custom Styles 
 * Ensure color hex codes match the precise logo assets provided by the client.
 */

:root {
    /* Primary Brand Colors */
    --brand-green: #2e7d32;
    /* Replace with exact hex from logo if different */
    --brand-green-dark: #1b5e20;
    --brand-white: #ffffff;
    --brand-accent: #81c784;

    /* Typography & Backgrounds */
    --text-main: #333333;
    --bg-light: #f8f9fa;

    /* Primary Brand Colors */
    --bg-color-1: #d9e3d8;
    --bg-color-2: #9abaa9;
    --bg-color-3: #184f49;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
    font-family:  "Outfit", sans-serif;
    color: var(--text-main);
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Bricolage Grotesque", sans-serif;
}

/* Navbar */
.navbar {
    background-color: #d9e3d8;
    padding: 0;
}

.brand-logo {
    max-height: 100px;
    width: auto;
}

.brand-text {
    color: var(--brand-green);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: "Bricolage Grotesque", sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-green);
}

/* Buttons */
.btn-primary.btn-cta {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary.btn-cta:hover {
    background-color: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: url('../img/header.jpg') center/cover no-repeat;
    /* Ensure image exists in /img */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Darkens image to make text readable */
    z-index: 1;
}

.text-accent {
    color: var(--brand-accent);
}

.hero-subtitle {
    max-width: 700px;
}

/* Utilities */
.text-brand-green {
    color: var(--brand-green) !important;
}

.bg-brand-green {
    background-color: var(--brand-green) !important;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

/* Feature & Service Cards */
.feature-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.service-card {
    background-color: var(--brand-white);
}

/* Form Styles */
.contact-wrapper {
    border-top: 5px solid var(--brand-green);
}

.form-control,
.form-select {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* Footer */
.hover-white:hover {
    color: var(--brand-white) !important;
}

.copyright {
    color: #f6d70a;
    text-decoration: none;
}

footer {
    background: var(--bg-color-1);
}

/* Footer Social Icon Buttons */
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social-btn:hover {
    background-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}