/* =========================================================
   1. GLOBAL RESET & BASE TYPOGRAPHY
   ========================================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #333333;
    background-color: #fcfcfc;
    line-height: 1.6;
}

h1, h3, h4, h5, h6 {
    color: #222222;
    margin-top: 0;
}

/* Global H2 Heading Color */
h2 {
    color: #009933 !important;
    margin-top: 0;
}

a {
    color: #2A86C7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================================
   2. TOP ANNOUNCEMENT BAR
   ========================================================= */
.top-info-bar {
    background-color: #1b1b1b;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-bar a { 
    color: #72b9ea; 
    text-decoration: none; 
}

.top-info-bar a:hover {
    text-decoration: underline;
}

/* =========================================================
   3. SITE HEADER & NAVIGATION
   ========================================================= */
.site-header-wrapper {
    background: #ffffff;
    border-bottom: 2px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

nav { 
    display: block; 
}

nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

nav > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}

nav > ul > li > a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px;
    display: block;
    white-space: nowrap;
    cursor: pointer;
}

nav > ul > li > a:hover {
    color: #2A86C7;
    background-color: #f4f8fb;
    border-radius: 4px;
}

.arrow-icon {
    font-size: 11px;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.2s ease;
}

nav ul li.open > a .arrow-icon {
    transform: rotate(180deg);
}

/* Dropdown Submenus */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    padding: 8px 0;
    z-index: 10000;
    list-style: none;
    margin: 0;
    flex-direction: column;
}

nav ul li.open > ul {
    display: flex;
}

nav ul li ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

nav ul li ul li a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    display: block;
    white-space: nowrap;
    text-decoration: none;
}

nav ul li ul li a:hover {
    background-color: #2A86C7;
    color: #ffffff;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-header-donate {
    background: #2A86C7;
    color: #ffffff !important;
    padding: 9px 16px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-header-donate:hover {
    background-color: #1e679b;
}

.btn-header-apply {
    background: #333333;
    color: #ffffff !important;
    padding: 9px 16px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-header-apply:hover {
    background-color: #111111;
}

.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================================
   4. HERO BANNER
   ========================================================= */
.hero-section {
    background: url('/assets/thankyouservice%20related/background.png') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
    margin-bottom: 40px;
    border-bottom: 3px solid #2A86C7;
}

.hero-content { 
    max-width: 850px; 
    margin: 0 auto; 
}

.hero-section h1 {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 0 12px rgba(0,0,0,0.6);
}

.hero-section p {
    font-size: 22px;
    margin: 0 auto 30px auto;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.85);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: #2A86C7;
    color: #ffffff !important;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: background-color 0.2s ease;
}

.btn-hero-primary:hover { 
    background-color: #1e679b; 
}

.btn-hero-secondary {
    background-color: #ffffff;
    color: #222222 !important;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: background-color 0.2s ease;
}

.btn-hero-secondary:hover { 
    background-color: #e0e0e0; 
}

/* =========================================================
   5. PAGE LAYOUT CONTAINERS & CARDS
   ========================================================= */
.main-layout {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.content-left { 
    flex: 1.2; 
    min-width: 300px; 
}

.sidebar-right { 
    flex: 0.8; 
    min-width: 300px; 
}

.info-block {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.info-block h2 {
    color: #009933 !important;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
}

.features-list { 
    list-style: none; 
    padding-left: 0; 
}

.features-list li { 
    margin-bottom: 20px; 
}

.features-list h3 { 
    margin-bottom: 5px; 
    color: #2A86C7; 
    font-size: 20px; 
}

.apply-box {
    background-color: #f4f8fb;
    border-left: 4px solid #2A86C7;
    padding: 18px;
    border-radius: 4px;
    margin-top: 20px;
}

/* =========================================================
   6. WORKSHOP SHOWCASE GRID
   ========================================================= */
.workshop-showcase-section {
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 50px 20px;
    margin-top: 40px;
}

.showcase-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: center; 
}

.showcase-container h2 { 
    font-size: 30px; 
    margin-bottom: 10px; 
    color: #009933 !important; 
}

.showcase-subtitle { 
    color: #666666; 
    margin-bottom: 35px; 
    font-size: 16px; 
}

.showcase-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px; 
    justify-content: center; 
    align-items: stretch;
}

.showcase-card {
    flex: 1; 
    min-width: 280px; 
    max-width: 360px;
    background: #ffffff; 
    border: 1px solid #e0e0e0;
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.showcase-card img { 
    width: 100%; 
    height: 230px; 
    object-fit: contain; 
    background-color: #f4f4f4;
    display: block; 
}

.showcase-card-body { 
    padding: 20px; 
    flex-grow: 1;
}

.showcase-card-body h3 { 
    margin-top: 0; 
    font-size: 20px; 
    color: #222222; 
}

.showcase-card-body p { 
    font-size: 14px; 
    color: #666666; 
    line-height: 1.6; 
    margin-bottom: 0; 
}

/* =========================================================
   7. BOARD OF DIRECTORS GRID
   ========================================================= */
.board-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.board-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.board-card .board-avatar {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
}

.board-card h3 {
    font-size: 18px;
    color: #222222;
    margin-bottom: 5px;
}

.board-card .board-title {
    font-size: 14px;
    font-weight: bold;
    color: #2A86C7;
    margin-bottom: 12px;
}

.board-card ul {
    text-align: left;
    padding-left: 20px;
    margin: 10px 0 0 0;
    font-size: 13px;
    color: #555555;
}

.board-card ul li {
    margin-bottom: 6px;
}

/* =========================================================
   8. RESPONSIVE BREAKPOINTS
   ========================================================= */
@media screen and (max-width: 992px) {
    .header-content-grid { flex-wrap: wrap; }
    .mobile-hamburger { display: block !important; }

    nav { 
        display: none !important; 
        width: 100% !important; 
    }

    .header-cta-group {
        display: none !important;
        width: 100% !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e5e5e5;
        gap: 10px;
    }

    nav.mobile-open { display: block !important; }
    nav.mobile-open + .header-cta-group,
    nav.mobile-open ~ .header-cta-group { display: flex !important; }

    nav.mobile-open > ul {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        padding: 10px 0 !important;
        border-top: 1px solid #eeeeee;
    }

    nav.mobile-open > ul > li { width: 100% !important; }
    
    nav.mobile-open ul li ul {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
        background-color: #f9f9f9 !important;
    }

    .btn-header-donate, .btn-header-apply {
        flex: 1;
        padding: 12px;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .hero-section { padding: 60px 15px; }
    .hero-section h1 { font-size: 28px; }
    .hero-section p { font-size: 18px; }
    
    .top-info-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}