/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette matching Wix site */
    --dark-green: rgb(53,94,59);
    --medium-green: #4a6b5a;
    --light-green: rgb(104,134,108);
    --accent-green: rgb(154,175,157);
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    --text-gray: #5a5a5a;
    --bg-white: #ffffff;
    --bg-cream: #f5f5f5;
    --border-color: #e5e5e5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Heading font family */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.event-title,
.subsection-title,
.logo-text {
    font-family: 'Sora', sans-serif;
}

/* Global heading scale */
h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.6rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--dark-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: var(--text-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2rem;
    max-width: 850px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    font-weight: 200;
}

.hero-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border: 8px solid var(--text-light);
}

.hero-image-placeholder {
    max-width: 600px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 8px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
}

/* Featured Event Section */
.featured-event {
    padding: 5rem 0;
    background-color: var(--light-green);
    color: var(--text-light);
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: 4px;
    /* text-transform: uppercase; */
}

.event-content {
    max-width: 900px;
    margin: 0 auto;

    p {
        font-size: 1.25rem;
        font-weight: 200;
        line-height: 1.7;
        margin-bottom: 2rem;
        color: var(--text-light);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .event-date {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 2rem;
    }
}

.event-section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: 4px;
    /* text-transform: uppercase; */
}

.event-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}



.event-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: var(--dark-green);
    color: var(--text-light);
}

.btn:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}


.btn-light-bg {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: var(--light-green);
    color: var(--text-light);
}

.btn-light-bg:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.mission-layout {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.mission-content,
.mission-image-container {
    flex: 1;
}

.mission-content {
    text-align: left;
}

.mission-content .section-title {
    text-align: left;
    color: var(--dark-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.mission-subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.subsection-intro {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-green);
    font-weight: bold;
}

.subsection-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-image-container {
    position: relative;
    min-height: 500px;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.mission-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--bg-cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

/* Connect Section */
.connect {
    padding: 5rem 0;
    background-color: var(--accent-green);
    color: var(--text-light);
    text-align: center;
}

.connect .section-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.connect-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 540px;
    width: 90%;
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-lg);
}

.contact-modal-dialog .section-title {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.contact-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--text-light);
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 36px;
    height: 36px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        letter-spacing: 2px;
    }

    .mission-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-content .section-title {
        text-align: center;
    }

    .mission-content {
        text-align: left;
    }

    .benefits-list {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .mission-image-container {
        min-height: 400px;
    }

    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-title {
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-image,
    .hero-image-placeholder {
        max-width: 100%;
        border-width: 6px;
    }

    .featured-event,
    .mission,
    .connect {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
