@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --color-dark: #111827;
    --color-light: #f8fafc;
    --color-accent: #06b6d4;
    --color-accent-dark: #0e7490;
    --color-muted: #475569;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
    border-radius: 12px;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    color: #fff;
    padding: 5rem 1.5rem;
    padding-top: calc(5rem + 80px);
    background-image: url(../../assets/img/hero.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
}
header:after {
    content: "";
    display: block;
    background-color: rgb(8 48 59 / 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: 0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: rgba(14, 116, 144, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.logo:hover {
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.25) !important;
    font-weight: 700;
}

.nav-fb {
    display: flex;
    align-items: center;
    padding: 0.35rem;
    border-radius: 6px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nav-fb:hover {
    opacity: 1;
    background: transparent !important;
}

.nav-fb svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

.nav-icon {
    display: inline-block;
    margin-right: 0.3rem;
    font-size: 1rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.3rem, 3vw, 3.6rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
}

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

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: #fff;
    color: var(--color-accent-dark);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.4rem;
}

main {
    flex: 1;
}

.content-wrapper {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

.section {
    padding: 4rem 1.5rem;
}

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

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.section p.lead {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--color-muted);
}

section#gallery {
    text-align: center;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.media-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    object-fit: cover;
}

.media-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent-dark);
    font-weight: 700;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-list li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.5rem;
}

.mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mini-stats span {
    background: rgba(6, 182, 212, 0.12);
    color: var(--color-accent-dark);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.highlight-icon {
    font-size: 1.6rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery img {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
}

.phases-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.phases-grid {
    display: grid;
    gap: 2rem;
}

.phase-card {
    background: #fff;
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.phase-media {
    display: block;
}

.phase-copy h3 {
    margin-top: 0.2rem;
}

.phase-label {
    display: inline-block;
    font-weight: 700;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    background: rgba(6, 182, 212, 0.12);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.phase-footnote {
    margin-top: 2rem;
    text-align: center;
    color: var(--color-muted);
}

.partners-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(14, 116, 144, 0.08));
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 4rem);
}

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

.partners-intro {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 80px;
}

.partner-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-placeholder {
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.partner-card h3 {
    margin: 0;
    color: var(--color-accent-dark);
    font-size: 1.3rem;
}

.partner-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
}

.volunteers-callout {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--color-accent);
}

.volunteers-callout h3 {
    margin-top: 0;
    color: var(--color-dark);
    font-size: 1.5rem;
}

.volunteers-callout p {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.volunteers-cta {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.volunteers-cta a {
    color: var(--color-accent-dark);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
    text-decoration: underline;
}

.volunteers-cta a:hover {
    border-bottom-color: var(--color-accent-dark);
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1100;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: calc(100vw - 3rem);
    max-height: calc(100vh - 3rem);
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.suggestion-box {
    background: #fff;
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    display: grid;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.suggestion-box h2 {
    margin-top: 0;
    color: var(--color-dark);
}

.suggestion-box .note {
    color: var(--color-muted);
    line-height: 1.7;
    text-align: center;
}

.suggestion-form .form-group label {
    color: var(--color-dark);
    font-weight: 600;
}

.suggestion-form .form-control,
.suggestion-form .form-textarea {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.17);
    color: var(--color-dark);
}

.suggestion-form .form-control::placeholder,
.suggestion-form .form-textarea::placeholder {
    color: rgba(71, 85, 105, 0.5);
}

.form-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.suggestion-status {
    color: var(--color-accent-dark);
}

.suggestion-status.status-success {
    color: #16a34a;
}

.suggestion-status.status-error {
    color: #dc2626;
}

.cta-section {
    background: rgba(14, 116, 144, 0.95);
    color: #fff;
    border-radius: 24px;
    padding: 3rem 2rem;
}

.cta-section h3 {
    margin-top: 0;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0.75rem;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid rgba(14, 116, 144, 0.95);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3);
}

.timeline-item.completed {
    opacity: 0.6;
}

.timeline-marker.completed-marker {
    background: #16a34a;
    border: 3px solid rgba(14, 116, 144, 0.95);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.timeline-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.timeline-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.timeline-content a:hover {
    opacity: 0.8;
}

.footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer-fb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s;
}

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

.footer-fb-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: #1877f2;
    flex-shrink: 0;
}

.footer-copy {
    margin-top: 0.25rem;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}

.modal-backdrop.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 20px;
    width: min(500px, 100%);
    padding: 2rem;
    position: relative;
}

.modal h3 {
    margin-top: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.17);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}

.modal-note {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #000;
    text-align: left;
    margin-bottom: 0.6rem;
}

.status-message {
    margin-top: 1rem;
    font-weight: 600;
}

.status-success {
    color: #16a34a;
}

.status-error {
    color: #dc2626;
}

@media (max-width: 720px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14, 116, 144, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 1001;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-align: left;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .hero {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    header {
        padding-top: calc(5rem + 70px);
    }

    .partners-section {
        padding: 2rem 1.5rem;
    }

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

    .partner-card {
        padding: 1.5rem;
    }

    .volunteers-callout {
        padding: 1.5rem;
    }

    .timeline {
        padding: 1.5rem 0;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 3rem;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        left: 0.25rem;
        width: 1.25rem;
        height: 1.25rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }
}

