/* ================================================
   Paula Cristina Foundation - Brand Styles
   ================================================ */

/* Brand Colors */
:root {
    --primary-blue: #1E5E8D;      /* Dark Blue - Primary */
    --accent-blue: #62C1DA;       /* Middle Blue - Accent */
    --light-blue: #D1EEFC;        /* Light Blue - Backgrounds */
    --highlight-pink: #DE9AB6;    /* Pastel Pink - Highlight */
    --white: #FFFFFF;
    --text-dark: #1E5E8D;         /* Use primary blue instead of black */
    --text-light: #62C1DA;        /* Use accent blue for lighter text */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Color variants for headings */
.pink-heading {
    color: var(--highlight-pink);
}

.blue-heading {
    color: var(--accent-blue);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

/* Layout Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--light-blue);
}

.section-dark {
    background-color: var(--primary-blue);
    color: var(--white);
    border-top: 5px solid var(--highlight-pink);
    border-bottom: 5px solid var(--highlight-pink);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark strong {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--light-blue);
}

.section-dark .section-title::after {
    background-color: var(--highlight-pink);
}

.section-dark .pink-heading {
    color: var(--highlight-pink);
}

/* Pink dividers between sections */
.section + .section {
    border-top: 4px solid var(--highlight-pink);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--highlight-pink);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--highlight-pink);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 800;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-img {
    height: 180px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.nav-menu .btn-primary {
    color: var(--white);
}

.nav-menu .btn-primary:hover {
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(98, 193, 218, 0.85), rgba(98, 193, 218, 0.85)),
                url('images/website_image.png') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    border-top: none;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 300px;
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.about-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 94, 141, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(30, 94, 141, 0.12);
}

.about-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    text-align: center;
    color: var(--primary-blue);
    padding: 3rem 0;
}

.about-description p {
    color: var(--primary-blue);
}

/* What We Do - Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.program-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--highlight-pink);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.team-member {
    padding: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.75rem;
}

.team-note {
    text-align: center;
    font-style: italic;
    color: var(--light-blue);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ANBI Section */
.anbi-content {
    max-width: 900px;
    margin: 0 auto;
}

.anbi-block {
    margin-bottom: 2.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.anbi-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.anbi-block p {
    margin-bottom: 1rem;
}

.anbi-block p:last-child {
    margin-bottom: 0;
}

.anbi-block ul {
    margin: 0.75rem 0 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.anbi-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.anbi-block li:last-child {
    margin-bottom: 0;
}

.anbi-block p strong {
    display: inline-block;
    margin-top: 0.75rem;
}

.anbi-block p:first-of-type strong {
    margin-top: 0;
}

/* Contact Section */
.contact-info {
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Add bottom padding to contact section to create intentional space before footer */
#contact.section {
    padding-bottom: 5rem;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 0;
    border-top: 4px solid var(--highlight-pink);
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .logo-img {
        height: 80px;
    }

    .hero-logo {
        width: 250px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .section {
        padding: 2.5rem 0;
    }

    .programs-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .anbi-block {
        padding: 1.5rem;
    }

    .anbi-block ul {
        padding-left: 1.5rem;
    }

    .contact-email {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 500px;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .anbi-block {
        padding: 1rem;
    }

    .anbi-block ul {
        padding-left: 1.25rem;
        font-size: 0.95rem;
    }

    .anbi-block li {
        margin-bottom: 0.75rem;
    }

    .contact-email {
        font-size: 1.125rem;
    }
}

