html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
}

:root {
    --primary: #14213d;
    --primary-700: #0f1a31;
    --accent: #f1c40f;
    --ink: #0b1220;
    --muted: #6b7280;
    --maroon: #b22222;
    --white: white;
}

.topbar {
    background: linear-gradient(90deg, var(--primary), var(--primary-700));
}

.top-link {
    color: #fff;
    opacity: 0.9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .top-link:hover {
        opacity: 1;
        transform: scale(1.25);
    }

.btn-top-cta {
    background: var(--accent);
    color: #2b2b2b;
}

    .btn-top-cta:hover {
        background-color: brown;
        filter: brightness(0.95);
    }

.header-glass {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-scrolled .navbar {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.navbar {
    min-height: 72px;
    background: #fff;
}

.logo-img {
    height: 100px;
}

@media (min-width: 1200px) {
    .logo-img {
        height: 48px;
    }
}

.main-nav {
    gap: 0.25rem;
}

@media (min-width: 992px) {
    .main-nav {
        gap: 0.75rem;
    }
}

.navbar-nav .nav-link {
    padding: 1.1rem 0.6rem;
    color: #222 !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    font-size: 14px;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--maroon) !important;
    }

    .navbar-nav .nav-link.active {
        color: var(--maroon) !important;
        border-bottom: 2px solid var(--maroon);
    }

.navbar .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
}

.about-dropdown {
    background: var(--primary);
    padding: 0;
    border-radius: 0;
    overflow-y: auto;
}

    .about-dropdown .dropdown-item {
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0.6rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

        .about-dropdown .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100% );
    z-index: 1;
}

.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: clamp(58vh, 72vh, 78vh);
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.55) 100% );
}

.hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(4rem, 8vh, 7rem);
    color: #fff;
    z-index: 2;
}

.bg-hero-badge {
    background: var(--accent);
    color: #2b2b2b;
}

.btn-hero {
    background: var(--accent);
    color: #2b2b2b;
}

    .btn-hero:hover {
        filter: brightness(0.95);
    }

.fw-extrabold {
    font-weight: 800;
}

.welcome .welcome-img {
    height: 340px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .welcome .welcome-img {
        height: 360px;
    }
}

.welcome .carousel-control-prev-icon,
.welcome .carousel-control-next-icon {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    padding: 14px;
}

.welcome .carousel-control-prev,
.welcome .carousel-control-next {
    width: 12%;
}

.welcome .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset;
}

.welcome .carousel-indicators .active {
    background-color: #fff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3) inset;
}

.welcome-link {
    color: #6c757d;
    text-decoration: none;
    letter-spacing: 0.08em;
}

    .welcome-link:hover {
        color: #343a40;
    }

.admission-cta {
    background: var(--primary);
}

.btn-cta {
    background: #d9b468;
    color: #2b2b2b;
    border: 0;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease-in-out;
}

    .btn-cta:hover {
        background: #d9b468;
        color: brown;
    }

.contact-strip {
    background: var(--white);
    padding: 2rem 0;
}

.contact-box {
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

    .contact-box:hover {
        background: rgba(255, 255, 255, 0.12);
    }

.main-footer {
    background: #171b24;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

    .footer-link:hover {
        color: #fff;
    }

.footer-bottom {
    background: #131722;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .btn-top-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}
.text-justify {
    text-align: justify;
}

/*.container{
    max-width:100%
}*/
