/*
 * Manhita Chamorro Website Styles
 * Mobile-first, responsive design
 * Color palette: Navy (#0b3254), Beige/Cat (#d9c8a1), Earth tone (#5b3f2f), Light background (#f8f7f3)
 */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f8f7f3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0b3254;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #5b3f2f;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #0b3254;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

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

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: #f0ede7;
}

.bg-navy {
    background-color: #0b3254;
    color: #fff;
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5, .bg-navy h6 {
    color: #fff;
}

.bg-navy p {
    color: #f0ede7;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.site-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b3254;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #0b3254;
    transition: all 0.3s ease;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #0b3254;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5b3f2f;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #5b3f2f;
}

.nav-link-cta {
    background-color: #0b3254;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: #5b3f2f;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        padding: 1.5rem 0;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0ede7;
    }

    .nav-link {
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .nav-link-cta {
        display: inline-block;
        width: auto;
    }

    .logo-image {
        height: 40px;
    }

    .site-name {
        font-size: 1.125rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: #0b3254;
    color: #fff;
}

.btn-primary:hover {
    background-color: #5b3f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 50, 84, 0.3);
}

.btn-secondary {
    background-color: #d9c8a1;
    color: #0b3254;
}

.btn-secondary:hover {
    background-color: #5b3f2f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-white {
    background-color: #fff;
    color: #0b3254;
}

.btn-cta-white:hover {
    background-color: #d9c8a1;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-social {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #0b3254 0%, #5b3f2f 100%);
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header .page-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header .page-subtitle {
    font-size: 1.125rem;
    color: #d9c8a1;
    font-weight: 300;
}

/* ============================================
   HERO SECTION (HOME)
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #f8f7f3 0%, #f0ede7 100%);
    padding: 4rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    color: #0b3254;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5b3f2f;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    background-color: #d9c8a1;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.hero-logo {
    max-width: 250px;
    opacity: 0.8;
}

/* ============================================
   SECTION TITLES & CONTENT
   ============================================ */

.section-title {
    font-size: 2rem;
    color: #0b3254;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.section-intro {
    font-size: 1.0625rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-link {
    font-weight: 500;
    color: #0b3254;
}

.section-link:hover {
    color: #5b3f2f;
}

.subsection-title {
    font-size: 1.375rem;
    color: #5b3f2f;
    margin: 2rem 0 1rem;
}

/* ============================================
   GRIDS & COLUMNS
   ============================================ */

.content-columns, .content-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-grid, .events-grid, .impact-grid, .work-grid, .topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ============================================
   CARDS
   ============================================ */

.news-card, .event-card, .impact-card, .work-card, .topic-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.news-card:hover, .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-category {
    background-color: #d9c8a1;
    color: #0b3254;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.news-date, .event-time, .event-location {
    font-size: 0.875rem;
    color: #777;
}

.news-title, .event-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.news-title a, .event-title a {
    color: #0b3254;
}

.news-title a:hover, .event-title a:hover {
    color: #5b3f2f;
}

.news-excerpt, .event-description {
    color: #555;
    margin-bottom: 1rem;
}

.news-link, .event-link {
    color: #0b3254;
    font-weight: 500;
    font-size: 0.9375rem;
}

.news-link:hover, .event-link:hover {
    color: #5b3f2f;
}

/* Event Cards */
.event-card {
    display: flex;
    gap: 1.5rem;
}

.event-date-badge {
    background-color: #0b3254;
    color: #fff;
    border-radius: 8px;
    padding: 1rem 0.75rem;
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

/* ============================================
   FILM/DOCUMENTARY SPECIFIC
   ============================================ */

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

.film-highlights li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.film-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5b3f2f;
    font-weight: bold;
}

.quote-box, .quote-box-large {
    background-color: #0b3254;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d9c8a1;
}

.quote-box blockquote, .quote-box-large blockquote {
    margin: 0;
}

.quote-box p, .quote-box-large .quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #f0ede7;
}

.quote-box cite, .quote-box-large .quote-author {
    font-size: 0.9375rem;
    font-style: normal;
    color: #d9c8a1;
}

.doc-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.doc-stat {
    text-align: center;
}

.doc-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b3254;
    line-height: 1;
}

.doc-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #777;
    margin-top: 0.5rem;
}

.topic-card {
    position: relative;
    padding-top: 3.5rem;
}

.topic-number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d9c8a1;
    opacity: 0.5;
}

.topic-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

.questions-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.0625rem;
    color: #444;
}

.questions-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #d9c8a1;
    color: #0b3254;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.125rem;
    color: #0b3254;
    margin-bottom: 0.75rem;
}

.faq-answer p {
    color: #555;
    margin-bottom: 0;
}

.faq-additional {
    margin-top: 2rem;
}

.faq-additional-text {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro-text {
    color: #555;
}

.form-errors {
    background-color: #ffe6e6;
    border-left: 4px solid #d32f2f;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.form-errors ul {
    margin: 0.5rem 0 0 1.25rem;
}

.form-errors li {
    color: #d32f2f;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group-half {
    width: 100%;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.required {
    color: #d32f2f;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0b3254;
}

.form-control.error {
    border-color: #d32f2f;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.375rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: #777;
    margin-top: 1.5rem;
}

/* ============================================
   SINGLE ARTICLE / EVENT
   ============================================ */

.breadcrumb {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #0b3254;
}

.article-header, .event-header {
    background-color: #f0ede7;
    padding: 2rem 0 1.5rem;
}

.article-meta-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background-color: #d9c8a1;
    color: #0b3254;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.article-date {
    font-size: 0.9375rem;
    color: #777;
}

.article-title {
    font-size: 2.25rem;
    color: #0b3254;
    line-height: 1.3;
}

.article-body, .event-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-footer, .event-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0ede7;
}

.article-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-label {
    font-weight: 600;
    color: #555;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0b3254;
    color: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.share-link:hover {
    background-color: #5b3f2f;
    transform: scale(1.1);
}

.related-articles, .related-events {
    margin-top: 3rem;
}

.related-title {
    font-size: 1.5rem;
    color: #0b3254;
    margin-bottom: 1.5rem;
}

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

.related-card {
    background-color: #f0ede7;
    padding: 1.25rem;
    border-radius: 6px;
}

.related-category, .related-date {
    font-size: 0.875rem;
    color: #777;
    display: block;
    margin-bottom: 0.5rem;
}

.related-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.related-card-title a {
    color: #0b3254;
}

.related-card-title a:hover {
    color: #5b3f2f;
}

/* Event Specific */
.event-status-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-status-badge.upcoming {
    background-color: #4caf50;
    color: #fff;
}

.event-status-badge.past {
    background-color: #999;
    color: #fff;
}

.event-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.event-meta-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.event-meta-icon {
    font-size: 1.5rem;
}

.event-meta-content strong {
    display: block;
    color: #0b3254;
    margin-bottom: 0.25rem;
}

.event-section-title {
    font-size: 1.5rem;
    color: #0b3254;
    margin: 2rem 0 1rem;
}

.event-actions {
    background-color: #f0ede7;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.event-actions-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #555;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.highlight-box, .nonprofit-box, .legal-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.highlight-title, .nonprofit-box-title {
    font-size: 1.25rem;
    color: #5b3f2f;
    margin-bottom: 1rem;
}

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

.values-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5b3f2f;
    font-size: 1.5rem;
    line-height: 1;
}

.legal-details {
    margin: 1.5rem 0;
}

.legal-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0ede7;
}

.legal-detail:last-child {
    border-bottom: none;
}

.legal-label {
    font-weight: 600;
    color: #0b3254;
}

.legal-value {
    color: #555;
}

.legal-note {
    font-size: 0.9375rem;
    color: #555;
    font-style: italic;
    margin-top: 1.5rem;
}

/* ============================================
   THANK YOU / SUCCESS MESSAGES
   ============================================ */

.thank-you-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.thank-you-title {
    font-size: 2rem;
    color: #0b3254;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
    text-align: left;
    margin-bottom: 1.25rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thank-you-footer {
    font-size: 1.125rem;
    color: #5b3f2f;
    font-style: italic;
    margin-top: 2rem;
}

.thank-you-social {
    margin: 1.5rem 0 1rem;
    font-size: 0.9375rem;
    color: #555;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    background-color: #0b3254;
    color: #fff;
}

.cta-content, .cta-item {
    text-align: center;
}

.cta-title, .cta-item-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-description, .cta-text {
    font-size: 1.0625rem;
    color: #f0ede7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cta-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.cta-item-title {
    font-size: 1.375rem;
}

.cta-item p {
    color: #f0ede7;
    margin-bottom: 1.5rem;
}

/* ============================================
   SOCIAL BUTTONS
   ============================================ */

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: #0b3254;
    color: #f0ede7;
    padding: 3rem 0 1.5rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.footer-brand {
    font-size: 1.125rem;
    color: #fff;
    margin: 0;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: #d9c8a1;
    margin-bottom: 1rem;
}

.footer-nonprofit-status {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-email a {
    color: #d9c8a1;
}

.footer-email a:hover {
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #f0ede7;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: #d9c8a1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f0ede7;
    font-size: 0.9375rem;
}

.social-link:hover {
    color: #d9c8a1;
}

.social-icon {
    width: 24px;
    text-align: center;
    font-weight: bold;
}

.footer-chamorro-phrase {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d9c8a1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright, .footer-attribution {
    font-size: 0.875rem;
    color: #d9c8a1;
    margin-bottom: 0.5rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0b3254;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: #5b3f2f;
    transform: translateY(-3px);
}

.back-to-top-icon {
    display: block;
    line-height: 1;
}

/* ============================================
   ADDITIONAL PAGE-SPECIFIC STYLES
   ============================================ */

/* About Page */
.about-intro, .about-history, .about-content {
    margin-bottom: 2rem;
}

.about-content p, .about-history p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}

.content-column {
    flex: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-box, .values-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Contact Page */
.contact-intro, .contact-intro-content {
    margin-bottom: 2rem;
}

.contact-reasons {
    margin: 3rem 0;
}

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

.reason-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.25s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reason-title {
    font-size: 1.25rem;
    color: #0b3254;
    margin-bottom: 0.75rem;
}

.contact-form, .donation-form {
    margin: 0;
}

.contact-form-section, .donation-form-section {
    background-color: #f0ede7;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info-title {
    font-size: 1.25rem;
    color: #0b3254;
    margin-bottom: 1rem;
}

.contact-info-card address {
    font-style: normal;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-social-links a {
    color: #0b3254;
}

.contact-social-links a:hover {
    color: #5b3f2f;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f0ede7;
    border-radius: 8px;
}

.contact-note-text {
    margin: 0;
}

/* Community & Home Page Sections */
.community-section {
    background-color: #fff;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-description {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Documentary Page Specific */
.doc-intro, .doc-topics, .doc-questions {
    /* Already styled above */
}

.doc-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.doc-intro-content, .doc-intro-visual {
    /* Already styled */
}

.educational-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.educational-item {
    background-color: #f0ede7;
    padding: 1.5rem;
    border-radius: 8px;
}

.educational-item-title {
    font-size: 1.125rem;
    color: #0b3254;
    margin-bottom: 0.75rem;
}

.educational-cta {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
    background-color: #f0ede7;
    border-radius: 8px;
}

.watch-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.watch-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.watch-option-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.watch-option p {
    color: #f0ede7;
    margin-bottom: 1.5rem;
}

/* Donation Page Specific */
.why-donate {
    /* Already styled */
}

.donation-impact {
    /* Already styled */
}

.nonprofit-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nonprofit-box-title {
    font-size: 1.25rem;
    color: #0b3254;
    margin-bottom: 1rem;
}

.nonprofit-details {
    margin: 1.5rem 0;
}

.nonprofit-detail {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0ede7;
}

.nonprofit-detail:last-child {
    border-bottom: none;
}

.nonprofit-detail strong {
    color: #0b3254;
    display: block;
    margin-bottom: 0.25rem;
}

.nonprofit-note {
    font-size: 0.9375rem;
    color: #555;
    margin-top: 1rem;
}

.other-ways {
    /* Already defined */
}

.ways-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.way-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.way-title {
    font-size: 1.25rem;
    color: #0b3254;
    margin-bottom: 1rem;
}

.way-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* News & Events Listing */
.news-listing, .events-section {
    /* Already styled */
}

.news-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card-full {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.news-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-card-excerpt {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.news-card-link {
    color: #0b3254;
    font-weight: 500;
    font-size: 0.9375rem;
}

.news-card-link:hover {
    color: #5b3f2f;
}

.newsletter-cta {
    background-color: #f0ede7;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-text {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Events Listing & Details */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card-large {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    transition: all 0.25s ease;
}

.event-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.event-card-date {
    background-color: #0b3254;
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-card-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.event-card-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0.5rem 0;
}

.event-card-year {
    font-size: 0.875rem;
    opacity: 0.8;
    display: block;
}

.event-card-content {
    flex: 1;
}

.event-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-card-title a {
    color: #0b3254;
}

.event-card-title a:hover {
    color: #5b3f2f;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9375rem;
    color: #555;
}

.event-card-time, .event-card-location {
    display: block;
}

.event-card-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-card-badge {
    background-color: #d9c8a1;
    color: #0b3254;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.past-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.past-event-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.past-event-date {
    font-size: 0.875rem;
    color: #777;
    display: block;
    margin-bottom: 0.5rem;
}

.past-event-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.past-event-title a {
    color: #0b3254;
}

.past-event-title a:hover {
    color: #5b3f2f;
}

.past-event-location {
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.past-event-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.past-event-link {
    color: #0b3254;
    font-weight: 500;
    font-size: 0.9375rem;
}

.past-event-link:hover {
    color: #5b3f2f;
}

.events-cta {
    background-color: #f0ede7;
}

.events-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.events-cta-text {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Film intro on home */
.film-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.film-intro-content {
    /* Already styled */
}

.film-intro-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.film-intro-visual {
    /* Already styled */
}

.featured-quote {
    /* Already styled via quote-box */
}

/* Mission/Vision sections */
.mission-content, .work-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.mission-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}

/* Additional Button Variants */
.btn-x, .btn-youtube, .btn-facebook {
    /* Inherit from .btn-social */
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .news-grid, .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-columns, .content-grid-2col {
        grid-template-columns: 1fr 1fr;
    }

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

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .event-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .work-grid, .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .past-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-intro-grid, .film-intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .educational-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .watch-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .work-grid, .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ways-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .past-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-card-large {
        grid-template-columns: 120px 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.no-content-message, .no-events-message, .no-events-box {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f0ede7;
    border-radius: 8px;
    color: #555;
}

.no-events-box {
    max-width: 600px;
    margin: 0 auto;
}

.no-events-box p {
    margin-bottom: 1rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header, .back-to-top, .hero-cta, .cta-section, .social-buttons {
        display: none;
    }

    body {
        background-color: #fff;
    }
}
