/**
 * Amana Tech - Homepage Section Styles
 * Phase 2: Structure & Content
 * 
 * This file contains styles for all homepage sections:
 * - Hero Section
 * - Impact Statistics
 * - Mission Statement
 * - Programs Grid
 * - Testimonials
 * - Team Members
 * - Partners/Supporters
 * - Final CTA Section
 */

/* ========================================
   HERO SECTION
======================================== */

.amana-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amana-primary-blue) 0%, #1a4fd6 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.amana-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.amana-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--amana-white);
}

.amana-hero h1 {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--amana-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.amana-hero p {
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.amana-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.amana-hero-buttons .amana-btn-primary {
    background: var(--amana-accent-orange);
    border-color: var(--amana-accent-orange);
}

.amana-hero-buttons .amana-btn-primary:hover {
    background: #e66a1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 117, 31, 0.3);
}

.amana-hero-buttons .amana-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--amana-white);
    color: var(--amana-white);
    backdrop-filter: blur(10px);
}

.amana-hero-buttons .amana-btn-secondary:hover {
    background: var(--amana-white);
    color: var(--amana-primary-blue);
}

/* Hero - Mobile Responsive */
@media (max-width: 768px) {
    .amana-hero {
        min-height: 500px;
        padding: 60px 20px;
    }
    
    .amana-hero h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .amana-hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .amana-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .amana-hero-buttons .amana-btn {
        width: 100%;
    }
}

/* ========================================
   IMPACT STATISTICS SECTION
======================================== */

.amana-stats {
    padding: 80px 20px;
    background: var(--amana-white);
}

.amana-stats-title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 60px;
}

.amana-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.amana-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--amana-white);
    border-radius: 12px;
    border: 2px solid var(--amana-light-gray);
    transition: all 0.3s ease;
}

.amana-stat-card:hover {
    border-color: var(--amana-primary-blue);
    box-shadow: 0 8px 24px rgba(45, 107, 255, 0.15);
    transform: translateY(-4px);
}

.amana-stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--amana-primary-blue);
}

.amana-stat-number {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--amana-primary-blue);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.amana-stat-label {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--amana-charcoal);
}

/* Stats - Mobile Responsive */
@media (max-width: 768px) {
    .amana-stats {
        padding: 60px 20px;
    }
    
    .amana-stats-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .amana-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .amana-stat-card {
        padding: 30px 20px;
    }
}

/* ========================================
   MISSION STATEMENT SECTION
======================================== */

.amana-mission {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.amana-mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.amana-mission-title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 40px;
}

.amana-mission-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.amana-mission-content p {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.8;
    color: var(--amana-slate-gray);
    margin-bottom: 24px;
}

.amana-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amana-value-card {
    padding: 40px 30px;
    background: var(--amana-white);
    border-radius: 12px;
    border-left: 4px solid var(--amana-primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.amana-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: var(--amana-accent-orange);
}

.amana-value-card h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--amana-charcoal);
    margin-bottom: 16px;
}

.amana-value-card p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--amana-slate-gray);
    margin: 0;
}

/* Mission - Mobile Responsive */
@media (max-width: 768px) {
    .amana-mission {
        padding: 60px 20px;
    }
    
    .amana-mission-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .amana-mission-content p {
        font-size: 16px;
    }
    
    .amana-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amana-value-card {
        padding: 30px 24px;
    }
}

/* ========================================
   PROGRAMS SECTION
======================================== */

.amana-programs {
    padding: 80px 20px;
    background: var(--amana-white);
}

.amana-programs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.amana-programs-title {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 20px;
}

.amana-programs-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--amana-slate-gray);
}

.amana-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.amana-program-card {
    background: var(--amana-white);
    border-radius: 12px;
    border: 2px solid var(--amana-light-gray);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amana-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amana-primary-blue), var(--amana-accent-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.amana-program-card:hover::before {
    transform: scaleX(1);
}

.amana-program-card:hover {
    border-color: var(--amana-primary-blue);
    box-shadow: 0 12px 32px rgba(45, 107, 255, 0.15);
    transform: translateY(-6px);
}

.amana-program-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amana-primary-blue), #1a4fd6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--amana-white);
    margin-bottom: 24px;
}

.amana-program-card h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--amana-charcoal);
    margin-bottom: 16px;
}

.amana-program-card p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--amana-slate-gray);
    margin-bottom: 24px;
}

.amana-program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.amana-program-meta span {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--amana-slate-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.amana-program-meta span::before {
    content: '•';
    color: var(--amana-primary-blue);
    font-weight: 700;
}

.amana-program-link {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--amana-primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.amana-program-link:hover {
    color: var(--amana-accent-orange);
    gap: 12px;
}

.amana-program-link::after {
    content: '→';
    font-size: 18px;
}

.amana-programs-cta {
    text-align: center;
    margin-top: 50px;
}

/* Programs - Mobile Responsive */
@media (max-width: 768px) {
    .amana-programs {
        padding: 60px 20px;
    }
    
    .amana-programs-title {
        font-size: 32px;
    }
    
    .amana-programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .amana-program-card {
        padding: 30px 24px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.amana-testimonials {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.amana-testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.amana-testimonials-title {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 20px;
}

.amana-testimonials-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--amana-slate-gray);
}

.amana-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.amana-testimonial-card {
    background: var(--amana-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.amana-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--amana-primary-blue);
    opacity: 0.1;
    line-height: 1;
}

.amana-testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.amana-testimonial-quote {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--amana-slate-gray);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.amana-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.amana-testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--amana-primary-blue);
}

.amana-testimonial-info h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--amana-charcoal);
    margin-bottom: 4px;
}

.amana-testimonial-info p {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--amana-slate-gray);
    margin: 0;
}

.amana-testimonial-program {
    font-weight: 600;
    color: var(--amana-primary-blue);
}

/* Testimonials - Mobile Responsive */
@media (max-width: 768px) {
    .amana-testimonials {
        padding: 60px 20px;
    }
    
    .amana-testimonials-title {
        font-size: 32px;
    }
    
    .amana-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .amana-testimonial-card {
        padding: 30px 24px;
    }
}

/* ========================================
   TEAM SECTION
======================================== */

.amana-team {
    padding: 80px 20px;
    background: var(--amana-white);
}

.amana-team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.amana-team-title {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 20px;
}

.amana-team-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--amana-slate-gray);
}

.amana-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.amana-team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.amana-team-member:hover {
    transform: translateY(-8px);
}

.amana-team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 4px solid var(--amana-light-gray);
    transition: all 0.3s ease;
}

.amana-team-member:hover .amana-team-photo {
    border-color: var(--amana-primary-blue);
    box-shadow: 0 8px 24px rgba(45, 107, 255, 0.2);
}

.amana-team-member h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--amana-charcoal);
    margin-bottom: 8px;
}

.amana-team-role {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--amana-primary-blue);
    margin-bottom: 16px;
    display: block;
}

.amana-team-bio {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--amana-slate-gray);
    margin-bottom: 20px;
}

.amana-team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.amana-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--amana-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amana-slate-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.amana-team-social a:hover {
    background: var(--amana-primary-blue);
    color: var(--amana-white);
    transform: translateY(-2px);
}

/* Team - Mobile Responsive */
@media (max-width: 768px) {
    .amana-team {
        padding: 60px 20px;
    }
    
    .amana-team-title {
        font-size: 32px;
    }
    
    .amana-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

/* ========================================
   PARTNERS SECTION
======================================== */

.amana-partners {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.amana-partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.amana-partners-title {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--amana-charcoal);
    margin-bottom: 20px;
}

.amana-partners-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--amana-slate-gray);
}

.amana-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.amana-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--amana-white);
    border-radius: 12px;
    border: 2px solid var(--amana-light-gray);
    transition: all 0.3s ease;
    min-height: 150px;
}

.amana-partner-logo:hover {
    border-color: var(--amana-primary-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.amana-partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.amana-partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partners - Mobile Responsive */
@media (max-width: 768px) {
    .amana-partners {
        padding: 60px 20px;
    }
    
    .amana-partners-title {
        font-size: 32px;
    }
    
    .amana-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }
    
    .amana-partner-logo {
        padding: 20px;
        min-height: 120px;
    }
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.amana-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--amana-primary-blue) 0%, #1a4fd6 100%);
    position: relative;
    overflow: hidden;
}

.amana-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,117,31,0.2)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.amana-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--amana-white);
}

.amana-final-cta h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--amana-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.amana-final-cta p {
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.amana-final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.amana-final-cta .amana-btn-primary {
    background: var(--amana-accent-orange);
    border-color: var(--amana-accent-orange);
}

.amana-final-cta .amana-btn-primary:hover {
    background: #e66a1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 117, 31, 0.4);
}

.amana-final-cta .amana-btn-secondary {
    background: transparent;
    border: 2px solid var(--amana-white);
    color: var(--amana-white);
}

.amana-final-cta .amana-btn-secondary:hover {
    background: var(--amana-white);
    color: var(--amana-primary-blue);
}

/* Final CTA - Mobile Responsive */
@media (max-width: 768px) {
    .amana-final-cta {
        padding: 60px 20px;
    }
    
    .amana-final-cta h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .amana-final-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .amana-final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .amana-final-cta-buttons .amana-btn {
        width: 100%;
    }
}
