/* Color Palette:
   Primary: #FF6B6B (Warm Red)
   Secondary: #4ECDC4 (Teal)
   Accent: #FFE66D (Golden Yellow)
   Dark: #2C3E50 (Dark Blue-Gray)
   Light: #F7F9FC (Light Blue)
*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    background: #F7F9FC;
    color: #2C3E50;
}

header {
    background: linear-gradient(135deg, #ffffff 0%, #FF8E8E 100%);
    border-bottom: 4px solid #4ECDC4;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
}

.logo {
    height: 60px;
    width: auto;
    margin-right: 30px;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

header nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    color: #FF6B6B;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #4ECDC4;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 3px solid #FFE66D;
    padding-bottom: 10px;
}

h3 {
    color: #FF6B6B;
    font-size: 1.3em;
}

p strong {
    color: #4ECDC4;
    font-weight: bold;
}

section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4ECDC4;
}

section#home {
    border-left-color: #FF6B6B;
    background: linear-gradient(135deg, #FFF5F5 0%, #fff 100%);
}

section#give {
    border-left-color: #FFE66D;
}

section#stories {
    border-left-color: #4ECDC4;
}

section#contact {
    border-left-color: #FF6B6B;
}

/* Founders Section */
.founders {
    background: linear-gradient(135deg, #FFF5F5 0%, #F0F8FF 100%);
    border-left-color: #FF6B6B !important;
}

.founders-intro {
    text-align: center;
    color: #2C3E50;
    font-size: 1.1em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.founder-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4ECDC4;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-card h3 {
    color: #FF6B6B;
    font-size: 1.5em;
    margin: 20px 20px 5px 20px;
    text-align: center;
}

.founder-title {
    text-align: center;
    color: #4ECDC4;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 20px 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 20px 15px 20px;
    text-align: center;
}

.founder-details {
    list-style: none;
    padding: 0 20px;
    margin: 0 0 20px 0;
    text-align: center;
}

.founder-details li {
    margin-bottom: 8px;
    padding-left: 0;
    color: #2C3E50;
    font-size: 0.9em;
}

.founder-details li:before {
    display: none;
}

.founder-details strong {
    color: #FF6B6B;
}

.founders {
    margin-top: 30px;
}

.founder {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #FFE66D 0%, #FFD93D 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder:hover {
    transform: translateY(-5px);
}

.founder h3 {
    color: #2C3E50;
    margin: 0 0 10px 0;
}

.founder p {
    margin: 0;
    color: #2C3E50;
    font-weight: bold;
    font-size: 1.1em;
}

a {
    color: #FF6B6B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: #4ECDC4;
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
    font-size: 1.2em;
}

footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    margin: auto;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FFE66D;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #BDC3C7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    padding-left: 0;
}

.footer-section ul li:before {
    display: none;
}

.footer-section a {
    color: #4ECDC4;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #FFE66D;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links li {
    padding-left: 0;
}

.social-links li:before {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #4ECDC4;
    color: #95A5A6;
    font-size: 12px;
    max-width: 1000px;
    margin: auto;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        margin-right: 0;
    }

    header nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav a {
        padding: 6px 10px;
        font-size: 0.9em;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    main {
        padding: 20px 10px;
    }

    section {
        padding: 20px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-image {
        height: 200px;
    }

    .founder-card h3 {
        font-size: 1.3em;
    }

    .founder-bio {
        font-size: 0.9em;
    }
}

@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}