/* Pages CSS - For About, Contact, Team pages */

.page-main {
    flex: 1;
    padding: 40px 20px;
    width: 100%;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-content {
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.page-image {
    margin: 30px 0;
    text-align: center;
}

.page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    white-space: pre-line;
}

.empty-page {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-page h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Contact Page Styles */
.contact-info {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.map-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.team-photo {
    margin-bottom: 20px;
}

.team-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.team-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
}

.team-info h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.team-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-email {
    margin-top: 15px;
}

.team-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.team-email a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-content {
        padding: 25px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        max-height: none;
    }
}

