/* ============================================
   GROWTECH COLLECTIVE - ABOUT US CSS
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

/* ============================================
   STICKY NAVIGATION - CONSISTENT SIZE
   ============================================ */
nav {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    padding: 0.6rem 1.5rem;
    box-shadow: 0 2px 10px rgba(47, 133, 90, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo {
    height: 35px;
    width: auto;
}

.name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

nav li:not(.brand) {
    display: inline-block;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-box {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: -3rem -2rem 3rem -2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(47, 133, 90, 0.2);
}

.about-hero h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-hero h1::before {
    content: "👋 ";
}

/* ============================================
   LOGO
   ============================================ */
.mainLogo {
    max-width: 250px;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

/* ============================================
   MISSION STATEMENT
   ============================================ */
.mission-statement {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #2f855a;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.1);
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.team-section h2 {
    color: #2f855a;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.team-section h2::before {
    content: "👥 ";
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 133, 90, 0.15);
    border-color: #9ae6b4;
}

.team-member::before {
    content: "🌱";
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================
   WHAT WE OFFER SECTION
   ============================================ */
.offer-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid #9ae6b4;
}

.offer-section h2 {
    color: #2f855a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.offer-section h2::before {
    content: "✨ ";
}

.offer-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.contact-section h2 {
    color: #2f855a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-section h2::before {
    content: "📧 ";
}

.contact-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-form-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: 2.5rem;
    color: #2f855a;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    color: #2f855a;
    margin: 3rem 0 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    color: #2f855a;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

a {
    color: #2f855a;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #38a169;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    nav ul {
        gap: 0.4rem;
    }
    
    .name {
        font-size: 1.1rem;
    }
    
    nav a {
        padding: 0.4rem 0.65rem;
        font-size: 0.88rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .brand {
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 0.4rem;
    }
    
    .nav-logo {
        height: 26px;
    }
    
    .name {
        font-size: 1rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .about-hero {
        padding: 2.5rem 1.5rem;
        margin: -2rem -1rem 2rem -1rem;
    }

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

    .mainLogo {
        max-width: 180px;
    }

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

    .mission-statement,
    .team-section,
    .offer-section,
    .contact-section {
        padding: 2rem 1.5rem;
    }

    .contact-form-container iframe {
        width: 100% !important;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    nav a {
        padding: 0.35rem 0.55rem;
        font-size: 0.82rem;
    }
    
    .name {
        font-size: 0.95rem;
    }
    
    .nav-logo {
        height: 24px;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .team-section h2,
    .offer-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .mission-statement,
    .team-section,
    .offer-section,
    .contact-section {
        padding: 1.5rem;
    }
}

/* ============================================
   SITE FOOTER - FULLY UPDATED
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff; /* White headings */
}

.footer-section p,
.footer-section ul,
.footer-section li {
    color: #ffffff; /* White text for readability */
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff; /* White links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f0fff4; /* Slightly lighter white on hover */
}

/* Footer Social Media */
.footer-social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    background: #ffffff; /* White circle */
    color: #2f855a; /* Green icon */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-social-media a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #38a169; /* Green on hover */
    color: #ffffff; /* Icon turns white on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #ffffff; /* Full white copyright */
    font-weight: 500; /* Slightly bolder for visibility */
}

#copy {
    color: white;
}