/*
Theme Name: OOJ Friends of Peace
Version: 1.0
*/

/* =========================
   GLOBAL
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: #003366;
    padding: 6px 0;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 52px;
    width: auto;
}

/* =========================
   NAVIGATION (DESKTOP)
========================= */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.2;
}

.nav-menu li a:hover {
    text-decoration: underline;
}

/* =========================
   GHANA STRIPE
========================= */
.ghana-stripe {
    display: flex;
    height: 6px;
}
.ghana-stripe div { flex: 1; }
.red { background: #ce1126; }
.yellow { background: #fcd20f; }
.green { background: #006b3f; }

/* =========================
   LEADERSHIP
========================= */
.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.executive-card {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.executive-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.executive-card h3 {
    color: #003366;
    margin: 10px 0 5px;
}

.executive-card p {
    margin: 4px 0;
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* =========================
   EVENTS
========================= */
.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-box {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #003366;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #003366;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.footer-section a {
    color: #ffcc00;
}

/* =========================
   MOBILE (BEST PRACTICE – NO HAMBURGER)
========================= */
@media (max-width: 768px) {

    /* HEADER */
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 12px 10px;
    }

    /* MENU – STACKED, CLEAN */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        gap: 8px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 17px;
        font-weight: 600;
    }

    /* CONTENT STACK */
    .executive-grid,
    .gallery-grid,
    .event-list,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .executive-card img {
        width: 140px;
        height: 140px;
    }
}
/* =========================
   FIX MENU SIZE & ALIGNMENT
========================= */
.nav-menu {
    display: flex;
    flex-wrap: wrap;                 /* allows wrapping */
    gap: 16px;                       /* smaller spacing */
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.nav-menu li a {
    font-size: 14px;                 /* reduced size */
    padding: 8px 6px;
    white-space: nowrap;
}

/* =========================
   REMOVE BULLETS FROM PAGE CONTENT
========================= */
.entry-content ul,
.entry-content ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.entry-content li {
    margin-bottom: 8px;
}

/* =========================
   MOBILE: STACK MENU CLEANLY
========================= */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
    }

    .nav-menu {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
}
