/* Global styles */ :root { --navy-blue: #1B1E3B; --orange: #F29100; --dark-blue: #115C94; --light-blue: #259ED5; --gray-bg: #f5f5f5; --white: #ffffff; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { line-height: 1.6; color: #333; } .container { width: 90%; max-width: 1200px; margin: 0 auto; } h1, h2, h3, h4 { font-weight: 700; margin-bottom: 0.5rem; color: var(--navy-blue); } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } p { margin-bottom: 1rem; } a { text-decoration: none; color: var(--dark-blue); } ul { list-style: none; } .btn { display: inline-block; padding: 0.8rem 1.5rem; border-radius: 5px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .btn-primary { background-color: var(--orange); color: white; } .btn-primary:hover { background-color: #d98100; } .btn-secondary { background-color: var(--dark-blue); color: white; } .btn-secondary:hover { background-color: #0e4a78; } .text-center { text-align: center; } /* Header styles */ header { background-color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; } .logo { display: flex; align-items: center; } .logo img { height: 60px; margin-right: 10px; border-radius: 50%; } .nav-links { display: flex; } .nav-links li { margin-left: 2rem; } .nav-links a { font-weight: 600; color: var(--navy-blue); transition: color 0.3s ease; } .nav-links a:hover, .nav-links a.active { color: var(--orange); } .language-toggle { display: flex; align-items: center; font-weight: 600; cursor: pointer; } .language-toggle i { margin-right: 0.5rem; } .mobile-menu { display: none; font-size: 1.5rem; cursor: pointer; } /* Page banner */ .page-banner { height: 40vh; min-height: 300px; display: flex; align-items: center; justify-content: center; color: white; text-align: center; margin-top: 80px; } .page-banner h1 { color: white; font-size: 3rem; } /* Hero section */ .hero { height: 100vh; display: flex; align-items: center; color: white; text-align: center; padding: 8rem 0; } .hero h1 { font-size: 4rem; margin-bottom: 1rem; color: white; } .hero p { font-size: 1.5rem; margin-bottom: 2rem; } /* Footer */ footer { background-color: var(--navy-blue); color: white; padding: 4rem 0 2rem; } .footer-content { display: flex; flex-wrap: wrap; gap: 3rem; margin-bottom: 2rem; } .footer-section { flex: 1; min-width: 250px; } .footer-section h3 { color: white; margin-bottom: 1.5rem; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: #ccc; transition: color 0.3s ease; } .footer-links a:hover { color: var(--orange); } .social-links { display: flex; gap: 1rem; margin-top: 1rem; } .social-links a { display: inline-block; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; } .social-links a:hover { background-color: var(--orange); } .copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: #aaa; } /* Responsive styles */ @media (max-width: 768px) { .nav-links { display: none; } .mobile-menu { display: block; } .hero h1 { font-size: 2.5rem; } .page-banner h1 { font-size: 2.5rem; } } @media (max-width: 480px) { .hero h1 { font-size: 2rem; } .page-banner h1 { font-size: 2rem; } .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; } } .volunteer-form { padding: 5rem 0; background-color: var(--gray-bg); } .form-container { max-width: 800px; margin: 2rem auto 0; } /* About page specific styles */ .our-story { padding: 5rem 0; } .story-content { display: flex; gap: 3rem; align-items: center; margin-top: 2rem; } .story-text { flex: 1; } .story-image { flex: 1; max-width: 500px; } .story-image img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .vision { padding: 5rem 0; background-color: var(--gray-bg); } .vision-content { display: flex; gap: 3rem; align-items: center; margin-top: 2rem; } .vision-text { flex: 1; } .vision-image { flex: 1; max-width: 500px; } .vision-image img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .team { padding: 5rem 0; } .team-members { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .team-member { background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; } .member-image { width: 100%; height: 300px; object-fit: cover; } .member-info { padding: 1.5rem; } .member-name { color: var(--navy-blue); margin-bottom: 0.5rem; } .member-role { color: var(--orange); font-weight: 600; margin-bottom: 1rem; } .member-bio { margin-bottom: 1rem; } .social-links-member { display: flex; gap: 1rem; } .social-links-member a { color: var(--navy-blue); transition: color 0.3s ease; } .social-links-member a:hover { color: var(--orange); } .values { padding: 5rem 0; background-color: var(--gray-bg); } .values-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .value { text-align: center; padding: 2rem; background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .value i { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; } .join-us { padding: 5rem 0; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/join-us-bg.jpg') center/cover no-repeat; color: white; text-align: center; } .join-us h2 { color: white; } /* Responsive styles for About page */ @media (max-width: 768px) { .story-content, .vision-content { flex-direction: column; } .story-image, .vision-image { max-width: 100%; } .team-members { grid-template-columns: 1fr; } } /* Home page specific styles */ .mission { padding: 5rem 0; background-color: var(--gray-bg); } .mission-content { display: flex; gap: 4rem; margin-top: 3rem; } .mission-text { flex: 1; } .mission-points { flex: 1; } .mission-points ul li { display: flex; align-items: center; margin-bottom: 1.5rem; } .mission-points i { color: var(--orange); margin-right: 1rem; font-size: 1.5rem; } .impact { padding: 5rem 0; } .stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; } .stat-item { text-align: center; min-width: 200px; } .stat-number { font-size: 3rem; font-weight: 700; color: var(--orange); margin-bottom: 0.5rem; } .programs { padding: 5rem 0; background-color: var(--gray-bg); } .program-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .program-card { background-color: white; padding: 2rem; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .program-card:hover { transform: translateY(-5px); } .program-card i { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; } .cta { padding: 5rem 0; color: white; text-align: center; } .cta h2 { color: white; margin-bottom: 1rem; } .donation-options { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 3rem 0; } .donation-option { background-color: rgba(255, 255, 255, 0.1); padding: 2rem; border-radius: 10px; min-width: 200px; } .donation-amount { font-size: 2rem; font-weight: 700; color: var(--orange); margin-bottom: 1rem; } /* Responsive styles for home page */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .mission-content { flex-direction: column; } .stat-item { min-width: 150px; } .donation-option { width: 100%; } } /* Contact page specific styles */ .contact-intro { padding: 5rem 0; background-color: var(--gray-bg); } .contact-intro-content { max-width: 800px; margin: 0 auto; text-align: center; } .contact-section { padding: 5rem 0; } .contact-container { display: flex; flex-wrap: wrap; gap: 3rem; } .contact-form-container { flex: 3; min-width: 300px; background-color: white; padding: 2.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .contact-info { flex: 2; min-width: 300px; } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; } .form-control { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: border-color 0.3s ease; } .form-control:focus { outline: none; border-color: var(--light-blue); } .form-select { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; background-color: white; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url('data:image/svg+xml;utf8,'); background-repeat: no-repeat; background-position: right 10px center; transition: border-color 0.3s ease; } .form-select:focus { outline: none; border-color: var(--light-blue); } textarea.form-control { min-height: 150px; resize: vertical; } .info-card { background-color: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 2rem; } .info-card h3 { margin-bottom: 1.5rem; color: var(--dark-blue); } .info-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; } .info-icon { color: var(--orange); font-size: 1.2rem; margin-right: 1rem; width: 20px; text-align: center; } .social-info { margin-top: 2rem; } .social-info h4 { margin-bottom: 1rem; } .faq-section { padding: 5rem 0; background-color: var(--gray-bg); } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 1.5rem; overflow: hidden; } .faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background-color 0.3s ease; } .faq-question h3 { margin-bottom: 0; font-size: 1.2rem; } .faq-question i { color: var(--dark-blue); transition: transform 0.3s ease; } .faq-answer { padding: 0 1.5rem 1.5rem; border-top: 1px solid #f0f0f0; } .faq-item.active .faq-question { background-color: rgba(242, 145, 0, 0.05); } .faq-item.active .faq-question i { transform: rotate(180deg); } .map-section { padding: 5rem 0; } .map-container { height: 400px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .map-container iframe { width: 100%; height: 100%; border: none; } /* Responsive styles for contact page */ @media (max-width: 768px) { .contact-form-container, .contact-info { flex: 100%; } }