/* ===== GLOBAL ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95em;
    margin: 0;
    padding: 0;
    background-color: #14532d;
    background-image: url("images/NigeriaMap.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    color: #1f2937;
}

/* subtle page overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(20, 83, 45, 0.55);
    z-index: -1;
}

/* ===== CONTAINER ===== */
#container {
    width: 100%;
    margin-top: 24px;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 2px solid #0f3f22;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ===== MASTHEAD ===== */
#masthead {
    width: 670px;
    margin: 0 auto;
    padding: 26px 0 18px 0;
    text-align: center;
}

#masthead h1 {
    margin: 0;
    color: #14532d;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

#masthead h3 {
    margin: 10px 0 0 0;
    color: #6b7280;
    font-weight: normal;
}

/* ===== NAVIGATION ===== */
#navigation {
    width: 670px;
    margin: 0 auto 18px auto;
    background: linear-gradient(135deg, #14532d, #166534);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20, 83, 45, 0.18);
    box-sizing: border-box;
}

#navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

#navigation li {
    margin: 0;
}

#navigation a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.2s ease;
}

#navigation a:hover {
    background-color: #0f3f22;
    color: #d4a017;
    transform: translateY(-1px);
}

/* active page */
#navigation a.active,
#navigation li.active a,
#navigation a[aria-current="page"] {
    background-color: #d4a017;
    color: #14532d;
    border-color: #d4a017;
}

/* ===== PAGE LAYOUT ===== */
#page_content {
    width: 670px;
    margin: 0 auto;
    padding-bottom: 24px;
    overflow: hidden;
}

#content {
    float: left;
    width: 320px;
    padding: 8px 0 24px 0;
    box-sizing: border-box;
}

#sidebar {
    float: right;
    width: 330px;
    padding: 8px 0 24px 0;
    box-sizing: border-box;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    width: 100%;
    max-width: 670px;
    height: 320px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 83, 45, 0.15),
        rgba(20, 83, 45, 0.45)
    );
    pointer-events: none;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-banner img.active {
    display: block;
}

.hero-banner img.contain-img {
    object-fit: contain;
    background: #f3f4f6;
}

/* ===== CONTENT STYLES ===== */
#content h2,
#content h3,
#content h4,
#content h5,
#content h6,
.welcome-box h2,
.payment-hero h2 {
    color: #14532d;
    margin-top: 0;
}

#content p,
#sidebar p,
.welcome-box p {
    line-height: 1.7;
    color: #374151;
}

#content img {
    max-width: 100%;
    height: auto;
    padding: 5px;
    border: 1px solid #708090;
    box-sizing: border-box;
    border-radius: 8px;
}

/* ===== WELCOME / FEATURE BOX ===== */
.welcome-box {
    background: #f8fff8;
    border: 1px solid #cfe3cf;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.welcome-box h2 {
    margin-bottom: 14px;
    font-size: 1.9rem;
}

.welcome-box p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

/* ===== QUICK LINKS / BUTTONS ===== */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 24px 0 10px 0;
}

.quick-links a,
.event-btn,
.contact-form button,
.pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #166534, #14532d);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 6px 14px rgba(20, 83, 45, 0.15);
    transition: all 0.2s ease;
}

.quick-links a:hover,
.event-btn:hover,
.contact-form button:hover,
.pay-btn:hover {
    background: linear-gradient(135deg, #0f3f22, #14532d);
    color: #d4a017;
    transform: translateY(-1px);
}

.quick-links a {
    min-height: 48px;
}

/* ===== FORMS ===== */
.contact-form {
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c4cbd4;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #166534;
}

/* ===== EVENT CARDS ===== */
.event-card {
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.event-card h3 {
    margin-top: 0;
    color: #14532d;
}

.gala-pricing {
    max-width: 700px;
    margin: 0 auto 24px auto;
    padding: 18px;
    border: 1px solid #e5d9a8;
    border-radius: 14px;
    background-color: #fffbea;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.gala-pricing p {
    margin: 8px 0;
    font-size: 1.05em;
    color: #374151;
}

/* ===== PAYMENT PAGE BLOCKS ===== */
.payment-page {
    width: 92%;
    max-width: 1100px;
    margin: 30px auto;
    padding-bottom: 30px;
}

.payment-hero {
    background: linear-gradient(135deg, #14532d, #166534);
    color: #ffffff;
    padding: 34px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    margin-bottom: 28px;
}

.payment-hero h2 {
    color: #d4a017;
    margin-bottom: 12px;
}

.payment-hero p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.payment-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.payment-card h3 {
    margin-top: 0;
    color: #14532d;
}

.payment-card p {
    color: #374151;
    line-height: 1.6;
}

.amount,
.price {
    font-size: 1.7rem;
    font-weight: bold;
    color: #d4a017;
    margin: 10px 0 18px;
}

.note,
.payment-note {
    margin-top: 28px;
    padding: 18px;
    background: #fffbea;
    border: 1px solid #f3e7b3;
    border-radius: 12px;
    text-align: center;
    color: #5b4b00;
    line-height: 1.6;
}

/* ===== CHAT BUTTON ===== */
.nca-chat-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    width: auto;
    height: auto;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #166534, #14532d);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    z-index: 9999;
}

.nca-chat-toggle .chat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    color: #ffffff;
}

.nca-chat-toggle .chat-text {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    color: #FFD700;
    font-weight: bold;
}

/* ===== SIDEBAR ===== */
#sidebar p {
    color: #555;
    line-height: 1.6;
}

#sidebar ul {
    padding-left: 20px;
}

#sidebar img {
    float: right;
    margin: 0 0 5px 5px;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
#footer {
    clear: both;
    width: 100%;
    margin: 0;
    padding: 22px 15px;
    text-align: center;
    background-color: #14532d;
    border-top: 2px solid #0f3f22;
    box-sizing: border-box;
}

#footer p {
    margin: 0;
    font-size: 0.95em;
    color: #ffffff;
}

#footer a {
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
}

#footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== GENERAL LINKS ===== */
a {
    color: #14532d;
    text-decoration: underline;
}

a:hover {
    color: #708090;
    text-decoration: underline;
}

.style_bold {
    font-weight: bold;
}

.style_italic {
    font-style: italic;
}

/* ===== ANIMATION ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(22, 101, 52, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 700px) {
    #masthead,
    #navigation,
    #page_content {
        width: 95%;
    }

    #content,
    #sidebar {
        float: none;
        width: 100%;
        padding: 8px 0 16px 0;
    }

    .hero-banner {
        height: 240px;
        border-radius: 12px;
    }

    .welcome-box {
        padding: 20px 16px;
    }

    .welcome-box h2 {
        font-size: 1.6rem;
    }

    #navigation {
        padding: 10px 8px;
    }

    #navigation ul {
        justify-content: center;
        gap: 8px;
    }

    #navigation a {
        padding: 9px 12px;
        font-size: 0.95em;
    }

    .quick-links {
        gap: 12px;
    }

    .quick-links a,
    .event-btn,
    .pay-btn {
        width: 100%;
        max-width: 280px;
    }
}