﻿:root{
    --accent:#1565c0;
    --accent-2:#0d47a1;
    --muted:#6c757d;
    --bg:#fafbfd;
    --radius:10px;
    --max-width:1100px;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
    background: var(--bg);
    color: #222;
    padding-top: 110px; /* espacio para navbar fijo + hero */
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.6;
}

/* Navbar custom (Bootstrap 5) */
.navbar-custom {
    background: linear-gradient(90deg, rgba(13,71,161,0.95), rgba(21,101,192,0.95));
    box-shadow: 0 4px 18px rgba(13,71,161,0.12);
}

.navbar-custom .navbar-brand {
    color: #fff;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}
#nav-logo{
    height:40px;
    width:auto;
    border-radius:6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Links */
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.95);
    font-weight:600;
}
.navbar-custom .nav-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Hero */
.hero{
    background-image: url('../Content/Images/Banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display:flex;
    align-items:center;
    margin-top:60px;
}
.hero-overlay{
    width:100%;
    background: linear-gradient(0deg, rgba(3,37,65,0.55), rgba(3,37,65,0.15));
    padding:48px 0;
    color: #fff;
}
.hero-content{
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero h1{
    font-size: 2.4rem;
    margin:0 0 10px 0;
    font-weight:700;
}
.hero .lead{
    font-size:1.1rem;
    margin-bottom:18px;
    color: #e6f0ff;
}
.btn-cta{
    background: var(--accent);
    border-color: var(--accent-2);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(13,71,161,0.18);
}

/* Content container tweaks */
.body-content {
    padding: 30px 15px;
    max-width: var(--max-width);
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 6px 30px rgba(29,37,46,0.04);
}

/* Forms and inputs */
.form-control {
    border-radius: 6px;
    border: 1px solid #e6e9ee;
}

/* Footer */
.site-footer{
    margin-top:30px;
    padding: 28px 16px;
    color: var(--muted);
}
.site-footer .footer-brand img{
    height:72px;
    width:auto;
    margin-bottom:8px;
    border-radius:6px;
}
.site-footer h4{
    font-weight:700;
    margin-bottom:8px;
}
.site-footer a{
    color:var(--muted);
}
.site-footer .social-link { color: var(--accent); }

/* Responsive tweaks */
@media (max-width:768px){
    .hero h1{ font-size:1.6rem; }
    body { padding-top:140px; }
    .hero { min-height:220px; }
}
