@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8faf9;
    color: #2d3748;
    line-height: 1.6;
}

/* Base Utility Styles */
.section-divider, .heading-divider {
    height: 4px;
    width: 60px;
    background-color: #0e6231;
    margin: 12px auto 24px auto;
    border-radius: 2px;
}

.btn-donate {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    color: white;
    background-color: #0e6231;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-donate:hover {
    background-color: #0a4824;
    transform: translateY(-1px);
}

/* Header & Nav */
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 15px auto 30px auto;
}

.nav-items {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.nav-items .logo-item {
    margin-right: auto;
}

.nav-items li img {
    width: 200px;
    height: auto;
}

.small-logo {
    width: 140px;
    display: none;
    margin-right: auto;
}

.items a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.items a:hover {
    color: #0e6231;
}

/* Mobile Sidebar */
.side-bar-container {
    background-color: #0e6231;
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    z-index: 100;
    padding: 80px 20px 20px 20px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
}

.side-items {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.side-items a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1em;
    display: block;
}

.donate-button {
    border-bottom: none;
    margin-top: 15px;
}

.donate-button .btn-donate {
    width: 100%;
    background-color: #ffffff;
    color: #0e6231;
}

.menu-button, .close-button {
    cursor: pointer;
    display: none;
    z-index: 101;
}

/* Main Content Wrapper */
.main-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.welmsg {
    text-align: center;
    margin-bottom: 25px;
}

.welmsg h3 {
    font-size: 1.2em;
    color: #718096;
    font-weight: 500;
}

.welmsg h1 {
    font-size: 2.2em;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    height: 480px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.simage {
    height: 100%;
    display: none;
}

.simage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 18px;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s;
    z-index: 2;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

/* Discover Section */
.discover {
    margin: 50px 0;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.discover h2 {
    text-align: center;
    color: #1a202c;
    font-size: 1.8em;
}

.dicontainer {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.dfirst, .dsecond {
    flex: 1;
}

.dfirst p, .dsecond p {
    font-size: 0.95em;
    color: #4a5568;
    margin-bottom: 12px;
}

/* Leadership Cards */
.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.sub-container {
    width: 100%;
}

.image-teme {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.image-teme img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 15px;
    font-size: 0.95em;
    font-weight: 600;
}

/* Numbers / Stats Section */
.container-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.subcont {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
}

.subcont-2 h1 {
    font-size: 1.8em;
    color: #0e6231;
    line-height: 1;
}

.subcont-2 p {
    color: #718096;
    font-size: 0.9em;
    margin-top: 4px;
}

/* Achievements */
.ach-cont {
    margin: 50px 0;
}

.section-title-banner {
    background-color: #0e6231;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-title-banner h3 {
    font-weight: 600;
    font-size: 1.3em;
}

.ach {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.ach h4 {
    color: #1a202c;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.ach p {
    font-size: 0.95em;
    color: #4a5568;
}

/* Top Scorers Cards */
.st-cont {
    margin: 50px 0;
}

.stsc-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stsc {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stsc:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stsc img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #0e6231;
    object-fit: cover;
    margin-bottom: 12px;
}

.stsc h4 {
    font-size: 0.9em;
    color: #2d3748;
    margin-bottom: 6px;
}

.stsc-year {
    font-size: 0.8em;
    color: #a0aec0;
}

.stsc .p-col {
    color: #0e6231;
    font-weight: 700;
    font-size: 1.05em;
    margin-top: 6px;
}

/* News Section */
.news {
    margin: 50px 0;
}

.news h2 {
    text-align: center;
    color: #1a202c;
    font-size: 1.8em;
}

.news-sub {
    text-align: center;
    color: #718096;
    font-size: 0.95em;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.news-container .box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.box-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8em;
    color: #0e6231;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.box h5 {
    font-size: 1.05em;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.box p {
    font-size: 0.88em;
    color: #718096;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more {
    text-decoration: none;
    color: #0e6231;
    font-weight: 600;
    font-size: 0.88em;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive Media Queries */
@media screen and (max-width: 900px) {
    .image-container, .stsc-cont {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container-2 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 830px) {
    .max-items {
        display: none;
    }
    
    .small-logo, .menu-button {
        display: block;
    }
    
    .logo-item {
        display: none;
    }

    .dicontainer {
        flex-direction: column;
    }
    
    .slideshow-container {
        height: 350px;
    }
}

@media screen and (max-width: 600px) {
    .image-container, .stsc-cont, .news-container {
        grid-template-columns: 1fr;
    }

    .welmsg h1 {
        font-size: 1.6em;
    }
    
    .discover {
        padding: 20px;
    }
}