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

:root {
    --coop-blue: #2563eb;
    --coop-orange: #f97316;
    --coop-yellow: #fbbf24;
    --coop-white: #ffffff;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--coop-white);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-icon{
    width: 36px;
    height: 36px;
    /* background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.logo-icon img {
    width: 80px;
    border-radius: 8px;
    font-weight: 800;
    margin-right: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
}

.nav-links a.active {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
    color: white;
}

.nav-cta {
    background: var(--coop-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--dark-blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero h1 {
    color: var(--coop-yellow);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--coop-white);
    margin: 1.5rem 0;
    line-height: 1.8;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Story Section */
.story {
    padding: 5rem 5%;
    background: var(--coop-white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--coop-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 5rem 5%;
    background: var(--coop-white);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--coop-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 2rem auto 1rem;
    overflow: hidden;
    border: 3px solid var(--coop-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--coop-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: var(--coop-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.date-badge {
    background: linear-gradient(to right, var(--coop-blue), var(--coop-orange));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--coop-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--coop-yellow);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 5rem 5%;
    background: var(--coop-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin: 1.5rem 0 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--coop-orange);
    color: white;
}

.btn-primary:hover {
    background: rgba(223, 177, 91, 0.925);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--dark-gray);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: var(--coop-orange);
    color: var(--coop-orange);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--coop-yellow);
}

.footer-brand p {
    color: var(--coop-white);
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--coop-yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--coop-white);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--coop-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: var(--coop-white);
    font-size: 0.9rem;
}

.footer-icon img{
    width: 50%;
    
}

.footer-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Responsive */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        text-align: center;
        padding-top: 7rem;
    }
    
    .story-container {
        text-align: center;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}
