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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px 5px 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #2d5a27;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-image {
    height: 140px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.nav-menu {
    display: -webkit-flex;
    display: flex;
    list-style: none;
    gap: 2rem;
    -webkit-align-items: center;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2d5a27;
}

.cta-button {
    background: #2d5a27;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1e3d1a;
}

.hamburger {
    display: none;
    -webkit-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: -webkit-flex;
    display: flex;
    gap: 1rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2d5a27;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2d5a27;
    padding: 15px 30px;
    border: 2px solid #2d5a27;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    border: 2px dashed #adb5bd;
}

.image-placeholder.small {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Value Proposition Section */
.value-prop {
    padding: 80px 0;
    background: white;
}

.value-grid {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2d5a27;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #495057;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    -webkit-align-items: center;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #2d5a27;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6c757d;
    font-weight: 500;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: white;
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 3rem;
    font-weight: 700;
}

.programs-grid {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    padding-left: 0;
}

.program-card li {
    color: #6c757d;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.program-card li:before {
    content: "✓";
    color: #2d5a27;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #f8f9fa;
}

.community h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.community-grid {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.community-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.community-item h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.community-item ul {
    list-style: none;
    padding-left: 0;
}

.community-item li {
    color: #495057;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 1.5rem;
}

.community-item li:before {
    content: "•";
    color: #2d5a27;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Teachers Section */
.teachers {
    padding: 80px 0;
    background: white;
}

.teachers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.teacher-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.teacher-photo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.teacher-card h3 {
    color: #2d5a27;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.teacher-title {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-item h4 {
    color: #2d5a27;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #495057;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2d5a27;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #2d5a27;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    height: 35px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: -webkit-flex;
        display: flex;
    }
    
    .logo-image {
        height: 200px;
        max-width: 200px;
    }
    
    .hero-container {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 180px;
        max-width: 180px;
    }
    
    .value-grid,
    .programs-grid,
    .community-grid,
    .teachers-grid {
        -webkit-grid-template-columns: 1fr;
        grid-template-columns: 1fr;
    }
} 