/**
 * BK Mentorluk Programı - Frontend Styles
 */

/* General */
.bk-mentor-listesi,
.bk-mentor-basvuru {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Mentor List Intro */
.bk-mentor-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.bk-mentor-intro h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.bk-mentor-intro p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bk-mentor-intro p:last-child {
    margin-bottom: 0;
}

.bk-mentor-intro-note {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    text-align: left;
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .bk-mentor-intro {
        padding: 20px;
        margin-bottom: 30px;
    }

    .bk-mentor-intro h2 {
        font-size: 22px;
    }

    .bk-mentor-intro p {
        font-size: 14px;
    }
}

/* Notices */
.bk-notice {
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bk-notice-info {
    background: #e8f4fd;
    border-left: 4px solid #0073aa;
    color: #1e3a5f;
}

.bk-notice-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.bk-notice-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.bk-notice p {
    margin: 0 0 15px 0;
}

.bk-notice p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.bk-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.bk-btn-primary {
    background: #1a1a1a;
    color: #fff !important;
}

.bk-btn-primary:hover {
    background: #333;
    color: #fff !important;
}

.bk-btn-cancel {
    background: #ef4444;
    color: #fff !important;
}

.bk-btn-cancel:hover {
    background: #dc2626;
    color: #fff !important;
}

/* Mentor Grid */
.bk-mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Mentor Card */
.bk-mentor-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bk-mentor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bk-mentor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.bk-mentor-name {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.bk-mentor-musaitlik {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.bk-musaitlik-musait {
    background: #d1fae5;
    color: #065f46;
}

.bk-musaitlik-kismen-musait {
    background: #fef3c7;
    color: #92400e;
}

.bk-musaitlik-mesgul {
    background: #fee2e2;
    color: #991b1b;
}

.bk-musaitlik-unknown {
    background: #e5e7eb;
    color: #6b7280;
}

.bk-mentor-uzmanlik,
.bk-mentor-deneyim {
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
}

.bk-mentor-uzmanlik strong,
.bk-mentor-deneyim strong {
    color: #1a1a1a;
}

.bk-mentor-hakkinda {
    margin: 15px 0;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
}

.bk-mentor-hakkinda p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.bk-mentor-iletisim {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.bk-mentor-iletisim strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #1a1a1a;
}

.bk-mentor-iletisim-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bk-iletisim-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bk-email-btn {
    background: #f3f4f6;
    color: #374151 !important;
}

.bk-email-btn:hover {
    background: #e5e7eb;
    color: #1f2937 !important;
}

.bk-linkedin-btn {
    background: #0077b5;
    color: #fff !important;
}

.bk-linkedin-btn:hover {
    background: #005885;
    color: #fff !important;
}

/* No Mentors */
.bk-no-mentors {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.bk-no-mentors p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
}

/* Application Form */
.bk-basvuru-header {
    margin-bottom: 30px;
    text-align: center;
}

.bk-basvuru-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #1a1a1a;
}

.bk-basvuru-header p {
    margin: 0;
    color: #6b7280;
}

.bk-basvuru-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bk-form-group {
    margin-bottom: 20px;
}

.bk-form-group:last-child {
    margin-bottom: 0;
    margin-top: 30px;
}

.bk-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.bk-form-group input[type="text"],
.bk-form-group input[type="url"],
.bk-form-group input[type="number"],
.bk-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bk-basvuru-form .bk-form-group select,
.bk-form-group select {
    width: 100% !important;
    padding: 16px 40px 16px 15px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    background-color: #fff !important;
    height: auto !important;
    min-height: 52px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.bk-form-group input:focus,
.bk-form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.bk-form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.bk-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.bk-form-group button {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .bk-mentor-grid {
        grid-template-columns: 1fr;
    }
    
    .bk-basvuru-form {
        padding: 20px;
    }
    
    .bk-mentor-header {
        flex-direction: column;
    }
}
