

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400&display=swap');

/* =============================================
   NAVBAR
   ============================================= */

.site-nav {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1030;
    font-family: 'Arimo', sans-serif;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
}

/* ---------- Brand / Logo ---------- */
.site-nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-nav__logo {
    height: 52px;
    width: auto;
    display: block;
}

/* Fallback text logo (shown when logo.png is absent) */
.site-nav__logo-fallback {
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.site-nav__logo-box {
    background: #C5CC7A;
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-nav__logo-box-inner {
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    color: #000;
    text-align: center;
}

.site-nav__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.site-nav__logo-top {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.site-nav__logo-mid {
    font-size: 13px;
    font-weight: 700;
    color: #C5CC7A;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.site-nav__logo-bot {
    font-size: 10px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* ---------- Nav links ---------- */
.site-nav__menu {
    display: flex;
    align-items: center;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: #C5CC7A;
    border-bottom-color: #C5CC7A;
}

/* Dropdown link inherits nav link style */
.site-nav__link.dropdown-toggle {
    border-bottom: none;
}

/* ---------- Hamburger (mobile) ---------- */
.site-nav__toggler {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.site-nav__toggler span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .site-nav__toggler {
        display: flex;
    }

    .site-nav__menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #000;
        padding: 16px 24px 24px;
        border-top: 1px solid #222;
    }

    .site-nav__menu.is-open {
        display: flex;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .site-nav__item {
        width: 100%;
        border-bottom: 1px solid #1a1a1a;
    }

    .site-nav__link {
        display: block;
        padding: 12px 0;
        border-bottom: none;
    }
}

/* =============================================
   (remaining styles below)
   ============================================= */

/* =============================================
   HOME – FEATURES STRIP
   ============================================= */

.home-features {
    display: flex;
    flex-direction: row;
    font-family: 'Arimo', sans-serif;
}

.home-features__panel {
    flex: 1 1 0;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-features__panel--light {
    background: #BDBD72;
}
.home-features__panel--deep {
    background: #B7B760;
}
.home-features__panel--dark {
    background: #808000;
}

.home-features__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.home-features__sub {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .home-features {
        flex-direction: column;
    }

    .home-features__panel {
        padding: 36px 28px;
    }

    .home-features__title {
        font-size: 28px;
    }
}


/* Keep the original visual design but make footer layout resilient
   to zooming and smaller widths. We use a gentle page flex layout so
   the footer sits at the bottom when content is short, avoid very
   large fixed horizontal padding, and allow columns to wrap. */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto; /* push footer to bottom when content is short */
}

.site-footer {
    background: #3A3A1A;
    font-family: 'Arimo', sans-serif;
    /* keep vertical spacing but avoid very large horizontal padding */
    padding: 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly!important;
    gap: 32px;
    box-sizing: border-box;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1088px;
    width: 100%;
    margin: 0 auto; /* center inner container */
    box-sizing: border-box;
}

/* Three-column row: allow wrapping and give columns sensible min widths */
.site-footer__columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__col {
    flex: 1 1 260px; /* flex-basis 260px keeps columns readable */
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

/* Section headings (BFEA / Contact Us / Quick Links) */
.site-footer__heading {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #C5CC7A;
    margin: 0;
}

/* Body text paragraphs */
.site-footer__body p {
    font-size: 14px;
    line-height: 23px;
    color: #D1D5DC;
    margin: 0;
}

.site-footer__body strong {
    font-size: 14px;
    line-height: 20px;
    color: #D1D5DC;
    font-weight: 700;
}

.site-footer__email {
    color: #D1D5DC;
    text-decoration: none;
}

.site-footer__email:hover {
    color: #C5CC7A;
}

/* Quick links list */
.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__links li a {
    font-size: 14px;
    line-height: 20px;
    color: #D1D5DC;
    text-decoration: none;
}

.site-footer__links li a:hover {
    color: #C5CC7A;
}

/* Bottom bar */
.site-footer__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #4A5565;
    padding: 25px 0 0;
    margin-bottom: 0;
    padding-bottom: 25px;
    gap: 12px;
    flex-wrap: wrap; /* allow copyright and legal links to stack */
}

.site-footer__copy {
    font-size: 12px;
    line-height: 16px;
    color: #D1D5DC;
}

.site-footer__legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.site-footer__legal a {
    font-size: 12px;
    line-height: 16px;
    color: #D1D5DC;
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: #C5CC7A;
}

.site-footer__sep {
    font-size: 12px;
    color: #D1D5DC;
    margin: 0 8px;
}

/* ---------- Responsive Footer ---------- */
@media (max-width: 1200px) {
    .site-footer {
        padding: 48px 48px 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 24px 0;
    }

    .site-footer__columns {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-footer__col {
    flex: none; /* flex-basis 260px keeps columns readable */
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}
}



/* ---------- Buttons ---------- */
.btn {
    border-radius: 0.5rem;
}

/* ---------- Cards ---------- */
.card {
    border-radius: 0.75rem;
}

/* ---------- Inputs ---------- */
.form-control,
.input-group-text {
    border-radius: 0.5rem;
}

.input-group .form-control {
    border-radius: 0;
}

.input-group .input-group-text:first-child {
    border-radius: 0.5rem 0 0 0.5rem;
}

.input-group .form-control:last-child,
.input-group .btn:last-child {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
}

/* =============================================
   HOME – LATEST NEWS
   ============================================= */

.latest-news {
    background: #fff;
    padding: 30px 0 25px;
    font-family: 'Arimo', sans-serif;
}

.latest-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.latest-news__heading {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.latest-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ---------- News Card ---------- */
.news-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.news-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

.news-card__img-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card__img-wrap--placeholder::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.04);
}

.news-card__body {
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.news-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.news-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6b7280;
}

.news-card__meta-item i {
    font-size: 16px;
}

.news-card__like {
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s;
}

.news-card__like:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
    .latest-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .latest-news__grid {
        grid-template-columns: 1fr;
    }

    .latest-news__heading {
        font-size: 28px;
    }

    .latest-news__inner {
        padding: 0 20px;
    }
}

/* =============================================
   FIXED SOCIAL SIDEBAR
   ============================================= */

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.social-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #808000;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-sidebar__link:hover {
    background: #C5CC7A;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
}


