/* =========================
   FOOTER
========================= */
.site-footer {
    background: #21341C;
    color: #e6e6e6;
    margin-top: 80px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* BRAND */
.footer-brand img {
    width: 70px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.85;
}

/* INFO & LINKS */
.footer-info h4,
.footer-links h4 {
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffd700;
}

.footer-info p {
    margin-bottom: 6px;
    font-size: 13px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #e6e6e6;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #1a2a16;
    font-size: 12px;
    color: #bfbfbf;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 10px;
    }
}





/* =========================
   MENU BAR (ADMIN)
========================= */
.menu-bar {
    display: flex;
    flex-wrap: wrap;                  /* 👈 wraps to next line */
    gap: 10px;                        /* spacing between items */
    padding: 14px 18px;
    margin: 20px auto;
    background: linear-gradient(
        to right,
        rgba(84,140,47,0.95),
        rgba(84,140,47,0.85)
    );
    border-radius: 16px;
    max-width: 95%;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* MENU ITEMS */
.menu-bar a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 999px;             /* pill style */
    background-color: rgba(255,255,255,0.18);
    transition: all 0.25s ease;
    white-space: nowrap;              /* prevents text break */
}

/* HOVER */
.menu-bar a:hover {
    background-color: #ffffff;
    color: #548c2f;
    transform: translateY(-2px);
}

/* ACTIVE / CURRENT PAGE (optional) */
.menu-bar a.active {
    background-color: #ffd700;
    color: #21341C;
    font-weight: bold;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .menu-bar {
        justify-content: center;
    }

    .menu-bar a {
        font-size: 12px;
        padding: 7px 14px;
    }
}

