/* Import design tokens */
@import url('../../design-tokens.css');

/* Team Main Container */
.team-main {
    min-height: 100vh;
    background-color: white;
}

/* Container moved to common.css */

/* Team Hero Section */
.team-hero {
    background: white;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-charcoal-black);
}

.team-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

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

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

/* Team Cards */
.team-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.team-content {
    padding: 30px 25px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    margin-bottom: 8px;
}

.team-job-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.team-description p {
    margin: 0;
}

/* No Team Members Message */
.no-team-members {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-hero {
        padding: 120px 0 50px;
    }
    
    .team-title {
        font-size: 40px;
        color: var(--accent-charcoal-black);
    }
    
    .team-subtitle {
        font-size: 18px;
        color: #666;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-image {
        height: 300px;
    }
    
    .team-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .team-hero {
        padding: 110px 0 40px;
    }
    
    .team-title {
        font-size: 32px;
        color: var(--accent-charcoal-black);
    }
    
    .team-subtitle {
        font-size: 16px;
        color: #666;
    }
    
    .team-image {
        height: 280px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-job-title {
        font-size: 14px;
    }
    
    .team-description {
        font-size: 14px;
    }
}

/* Footer Styles (shared with other pages) */
.footer {
    background-color: var(--accent-charcoal-black);
    color: var(--page-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: var(--page-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-section .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
}

