﻿.nscou-logo {
    height: 100px; /* small, clean navbar size */
    width: auto;
}

.nscou-hero-logo {
    height: 100px; /* clear, visible in main banner */
    width: auto;
}

.homepage-image {
    width: 90%; /* Take full width of the column */
    max-width: 100%; /* Don’t restrict the image */
    height: auto; /* Keep proportions */
    display: block;
    margin: 0 auto;
}


.homepage-image {
    border-radius: 1rem !important; /* same as rounded-4 */
    overflow: hidden;
}


/* Optional – slightly smaller on very large screens */
@media (min-width: 1400px) {
    .homepage-image {
        max-width: 90%;
    }
}

footer a:hover i {
    color: #0d6efd; /* Bootstrap primary colour */
    transform: scale(1.1);
    transition: all 0.2s ease;
}

footer .social-icon {
    font-size: 1.8rem;
    margin: 0 0.6rem;
    color: #6c757d;
    text-decoration: none !important; /* remove underline */
    transition: all 0.3s ease;
}

    footer .social-icon:hover,
    footer .social-icon:focus {
        color: #0d6efd; /* blue on hover */
        transform: scale(1.15);
        text-decoration: none !important; /* stop underline on hover/focus too */
    }

/* Social icons (reuse across footer and contact) */
.social-icon {
    font-size: 1.8rem;
    margin-right: 0.6rem;
    color: #6c757d;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    transition: all 0.3s ease;
}
.social-icon:hover {
   color: #0d6efd;
   transform: scale(1.1);
}

/* Make DOB selects consistent and readable */
.dob-select {
    min-width: 120px;
    height: calc(2.5rem + 2px);
}

/* Validation message block styling */
.validation-message {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}

    /* Add a red warning triangle before each error message */
    .validation-message span::before {
        content: "⚠️";
        font-size: 1rem;
        display: inline-block;
        vertical-align: middle;
        margin-right: 0.25rem;
    }

   
/* Ensure spacing between multiple messages (for stacked ones) */
.validation-summary-errors li {
    margin-bottom: 0.4rem;
}


#termsBox {
    position: relative;
    z-index: 0; /* keep it low so it doesn’t overlap */
}

.consent-wrap {
    position: relative;
    z-index: 3; /* bring above terms box */
    background: #fff; /* ensures text is clear and catches clicks */
}

/* Improve accessibility for helper text */
.form-text {
    font-size: 15px; /* slightly larger than Bootstrap default (~14px) */
    color: #555555; /* darker than text-muted for better contrast */
    line-height: 1.5; /* improves readability for multi-line hints */
}

/* Optionally: make muted text a bit darker everywhere */
.text-muted {
    color: #6c757d !important; /* Bootstrap default is lighter (#6c757d), you can darken if needed */
}

/* Add subtle spacing for cleaner layout */
.form-text.mt-3 {
    margin-top: 0.75rem !important;
}

.form-text.mb-3 {
    margin-bottom: 0.75rem !important;
}

.card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease-in-out;
}

i.fa-solid {
    transition: 0.2s ease-in-out;
}

.card:hover i.fa-solid {
    transform: scale(1.1);
}

.card {
    border-radius: 1rem;
}

.card-body i {
    color: #198754;
}

pre {
    white-space: pre-wrap;
    background-color: #f8f9fa;
    border-radius: .5rem;
}

.nscou-red {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #c8102e;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* Drop into site.css (or your NSCOU stylesheet) */
.success-badge {
    width: 48px;
    height: 48px;
    background: #e9f7ef;
}

    .success-badge span {
        font-size: 24px;
    }

.progress-tall {
    height: 20px;
}

.help-text {
    font-size: 0.95rem;
}

.addressline1-control {
    width: 100%;
}

@media (min-width: 768px) {
    .addressline1-control {
        max-width: 360px; 
        width: auto;
    }
}

.navbar .nav-link.active {
    font-weight: 700;
    color: #c8102e !important;
    border-bottom: 2px solid #c8102e;
}

@media (max-width: 767px) {
    .navbar .nav-link.active {
        border-bottom: none;
        background-color: rgba(200, 16, 46, 0.08);
        border-radius: 0.5rem;
    }
}

.social-icon-x {
    color: #000 !important;
}

.hover-link {
    text-decoration: none; /* no underline normally */
}

    .hover-link:hover {
        text-decoration: underline; /* underline appears on hover */
    }
