/* Project Terra / Bantay Dagat — Landing Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0E1117;
    color: #D0D8DE;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-y: auto !important;
    height: auto !important;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Top nav */
.top-nav {
    text-align: right;
    padding: 0.5rem 0;
}

.nav-link {
    color: #4A9BB5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #7CC5D9;
}

/* Header */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #7CC5D9;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #4A9BB5;
    font-style: italic;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 1rem;
    color: #7A8E9A;
}

/* Dividers */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #4A9BB5, transparent);
    margin: 2.5rem 0;
}

/* Sections */
.section {
    padding: 0.5rem 0;
}

h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #7CC5D9;
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #C0CDD5;
    text-align: center;
    margin-bottom: 1rem;
}

.body-text.italic {
    font-style: italic;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7CC5D9;
}

.stat-label {
    font-size: 0.9rem;
    color: #7A8E9A;
    margin-top: 0.2rem;
}

/* Mission Statement */
.mission-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E8F0F4;
    text-align: center;
    padding: 1.5rem 2rem;
    border-left: 4px solid #4A9BB5;
    background: rgba(74, 155, 181, 0.08);
    margin: 0 auto;
    max-width: 750px;
    border-radius: 0 8px 8px 0;
}

/* Principles */
.principle {
    padding: 1rem 1.5rem;
    margin: 0.75rem 0;
    border-radius: 8px;
    background: rgba(27, 37, 51, 0.5);
    border-left: 3px solid #4A9BB5;
}

.principle-title {
    font-weight: 700;
    color: #7CC5D9;
    font-size: 1.05rem;
}

.principle-desc {
    color: #B0BEC5;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* CTA */
.cta {
    text-align: center;
    padding: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4A9BB5;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, transform 0.1s;
}

.cta-button:hover {
    background: #3A8BA5;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0 1rem;
    color: #5A6E7A;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer strong {
    color: #7A8E9A;
}

.closing {
    margin-top: 1.5rem;
    font-style: italic;
    color: #4A6A7A;
    font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .mission-statement {
        font-size: 1.05rem;
        padding: 1rem 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stats-row {
        gap: 0.5rem;
    }

    .stat {
        min-width: 80px;
    }
}
