:root {
    --green: #0b6b43;
    --deep: #073522;
    --gold: #f4b72a;
    --wine: #7b1838;
    --ink: #17231c;
    --muted: #66756c;
    --soft: #f7faf8;
}

body {
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.topbar, .footer {
    background: var(--deep);
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.navbar-brand span {
    max-width: 340px;
    white-space: normal;
    line-height: 1.15;
    font-size: 1rem;
}

.nav-link {
    font-weight: 650;
    color: var(--ink);
}

.nav-link:hover {
    color: var(--green);
}

.btn-primary, .bg-primary {
    background-color: var(--green) !important;
    border-color: var(--green) !important;
}

.btn-outline-primary {
    border-color: var(--green);
    color: var(--green);
}

.btn-outline-primary:hover {
    background: var(--green);
    border-color: var(--green);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #231500;
    font-weight: 800;
}

.btn-gold:hover {
    background: #d89d15;
    border-color: #d89d15;
}

.hero-slide {
    min-height: 78vh;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 53, 34, .86), rgba(7, 53, 34, .45), rgba(7, 53, 34, .12));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: 16vh;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0;
}

.section-pad {
    padding: 86px 0;
}

.eyebrow {
    color: var(--wine);
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .12em;
    font-weight: 900;
}

.section-title {
    font-weight: 900;
    color: var(--deep);
}

.soft {
    background: var(--soft);
}

.value-card, .content-card, .post-card, .event-card, .leader-card, .stat-card {
    background: #fff;
    border: 1px solid #e5eee9;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 53, 34, .08);
}

.value-card {
    padding: 28px;
    height: 100%;
}

.value-card i {
    color: var(--green);
    font-size: 2rem;
}

.split-image {
    min-height: 420px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: #eaf0ed;
}

.gallery-item img, .post-card img, .event-card img, .leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(7, 53, 34, .9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 800;
}

.post-card img, .event-card img {
    height: 230px;
}

.page-hero {
    background: linear-gradient(rgba(7, 53, 34, .82), rgba(7, 53, 34, .82)), url("../../uploads/slider/CROSS_SECTION_OF_STUDENT.jpg") center/cover;
    color: #fff;
    padding: 110px 0;
}

.footer-logo {
    max-width: 180px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    margin: 8px 0;
}

.footer-link:hover {
    color: #fff;
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    z-index: 20;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.admin-shell {
    min-height: 100vh;
    background: #f4f8f6;
}

.admin-sidebar {
    background: var(--deep);
    min-height: 100vh;
}

.admin-sidebar a {
    color: rgba(255,255,255,.78);
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 6px;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    background: rgba(255,255,255,.12);
    color: #fff;
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: 68vh;
    }

    .section-pad {
        padding: 58px 0;
    }

    .navbar-brand span {
        max-width: 230px;
        font-size: .9rem;
    }
}
