Files
warfle_webpage/src/pages/About.css
2025-11-25 00:43:00 +05:30

179 lines
2.6 KiB
CSS

.about {
min-height: calc(100vh - 160px);
padding: 2rem 1rem;
}
.about-header {
text-align: center;
margin-bottom: 4rem;
}
.about-header h1 {
color: #000;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.about-header p {
color: #666;
font-size: 1.1rem;
}
.about-content {
max-width: 1200px;
margin: 0 auto;
}
/* Story Section */
.story-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 4rem;
align-items: center;
}
.story-content h2 {
color: #000;
font-size: 2rem;
margin-bottom: 1.5rem;
}
.story-content p {
color: #666;
line-height: 1.6;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.story-image {
display: flex;
justify-content: center;
align-items: center;
}
.story-logo {
max-width: 250px;
height: auto;
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
/* Values Section */
.values-section {
margin-bottom: 4rem;
}
.values-section h2 {
color: #000;
font-size: 2rem;
text-align: center;
margin-bottom: 3rem;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.value-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
}
.value-card h3 {
color: #FFB400;
font-size: 1.3rem;
margin-bottom: 1rem;
}
.value-card p {
color: #666;
line-height: 1.6;
}
/* Mission Section */
.mission-section {
background-color: #000;
color: #FFB400;
padding: 4rem 2rem;
border-radius: 10px;
text-align: center;
}
.mission-section h2 {
font-size: 2rem;
margin-bottom: 2rem;
}
.mission-section p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.mission-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 2rem;
max-width: 600px;
margin: 0 auto;
}
.stat h3 {
color: #FFB400;
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.stat p {
color: #ccc;
font-size: 1rem;
}
@media (max-width: 768px) {
.story-section {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.story-logo {
max-width: 200px;
height: auto;
}
.values-grid {
grid-template-columns: 1fr;
}
.mission-stats {
grid-template-columns: 1fr;
}
.about-header h1 {
font-size: 2rem;
}
.story-content h2,
.values-section h2 {
font-size: 1.5rem;
}
}