/* Doctors Page Styles */
@import url('style.css');

.page-header {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1551076805-e1869033e561?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

/* Doctors List Styled as Resume/Profile Cards */
.doctors-list {
    padding-bottom: 100px;
}

.doctor-profile {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.doctor-profile:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.doctor-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.profile-img-col {
    width: 400px;
    min-height: 500px;
    position: relative;
}

.profile-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info-col {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doc-role {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.doc-name {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.doc-bio {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.doc-specs {
    margin-bottom: 40px;
}

.specs-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    border-left: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    color: var(--secondary-color);
}

.doc-actions {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media screen and (max-width: 900px) {

    .doctor-profile,
    .doctor-profile:nth-child(even) {
        flex-direction: column;
    }

    .profile-img-col {
        width: 100%;
        height: 400px;
        min-height: auto;
    }

    .profile-info-col {
        padding: 40px;
    }
}
.page-header {
    height: 100px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
}
