/* Standard CSS for Charge Pros - tailored for use with Tailwind CDN */

/* Container overrides */
.container-custom {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container-custom {
        max-width: 1280px;
    }
}

/* Hero Section Styles */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.85);
    /* Increased opacity to 0.85 for text readability */
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Background Images */
.bg-hero-home {
    background-image: url('../images/hero_home.png');
}

.bg-hero-services {
    background-image: url('../images/hero_home.png');
}

.bg-hero-about {
    background-image: url('../images/hero_about.png');
}

.bg-hero-contact {
    background-image: url('../images/hero_contact.png');
}

/* Button Styles (Backups if Tailwind classes fall through, though inline classes are preferred) */
.btn-primary {
    background-color: #0066CC;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0052a3;
}