.merriweather-12123434454 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


:root {
    --primary-color: #F85A6E;
    /* Matches the logo pink/red */
    --primary-hover: #d64557;
    --text-color: #1a1a1a;
    --text-light: #555;
    --bg-color: #ffffff;
    --light-gray: #f9f9f9;
    --border-color: #eaeaea;
}|


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

/* Add a universal offset for all anchor links on the page */
html {
    scroll-padding-top: 75px;
    /* Adjust the value based on your fixed header's height */
}

body {
    font-family: 'Merriweather', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    /* 26.4px */
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Merriweather', sans-serif;
    color: var(--primary-color);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    /* 26.4px */
    letter-spacing: 2px;

    text-transform: uppercase;
}

h2 {
    color: #000;
    font-family: Merriweather;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 155%;
    /* 55.8px */
    letter-spacing: 1px;
}


code, pre {
  background-color: var(--light-gray);
  border: 1px solid lightgrey;
  white-space: nowrap;
  border-radius: 4px;
  font-size: .9rem;
  padding-inline: 8px;
  padding-block: 4px;
  &.transparent {
    background-color: transparent;
    border: none;
  }
}

.logo {
    display: flex;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

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

/* Header */
header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Sticky Nav Donate Button - Initially Hidden */
.nav-donate-btn {
    margin-left: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.nav-donate-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
/*
.hero-btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
} */

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px 120px 20px;
    background-color: var(--light-gray);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Hero CTA Container */
/* .hero-cta-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
} */



.donation-text {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.5;
}

/* Mission & Vision */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}



/* Core Values */
.values {
    background-color: var(--light-gray);
}

.values-grid {
    gap: 30px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Creates two equal-width columns */
    gap: 10px;
    /* Optional: Adds space between columns and rows */
}

.value-card {
    background: white;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 50px;
}

.founder-card {
    text-align: center;
    padding: 20px;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #ddd;
    /* Placeholder color */
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.founder-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.founder-linkedin {
    display: flex;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;

}

.founder-linkedin:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.founder-bio {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
    text-align: left;
    /* Or justify, per preference */
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.legal {
    font-size: 0.8rem;
    margin-top: 40px;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 860px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .nav-donate-btn {
        margin-left: auto;
        /* Push to right on mobile */
    }
}
