/* 
 * Main Stylesheet for Home Secure Connect 
 * Production Ready CSS 
 */

:root {
    --primary-color: #0d6efd;
    /* Bootstrap primary blue */
    --primary-hover: #0b5ed7;
    --text-dark: #212529;
    --bg-light: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Banner Image Styles */
.banner-wrapper {
    max-width: 1100px;
    /* Constrain ultra-wide screens */
    min-height: 300px;
    /* Provide space for the loader */
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-image:hover {
    transform: translateY(-8px);
}

/* Responsive Display Logic for Banners */
.mobile-banner {
    display: none;
}

@media (max-width: 767.98px) {
    .desktop-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
    .banner-wrapper {
        min-height: 150px;
    }
}