/* About Page Specific Styles */
p {
    padding-left: 7px;
    padding-right: 7px;
}
h2, h4{
    padding-left: 7px;
    padding-right: 7px;
}


/* Active Navigation Link */
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    border-radius: 4px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f7eee5 0%, #faf0e4 100%);
    color: #4B2E2E;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.about-hero .hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 0rem;
    font-weight: 450;
}

.about-hero .hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

/* Story Section */
.story-section {
    margin-bottom: 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #718096;
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 60px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-item h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #c6a27e;
    margin-bottom: 1rem;
    display: block;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.values-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    background: white;
    padding: 60px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member .role {
    color: #c6a27e;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member p:not(.role) {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-tagline {
        font-size: 1.3rem;
    }
    
    .story-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2,
    .mission-section h2,
    .process-section h2,
    .values-text h2,
    .team-section h2 {
        font-size: 2rem;
    }
    
    .mission-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .story-section,
    .mission-section,
    .process-section,
    .values-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-tagline {
        font-size: 1.2rem;
    }
    
    .story-text h2,
    .mission-section h2,
    .process-section h2,
    .values-text h2,
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .mission-item,
    .process-step,
    .team-member {
        padding: 1.5rem;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .values-image img {
        height: 250px;
    }
}