* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
    color: #172033;
    background: #fff8ed;
}

a {
    color: #0b6f6a;
    text-decoration: none;
}

.site-header {
    padding: 10px 6vw;
    background: #0d1338;
    border-bottom: 5px solid #f6b73c;
    position: sticky;
    top: 0;
    z-index: 10;float: left;
  width: 100%;
}

.brand {float:left;}

.brand img {

    height: 55px;

}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;min-height: 55px;
    font-size: 16px;
    font-weight: 800;float: right;
}

nav a {
    color: #edf3ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #edf3ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

main {
    min-height: 70vh;float: left;
  width: 100%;
}

.hero,
.page-title,
.section,
.content-body,
.form-shell,
.member-detail,
.filters,
.notice-strip {
    width: min(1120px, 88vw);
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 38px;
    align-items: center;
    padding: 82px 0 46px;
}

.hero h1,
.page-title h1,
.form-shell h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.03;
    margin: 8px 0 18px;
    color: #0d1338;
}

.hero p {
    font-size: 18px;
    line-height: 1.65;
    color: #4b5563;
}

.eyebrow {
    color: #0b6f6a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: #e4572e;
    color: white;
    padding: 13px 20px;
    font-weight: 800;
    cursor: pointer;
    min-height: 46px;
    box-shadow: 0 10px 22px rgba(228, 87, 46, 0.2);
}

.button.small {
    padding: 9px 12px;
    min-height: 38px;
}

.button.ghost {
    background: #f6b73c;
    color: #0d1338;
    border: 1px solid #f6b73c;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-panel {
    display: grid;
    gap: 14px;
}

.banner-card {
    min-height: 270px;
    border-radius: 8px;
    padding: 22px;
    display: flex;
    align-items: flex-end;
    color: white;
    font-weight: 800;
    background: #143d59;
    border: 1px solid #dfe7ef;
    overflow: hidden;
    position: relative;
}

.banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.34), transparent 18%), linear-gradient(135deg, rgba(228, 87, 46, 0.95), rgba(13, 19, 56, 0.95) 55%, rgba(11, 111, 106, 0.95));
}

.banner-card::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
}

.banner-card span {
    position: relative;
    z-index: 1;
    font-size: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-stats div,
.stat-card,
.member-card,
.profile-panel,
.details-panel,
.form-shell,
.committee-card,
.mission-grid article,
.faq-list details {
    background: white;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.08);
}

.hero-stats span,
.stat-card span {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: #0b6f6a;
}

.hero-stats p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #64748b;
}

.notice-strip {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 22px 26px;
    border: 2px solid #f6b73c;
    border-left: 8px solid #e4572e;
    border-radius: 8px;
    background: #fff3d7;
}

.notice-strip strong {
    color: #0b5b57;
    font-size: 18px;
}

.notice-strip p {
    margin: 4px 0;
    color: #334155;
}

.section {
    padding: 38px 0;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.split-section h2,
.section h2 {
    margin: 6px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    color: #111827;
}

.split-section p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
}

.prose-block {
    display: grid;
    gap: 14px;
}

.prose-block p {
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mission-grid span {
    color: #0b6f6a;
    font-weight: 800;
}

.mission-grid p,
.committee-card p,
.faq-list p {
    color: #475569;
    line-height: 1.65;
}

.mission-list {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #475569;
    line-height: 1.65;
}

.mission-list li+li {
    margin-top: 8px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-note {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 700;
}

.member-grid,
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.member-directory {
    width: min(1120px, 88vw);
    margin: 0 auto;
}

.member-card img,
.avatar,
.committee-card div {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #dde9f1;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 800;
    color: #0b6f6a;
}

.member-card h3,
.committee-card h3 {
    margin-bottom: 6px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.chips span {
    background: #e8f5f3;
    color: #0b5b57;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}

.gallery-preview,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gallery-content p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 0;
}

.gallery-content img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 2px solid #f3dfbd;
    box-shadow: 0 12px 30px rgba(13, 19, 56, 0.1);
    background: white;
}

.gallery-content img+img {
    margin: 0;
}

.gallery-shot,
.gallery-tile {
    min-height: 150px;
    background: linear-gradient(135deg, #dde9f1, #f8fafc);
    display: grid;
    place-items: end start;
    border-radius: 8px;
    color: #172033;
    font-weight: 800;
    padding: 18px;
    border: 1px solid #dfe7ef;
}

.gallery-shot:nth-child(2) {
    background: linear-gradient(135deg, #fee2c5, #f8fafc);
}

.gallery-shot:nth-child(3) {
    background: linear-gradient(135deg, #d9f99d, #f8fafc);
}

.gallery-shot:nth-child(4) {
    background: linear-gradient(135deg, #c7d2fe, #f8fafc);
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
    color: #111827;
}

.page-title {
    padding: 56px 0 24px;
}

.content-body {
    background: white;
    border-top: 5px solid #e4572e;
    padding: 32px;
    line-height: 1.75;
}

.filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    font: inherit;
    min-height: 44px;
}

textarea {
    min-height: 130px;
    grid-column: 1 / -1;
}

.form-shell {
    margin-top: 46px;
    margin-bottom: 46px;
}

.form-shell.narrow {
    max-width: 520px;
}

.form-shell form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.file-field {
    display: grid;
    gap: 8px;
    color: #4b5563;
}

.notice,
.errors {
    width: min(1120px, 88vw);
    margin: 18px auto;
    padding: 14px 16px;
    border-radius: 6px;
    background: #ecfdf5;
    color: #065f46;
}

.errors {
    background: #fef2f2;
    color: #991b1b;
}

.member-detail {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    padding: 46px 0;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
}

.contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.contact-actions a,
.file-list a {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
}

.banner-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.banner-row img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.details-grid div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 6px;
}

.details-grid .wide {
    grid-column: 1 / -1;
}

dt {
    font-weight: 800;
    color: #475569;
}

dd {
    margin: 6px 0 0;
}

.file-list {
    display: grid;
    gap: 10px;
}

.link-button {
    color: #0b6f6a;
    background: transparent;
    padding: 0;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    color: #0d1338;
    font-weight: 900;
    border: 2px solid white;
    box-shadow: 0 14px 28px rgba(13, 19, 56, 0.24);
} .whatsapp-float img{ width:60px;}

.site-footer {
    margin-top: 54px;
    padding: 60px 6vw 25px 6vw;
    display: grid;
    grid-template-columns: 1.2fr repeat(2, minmax(160px, 1fr));
    gap: 20px;
    background: #0d1338;
    color: white;
    border-top: 5px solid #f6b73c;float: left;
  width: 100%;
}

.footer-logo {
    width: 165px;
    height: auto;
}

.site-footer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 8px 0 0;
}

.site-footer h3 {
    margin: 0;
    font-size: 24px;
}

.site-footer a {color: #d9f99d;margin-top: 8px;}
.site-footer .ftrMnu{float:left;width:100%;list-style: square;margin: 10px 0 0;padding: 0 0 0 20px;line-height: 24px;} .site-footer .ftrMnu li::Marker{ font-size:18px;}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #9ca3af;
}

.copyright p {
    margin: 0;
}

.empty {
    color: #64748b;
}

.pagination {
    width: min(1120px, 88vw);
    margin: 24px auto;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0 18px;
}

.pager-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pager-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 2px solid #f3dfbd;
    border-radius: 8px;
    background: white;
    color: #0d1338;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(13, 19, 56, 0.06);
}

.pager-link.active {
    background: #e4572e;
    border-color: #e4572e;
    color: white;
}

.pager-link.disabled {
    color: #94a3b8;
    background: #fff8ed;
    box-shadow: none;
    cursor: not-allowed;
}

.hide {
    display: none;
}

@media (max-width: 980px) {
.site-header {
        align-items: flex-start;
       /* flex-direction: column;*/
    }

    .hamburger {
        display: flex;
        align-self: center;float: right;min-height: inherit;margin: 10px 0 0;
       
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0d1338;
        padding: 20px 0;
        margin-top: 10px;
    }

    nav.active {
        display: flex;
    position: fixed;
    left: 0;
    top: 74px;
    bottom: 0;gap: 25px;
    overflow: auto;
    }


    nav a:last-child {
        border-bottom: none;
    }

    .hero,
    .split-section,
    .mission-grid,
    .faq-section,
    .member-detail,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {

    .hero,
    .section {
        padding: 30px 0;
    }

    .notice-strip,
    .filters,
    .form-grid,
    .details-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }



    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 44px;
        padding: 0 14px;
    }
}

.committee-table-wrap {
    overflow-x: auto;
    background: white;
    border: 1px solid #dfe7ef;
    border-radius: 8px;
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.committee-table th,
.committee-table td {
    padding: 13px 14px;
    border-bottom: 1px solid #e5ebf3;
    text-align: left;
    vertical-align: top;
}

.committee-table th {
    background: #0d1338;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.committee-table td {
    color: #334155;
}

.committee-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.committee-table tbody tr:hover {
    background: #eef6f6;
}