/* Custom styles for ClimateFix.com */

/* ClimateFix Brand Colors - Matching Logo */
:root {
    --cf-blue: #2596be;
    --cf-orange: #f39c12;
    --cf-teal: #17a2b8;
    --cf-dark-blue: #1e7e9f;
    --cf-light-blue: #5bc0de;
}

.hero-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Enhanced hero overlay for better text readability */
.hero-section .hero-overlay {
    backdrop-filter: blur(1px);
}

/* Improve text contrast on hero image */
.hero-section .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Text shadow for better readability over hero image */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-input-section {
    max-width: 600px;
    margin: 0 auto;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .hero-input-section .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-input-section .btn {
        width: 100%;
    }
}

/* Public site specific styles */
.public-site {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: 600;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out;
}

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

/* ClimateFix Brand Button Styles */
.btn-climatefix-blue {
    background-color: var(--cf-blue);
    border-color: var(--cf-blue);
    color: white;
}

.btn-climatefix-blue:hover {
    background-color: var(--cf-dark-blue);
    border-color: var(--cf-dark-blue);
    color: white;
}

.btn-outline-climatefix-blue {
    border-color: var(--cf-blue);
    color: var(--cf-blue);
}

.btn-outline-climatefix-blue:hover {
    background-color: var(--cf-blue);
    border-color: var(--cf-blue);
    color: white;
}

.text-climatefix-blue {
    color: var(--cf-blue) !important;
}

.bg-climatefix-blue {
    background-color: var(--cf-blue) !important;
}