
body.site-bg {
    background-color: white;
    color: #003366;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    z-index: 2;
}



/* FOOTER: White → light blue (top to bottom) */
.custom-footer {
    background: linear-gradient(to bottom, white 0%, #b3d9ff 100%) !important;
    background-color: transparent !important;
}

/* NAVBAR: Light blue → white (top to bottom) */
.custom-nav {
    background: linear-gradient(to bottom, #b3d9ff 0%, white 70%) !important;
    background-color: transparent;
}

.navbar .nav-link.active {
    font-weight: 600;      /* heavier */
    color: #000 !important; /* darker text */
}


.navbar-toggler { border-color: #003366; } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(0,51,102)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.custom-nav .nav-link {
    color: #003366;
    font-weight: 500;
}



.custom-nav .nav-link:hover {
    color: #0055aa;
}



.custom-footer .email-link {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.custom-footer .email-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    background-color: #4da3ff;
    border-color: #4da3ff;
}

.btn-primary:hover {
    background-color: #1a8cff;
    border-color: #1a8cff;
}

footer{
    max-height: 40vh;

}


.site-title { font-size: 18px; } 

@media (max-width: 768px) { .site-title {text-size: 10px; display: inline-block;} } 

@media (max-width: 300px) { .site-title { display: none;} }


@media screen and (orientation: landscape) {
    /*footer {
        padding: 10px 0;
        max-height: 10vh;
    }*/
    
    .custom-footer{

        z-index: 3;
    }
}


