Spaces:
Running
Running
/* Common Styles */ | |
:root { | |
--primary-color: #4285f4; | |
--secondary-color: #34a853; | |
--accent-color: #ea4335; | |
--text-color: #333; | |
--light-gray: #f5f5f5; | |
--dark-gray: #666; | |
--white: #fff; | |
--shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
--transition: all 0.3s ease; | |
} | |
.page-header { | |
background: var(--white); | |
box-shadow: var(--shadow); | |
position: fixed; | |
width: 100%; | |
top: 0; | |
z-index: 1000; | |
} | |
.main-nav { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 1rem 2rem; | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
.logo { | |
display: flex; | |
align-items: center; | |
gap: 0.5rem; | |
font-size: 1.5rem; | |
font-weight: bold; | |
color: var(--primary-color); | |
} | |
.nav-links { | |
display: flex; | |
gap: 2rem; | |
list-style: none; | |
} | |
.nav-links a { | |
color: var(--text-color); | |
text-decoration: none; | |
font-weight: 500; | |
transition: var(--transition); | |
} | |
.nav-links a:hover, | |
.nav-links a.active { | |
color: var(--primary-color); | |
} | |
.page-content { | |
padding-top: 80px; | |
min-height: calc(100vh - 300px); | |
} | |
.hero-section { | |
text-align: center; | |
padding: 4rem 2rem; | |
background: linear-gradient(to right, #4285f4, #34a853); | |
color: var(--white); | |
} | |
.hero-section h1 { | |
font-size: 2.5rem; | |
margin-bottom: 1rem; | |
} | |
.section-desc { | |
font-size: 1.2rem; | |
max-width: 600px; | |
margin: 0 auto; | |
opacity: 0.9; | |
} | |
/* About Page Styles */ | |
.about-section { | |
max-width: 1200px; | |
margin: 0 auto; | |
padding: 2rem; | |
} | |
.mission-vision { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
gap: 2rem; | |
margin-bottom: 4rem; | |
} | |
.mission, .vision { | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.values-grid { | |
display: grid; | |
grid-template-columns: repeat(4, 1fr); | |
gap: 2rem; | |
margin-bottom: 4rem; | |
} | |
.value-item { | |
text-align: center; | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.value-item i { | |
font-size: 2rem; | |
color: var(--primary-color); | |
margin-bottom: 1rem; | |
} | |
.team-grid { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
gap: 2rem; | |
margin-bottom: 4rem; | |
} | |
.team-member { | |
text-align: center; | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.member-photo { | |
width: 150px; | |
height: 150px; | |
border-radius: 50%; | |
margin-bottom: 1rem; | |
object-fit: cover; | |
} | |
.achievements-grid { | |
display: grid; | |
grid-template-columns: repeat(4, 1fr); | |
gap: 2rem; | |
} | |
.achievement-item { | |
text-align: center; | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.achievement-item .number { | |
font-size: 2.5rem; | |
font-weight: bold; | |
color: var(--primary-color); | |
} | |
/* Contact Page Styles */ | |
.contact-section { | |
max-width: 1200px; | |
margin: 0 auto; | |
padding: 2rem; | |
display: grid; | |
grid-template-columns: 1fr 2fr; | |
gap: 2rem; | |
} | |
.contact-info { | |
background: var(--white); | |
padding: 2rem; | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.contact-item { | |
display: flex; | |
align-items: center; | |
gap: 1rem; | |
margin-bottom: 1.5rem; | |
} | |
.contact-item i { | |
font-size: 1.5rem; | |
color: var(--primary-color); | |
} | |
.contact-form { | |
background: var(--white); | |
padding: 2rem; | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
} | |
.form-group { | |
margin-bottom: 1.5rem; | |
} | |
.form-group label { | |
display: block; | |
margin-bottom: 0.5rem; | |
color: var(--text-color); | |
} | |
.form-group input, | |
.form-group textarea { | |
width: 100%; | |
padding: 0.75rem; | |
border: 1px solid #ddd; | |
border-radius: 4px; | |
transition: var(--transition); | |
} | |
.form-group input:focus, | |
.form-group textarea:focus { | |
border-color: var(--primary-color); | |
outline: none; | |
} | |
.submit-button { | |
background: var(--primary-color); | |
color: var(--white); | |
padding: 0.75rem 1.5rem; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
transition: var(--transition); | |
} | |
.submit-button:hover { | |
background: #3367d6; | |
} | |
/* Follow Us Page Styles */ | |
.social-section { | |
max-width: 1200px; | |
margin: 0 auto; | |
padding: 2rem; | |
} | |
.social-grid { | |
display: grid; | |
grid-template-columns: repeat(4, 1fr); | |
gap: 2rem; | |
margin-bottom: 4rem; | |
} | |
.social-card { | |
text-align: center; | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
transition: var(--transition); | |
} | |
.social-card:hover { | |
transform: translateY(-5px); | |
} | |
.social-card i { | |
font-size: 3rem; | |
margin-bottom: 1rem; | |
} | |
.social-card.facebook i { color: #1877f2; } | |
.social-card.twitter i { color: #1da1f2; } | |
.social-card.linkedin i { color: #0077b5; } | |
.social-card.instagram i { color: #e4405f; } | |
.social-button { | |
display: inline-flex; | |
align-items: center; | |
gap: 0.5rem; | |
background: var(--primary-color); | |
color: var(--white); | |
padding: 0.75rem 1.5rem; | |
border-radius: 4px; | |
text-decoration: none; | |
margin: 1rem 0; | |
transition: var(--transition); | |
} | |
.social-button:hover { | |
background: #3367d6; | |
} | |
.followers { | |
display: block; | |
color: var(--dark-gray); | |
font-size: 0.9rem; | |
margin-top: 0.5rem; | |
} | |
.community-section { | |
max-width: 1200px; | |
margin: 0 auto; | |
padding: 2rem; | |
text-align: center; | |
} | |
.community-grid { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
gap: 2rem; | |
margin: 2rem 0; | |
} | |
.community-card { | |
padding: 2rem; | |
background: var(--white); | |
border-radius: 8px; | |
box-shadow: var(--shadow); | |
transition: var(--transition); | |
} | |
.community-card:hover { | |
transform: translateY(-5px); | |
} | |
.community-card i { | |
font-size: 2.5rem; | |
color: var(--primary-color); | |
margin-bottom: 1rem; | |
} | |
.community-button { | |
display: inline-block; | |
background: var(--light-gray); | |
color: var(--text-color); | |
padding: 0.75rem 1.5rem; | |
border-radius: 4px; | |
text-decoration: none; | |
margin-top: 1rem; | |
transition: var(--transition); | |
} | |
.community-button:hover { | |
background: #e0e0e0; | |
} | |
.newsletter-section { | |
background: var(--light-gray); | |
padding: 4rem 2rem; | |
text-align: center; | |
} | |
.newsletter-form { | |
max-width: 500px; | |
margin: 2rem auto 0; | |
} | |
.newsletter-form .form-group { | |
display: flex; | |
gap: 1rem; | |
} | |
.subscribe-button { | |
background: var(--primary-color); | |
color: var(--white); | |
padding: 0.75rem 1.5rem; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
transition: var(--transition); | |
display: inline-flex; | |
align-items: center; | |
gap: 0.5rem; | |
} | |
.subscribe-button:hover { | |
background: #3367d6; | |
} | |
/* Footer Styles */ | |
.page-footer { | |
background: var(--text-color); | |
color: var(--white); | |
padding: 4rem 2rem 2rem; | |
} | |
.footer-content { | |
max-width: 1200px; | |
margin: 0 auto; | |
display: grid; | |
grid-template-columns: 2fr 1fr 1fr; | |
gap: 2rem; | |
} | |
.footer-section h3 { | |
margin-bottom: 1rem; | |
} | |
.footer-section ul { | |
list-style: none; | |
padding: 0; | |
} | |
.footer-section ul li { | |
margin-bottom: 0.5rem; | |
} | |
.footer-section a { | |
color: var(--white); | |
text-decoration: none; | |
opacity: 0.8; | |
transition: var(--transition); | |
} | |
.footer-section a:hover { | |
opacity: 1; | |
} | |
.social-links { | |
display: flex; | |
gap: 1rem; | |
} | |
.social-links a { | |
font-size: 1.5rem; | |
} | |
.footer-bottom { | |
max-width: 1200px; | |
margin: 2rem auto 0; | |
padding-top: 2rem; | |
border-top: 1px solid rgba(255, 255, 255, 0.1); | |
text-align: center; | |
opacity: 0.8; | |
} | |
/* Responsive Design */ | |
@media (max-width: 1200px) { | |
.about-section, | |
.contact-section, | |
.social-section, | |
.community-section { | |
padding: 2rem 1rem; | |
} | |
.values-grid, | |
.achievements-grid { | |
grid-template-columns: repeat(2, 1fr); | |
} | |
} | |
@media (max-width: 992px) { | |
.mission-vision, | |
.team-grid, | |
.social-grid { | |
grid-template-columns: repeat(2, 1fr); | |
} | |
.contact-section { | |
grid-template-columns: 1fr; | |
} | |
.footer-content { | |
grid-template-columns: 1fr 1fr; | |
} | |
} | |
@media (max-width: 768px) { | |
.main-nav { | |
flex-direction: column; | |
padding: 1rem; | |
} | |
.nav-links { | |
margin-top: 1rem; | |
gap: 1rem; | |
} | |
.hero-section { | |
padding: 3rem 1rem; | |
} | |
.hero-section h1 { | |
font-size: 2rem; | |
} | |
.values-grid, | |
.team-grid, | |
.social-grid, | |
.community-grid { | |
grid-template-columns: 1fr; | |
} | |
.newsletter-form .form-group { | |
flex-direction: column; | |
} | |
} | |
@media (max-width: 576px) { | |
.mission-vision { | |
grid-template-columns: 1fr; | |
} | |
.footer-content { | |
grid-template-columns: 1fr; | |
text-align: center; | |
} | |
.social-links { | |
justify-content: center; | |
} | |
} |