@font-face {
    font-family: 'Aileron';
    src: url('/font/Aileron-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --secondary-blue: rgb(23, 29, 58);
    --primary-light-blue: rgb(148, 171, 249);
    --light-pink: rgb(245, 152, 255);
    --light-purple: rgb(229, 233, 253);
}

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

body {
    font-family: 'Aileron', sans-serif;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    padding: 31px 2.5rem;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.main-nav ul a:hover {
    color: #7b2d8b;
}

.main-nav ul a.active {
    text-decoration: underline;
    text-decoration-color: var(--light-pink);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.btn-donate {
    display: inline-block;
    background: var(--secondary-blue);
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-donate:hover {
    background: rgb(35, 44, 88);
}

.btn-inline {
    align-self: center;
}

/* About */
.about-tpwc {
    padding: 80px 10%;
    background: #ffffff;
}

.about-inner {
    width: 100%;
}

.about-tpwc h3 {
    margin-top: 5rem;
}

.about-tpwc h2,
.about-tpwc h3 {
    font-family: 'Lora', serif;
    font-size: 4.662rem;
    font-weight: 700;
    color: var(--secondary-blue);
    text-decoration: underline;
    text-decoration-color: var(--light-pink);
    text-underline-offset: 8px;
    text-decoration-thickness: 9px;
    margin-bottom: 3.5rem;
    text-align: center;
}

.about-tpwc ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about-tpwc ul li {
    font-family: 'Lora', serif;
    font-size: 3.3rem;
    color: #1a1a1a;
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
}

.about-tpwc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--light-pink);
}

.about-tpwc p {
    font-family: 'Lora', serif;
    font-size: 3.3rem;
    line-height: 1.75;
    color: #1a1a1a;
    text-align: justify;
    min-width: 0;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.about-img {
    width: 66.67%;
    height: 644px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

/* Hero */
.hero {
    background: var(--primary-light-blue);
    position: relative;
    height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage {
    position: absolute;
    inset: 0;
}

.hero-collage img {
    position: absolute;
    object-fit: cover;
    display: block;
    box-shadow: 3px 4px 14px rgba(0,0,0,0.3);
}

.hero-collage img:nth-child(1) {
    width: 600px;
    height: 420px;
    top: 80px;
    left: calc(50% - 840px);
    transform: rotate(-6deg);
}

.hero-collage img:nth-child(2) {
    width: 540px;
    height: 380px;
    top: 40px;
    left: calc(50% - 400px);
    transform: rotate(3deg);
}

.hero-collage img:nth-child(3) {
    width: 580px;
    height: 400px;
    top: 60px;
    left: calc(50% - 60px);
    transform: rotate(-4deg);
}

.hero-collage img:nth-child(4) {
    width: 520px;
    height: 370px;
    top: 50px;
    left: calc(50% + 340px);
    transform: rotate(5deg);
}

.hero-collage img:nth-child(5) {
    width: 560px;
    height: 400px;
    bottom: 80px;
    left: calc(50% - 720px);
    transform: rotate(4deg);
}

.hero-collage img:nth-child(6) {
    width: 600px;
    height: 420px;
    bottom: 60px;
    left: calc(50% - 260px);
    transform: rotate(-5deg);
}

.hero-collage img:nth-child(7) {
    width: 540px;
    height: 380px;
    bottom: 90px;
    left: calc(50% + 200px);
    transform: rotate(3.5deg);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    background: #ffffff;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.hero-overlay h1 {
    font-family: 'Lora', serif;
    font-size: 5.18rem;
    font-weight: 700;
    color: var(--secondary-blue);
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-decoration: underline;
    text-decoration-color: var(--light-pink);
    text-underline-offset: 8px;
    text-decoration-thickness: 9px;
}

/* Membership */
.membership {
    padding: 80px 10%;
    background: #ffffff;
}

.membership-inner {
    width: 100%;
}

.membership-heading {
    font-family: 'Lora', serif;
    font-size: 4.662rem;
    font-weight: 700;
    color: var(--secondary-blue);
    text-decoration: underline;
    text-decoration-color: var(--light-pink);
    text-underline-offset: 8px;
    text-decoration-thickness: 9px;
    text-align: center;
}

.membership-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.membership-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.membership-content p {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    line-height: 1.75;
    color: #1a1a1a;
}

.membership-levels {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.membership-levels li {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.level-name {
    font-weight: 400;
}

.level-price {
    font-weight: 700;
    color: var(--secondary-blue);
}

.membership-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .membership {
        padding: 50px 6%;
    }

    .membership-heading {
        font-size: 2rem;
        text-decoration-thickness: 5px;
        margin-bottom: 2rem;
    }

    .membership-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-img {
        height: 260px;
        order: -1;
    }

    .membership-content p,
    .membership-levels li {
        font-size: 1.05rem;
    }
}

/* Campaign School */
.campaign-school {
    background: url('/img/campaign-school-background.jpg') center center / cover no-repeat;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.campaign-school-overlay {
    background: var(--light-purple);
    border: 5px solid var(--secondary-blue);
    padding: 3rem 4rem;
    text-align: center;
    border-radius: 4px;
    max-width: 700px;
}

.campaign-school-overlay p {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-blue);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .campaign-school-overlay {
        padding: 2rem 1.5rem;
    }

    .campaign-school-overlay p {
        font-size: 1.3rem;
    }
}

/* Leadership */
.leadership {
    background: var(--light-purple);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 10%;
}

.leadership-inner {
    max-width: 800px;
    text-align: center;
}

.leadership-inner p {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--secondary-blue);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .leadership-inner p {
        font-size: 1.3rem;
    }
}

/* Leadership Grid */
.leadership-grid {
    padding: 60px 10%;
    background: #ffffff;
}

.leadership-grid-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.leader {
    width: calc(25% - 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.leader img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.leader-info {
    background: var(--light-purple);
    border-radius: 12px;
    padding: 0.5rem 0.9rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.leader-name {
    color: var(--secondary-blue);
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
    font-size: 2.85rem;
    text-align: center;
    display: block;
}

.leader-role {
    font-family: 'Aileron', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-blue);
    text-align: center;
    display: block;
}

@media (max-width: 1024px) {
    .leader {
        width: calc(33.333% - 3rem);
    }

    .leader-name {
        font-size: 1.8rem;
    }

    .leader-role {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        padding: 40px 6%;
    }

    .leader {
        width: calc(50% - 3rem);
    }

    .leader-name {
        font-size: 1.2rem;
    }

    .leader-role {
        font-size: 0.9rem;
    }
}

/* Events */
.events-hero {
    background: url('/img/events-background.jpg') center center / cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.events-overlay {
    background: var(--light-purple);
    border: 5px solid var(--secondary-blue);
    padding: 3rem 4rem;
    text-align: center;
    border-radius: 4px;
}

.events-overlay h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
}

.events-info {
    background: #ffffff;
    padding: 2.5rem 10%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.events-info p {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--secondary-blue);
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .events-overlay {
        padding: 2rem 1.5rem;
    }

    .events-overlay h1 {
        font-size: 2rem;
    }

    .events-info {
        padding: 2rem 6%;
    }

    .events-info p {
        font-size: 1.1rem;
    }
}

/* Contact */
.contact-intro {
    background: var(--secondary-blue);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 10%;
}

.contact-intro-inner {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro-inner h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-intro-inner p {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    line-height: 1.75;
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-intro {
        padding: 3rem 6%;
    }

    .contact-intro-inner h1 {
        font-size: 2.5rem;
    }

    .contact-intro-inner p {
        font-size: 1.1rem;
    }
}

/* Contact Form */
.contact-form-section {
    background: var(--light-purple);
    padding: 5rem 10%;
    display: flex;
    justify-content: center;
}

.contact-form-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: 'Aileron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-blue);
}

.form-group input,
.form-group textarea {
    font-family: 'Aileron', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-blue);
}

.form-success {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #2e7d32;
    text-align: center;
    padding: 1rem 0;
}

.form-error {
    font-family: 'Aileron', sans-serif;
    font-size: 1rem;
    color: #c62828;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 6%;
    }

    .contact-form-box {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background: var(--secondary-blue);
    padding: 2.5rem 2.5rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-name {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.footer-address {
    font-family: 'Aileron', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-facebook {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-facebook:hover {
    opacity: 0.75;
}

.footer-facebook svg {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1.25rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
    .header-inner {
        height: auto;
        padding: 20px 2rem;
        flex-wrap: wrap;
    }

    .logo img {
        height: 80px;
    }

    .main-nav ul {
        gap: 1.2rem;
    }

    .main-nav ul a,
    .btn-donate {
        font-size: 1.1rem;
    }

    .hero {
        height: 800px;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .about-tpwc h2,
    .about-tpwc h3 {
        font-size: 3rem;
    }

    .about-tpwc ul li,
    .about-tpwc p {
        font-size: 2rem;
    }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 768px) {
    /* Header */
    .site-header {
        position: relative;
    }

    .header-inner {
        height: auto;
        padding: 16px 1.25rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        height: 60px;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding: 1rem 0 1.5rem;
        border-top: 1px solid #e5e5e5;
        margin-top: 12px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav ul a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .btn-donate {
        margin-top: 1rem;
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 320px;
        padding: 3rem 1.25rem;
    }

    .hero-collage {
        display: none;
    }

    .hero-overlay {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 2rem;
        white-space: normal;
        text-decoration-thickness: 5px;
    }

    /* About */
    .about-tpwc {
        padding: 50px 6%;
    }

    .about-tpwc h2,
    .about-tpwc h3 {
        font-size: 2rem;
        text-decoration-thickness: 5px;
    }

    .about-tpwc h3 {
        margin-top: 3rem;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .about-img {
        width: 100%;
        height: 260px;
        order: -1;
    }

    .about-tpwc ul li,
    .about-tpwc p {
        font-size: 1.1rem;
    }

    .about-tpwc ul li {
        padding-left: 1.2rem;
    }
}
