/* Instructors Page Styles */

/* Hero Section */
.instructors-hero {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB3 100%);
    padding: 5em 6em 3em 6em;
    margin-top: 70px;
    text-align: center;
}

.instructors-hero h1 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #D35400;
    margin-bottom: 0.5em;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Instructors Section */
.instructors-section {
    padding: 3em 6em;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
}

.instructors-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Instructor Card - Horizontal Layout */
.instructor-card {
    background: white;
    border: 2px solid #FFE4CC;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: row;
    padding: 24px;
    gap: 28px;
    align-items: flex-start;
}

.instructor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.12);
    border-color: #FF9933;
}

/* Instructor Photo - Compact Passport Style */
.instructor-photo {
    width: 160px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 3px solid #FFE4CC;
    flex-shrink: 0;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-photo img {
    transform: scale(1.05);
}

/* Instructor Content */
.instructor-content {
    flex: 1;
    text-align: left;
}

.instructor-content h3 {
    font-size: 24px;
    color: #D35400;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Credentials Badges */
.instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.credential-badge {
    background: linear-gradient(135deg, #FFE4CC, #FFD4A8);
    color: #D35400;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #FFD4A8;
}

/* Specialization */
.instructor-specialization {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.instructor-specialization strong {
    color: #D35400;
    font-weight: 600;
}

/* Location & Education */
.instructor-location,
.instructor-education {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
}

/* Bio */
.instructor-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* Achievement */
.instructor-achievement {
    background: linear-gradient(135deg, #FFF5ED, #FFFFFF);
    border-left: 4px solid #FF9933;
    padding: 12px 16px;
    font-size: 13px;
    color: #D35400;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 16px;
}

/* CTA Section */
.instructors-cta {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB3 100%);
    padding: 4em 6em;
    text-align: center;
}

.instructors-cta h2 {
    font-size: 36px;
    color: #D35400;
    margin-bottom: 0.5em;
}

.instructors-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2em;
}

.cta-button {
    text-decoration: none;
    display: inline-block;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .instructors-hero {
        padding: 4em 1.5em 2.5em 1.5em;
    }

    .instructors-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .instructors-section {
        padding: 3em 1.5em;
    }

    .instructors-grid {
        gap: 28px;
    }

    .instructor-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .instructor-photo {
        width: 140px;
        height: 180px;
        margin: 0 auto;
    }

    .instructor-content {
        text-align: center;
    }

    .instructor-content h3 {
        font-size: 22px;
    }

    .instructor-credentials {
        justify-content: center;
    }

    .instructors-cta {
        padding: 3em 1.5em;
    }

    .instructors-cta h2 {
        font-size: 28px;
    }

    .instructors-cta p {
        font-size: 16px;
    }
}

/* Tablet Responsive */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .instructors-hero {
        padding: 4em 3em 2.5em 3em;
    }

    .instructors-section {
        padding: 3em 3em;
    }

    .instructors-grid {
        gap: 30px;
    }

    .instructor-card {
        padding: 22px;
        gap: 24px;
    }

    .instructor-photo {
        width: 150px;
        height: 190px;
    }
}
