﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Typography scaling -------------------------------------------------- */
html {
    font-size: 14px;
    height: 100%; /* added */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Layout / Sticky Footer (Flexbox) ----------------------------------- */
body {
    background: #f5f7fb;
    font-family: 'Inter', sans-serif;
    min-height: 100vh; /* ensure full height */
    display: flex; /* flexbox layout */
    flex-direction: column; /* stack children vertically */
}
    body > .container {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

/* Make footer stick to bottom */
/* Add to your site.css */
.footer {
  font-size: 0.9rem;
  color: #555;
  background-color: #f8f9fa; /* light gray background */
  border-top: 1px solid #ddd;
}

.footer-email {
  font-weight: 600;
  color: #0056b3;  /* bootstrap primary link color */
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

/* Hero Banner */
.hero-banner img {
    width: 100%;
    border-radius: 12px;
}

/* Section Title */
.section-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

/* Link Cards */
.link-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    transition: all .2s ease;
    border: 1px solid #e6e6e6;

}

    .link-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

/* Icons */
.link-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.4rem;
    margin-right: 14px;
    flex-shrink: 0;
}

/* Make the entire card clickable */
.full-card {
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

    
    .full-card span {
        text-decoration: none !important;
    }

    
    .full-card span,
    .full-card {
        color: inherit !important;
    }

        
        .full-card,
        .full-card span {
            text-decoration: none !important;
        }

            
            .full-card:hover span {
                color: #0d6efd !important; 
            }

          
            .full-card:hover .link-card {
                transform: translateY(-4px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
            }

          
            .full-card:hover .link-icon {
                filter: brightness(1.15);
            }
