/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://via.placeholder.com/1920x600?text=About+GroomMate');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-values h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: white;
}

.team h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.member-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Active Navigation Link */
nav ul li a.active {
    color: #3498db;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h2 {
        font-size: 32px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
    
    .our-story, .our-values, .team {
        padding: 60px 0;
    }
    
    .story-text h3, .our-values h3, .team h3 {
        font-size: 28px;
    }
    
    .team-grid {
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}