/* Breadcrumb Navigation */


/* Container */
.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.mission-statement blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #e74c3c;
    padding-left: 20px;
}

/* Team Grid Section */
.team-grid {
    padding: 60px 0;
    background-color: #fff;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(45deg, #e74c3c22, #2c3e5022);
    transform: scale(1.05);
    transition: all 0.3s ease;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    z-index: 2;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member:hover .member-image::before {
    transform: scale(1.15);
    background: linear-gradient(45deg, #e74c3c33, #2c3e5033);
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a {
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.member-image:hover .social-links {
    opacity: 1;
}

.member-image .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-image .social-links {
    bottom: 0;
}

.member-image .social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-image .social-links a:hover {
    color: #e74c3c;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-info h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-members {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.5rem;
    }
    
    .team-hero p {
        font-size: 1rem;
    }

    .mission-statement blockquote {
        font-size: 1.2rem;
    }
}

/* Image Styles */
.member-image img {
    opacity: 1;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.team-member {
    position: relative;
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e74c3c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.team-member:hover::after {
    width: 100%;
}

.member-info h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #e74c3c;
    margin: 10px auto;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover .member-info h3::after {
    transform: scaleX(1);
}

/* Responsive Media Queries */
@media (max-width: 480px) {
    .team-members {
        grid-template-columns: 1fr;
    }

    .team-hero {
        padding: 40px 0;
    }

    .member-info {
        padding: 15px;
    }
}