﻿/* ===== HERO SECTION FIXES ===== */
/* Desktop - Force dark blue */
.hero {
    background: rgba(13, 28, 66, 0.95) !important;
    background-color: rgba(13, 28, 66, 0.95) !important;
    background-image: none !important;
}

@media screen and (max-width: 768px) {
    .hero {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(13, 28, 66, 0.95) !important;
        background-color: rgba(13, 28, 66, 0.95) !important;
        background-image: none !important;
        color: white !important;
        padding: 4rem 1rem 1.5rem !important;
        margin-top: 0 !important;
    }

    .hero * {
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 1rem !important;
        margin-top: 0 !important;
    }
}

/* ===== FOOTER FIXES ===== */
/* Desktop - Force dark blue (same as hero/banner - solid) */
footer {
    background: rgb(13, 28, 66) !important;
    background-color: rgb(13, 28, 66) !important;
    color: white !important;
}

footer * {
    color: white !important;
}

@media screen and (max-width: 768px) {
    footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgb(13, 28, 66) !important;
        background-color: rgb(13, 28, 66) !important;
        color: white !important;
    }

    footer * {
        visibility: visible !important;
        opacity: 1 !important;
        color: white !important;
    }
}
