/**
 * Masterson Enstitüsü - Özel CSS Stilleri
 */

/* Terapistler sayfası stilleri */
.box_therapist {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.box_therapist:hover {
    transform: translateY(-5px);
}

.therapist_info h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.accreditation {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.box_city {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.box_city h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* Eğitimler sayfası stilleri */
.box_training {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.box_training:hover {
    transform: translateY(-5px);
}

.training_header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.training_header h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.training_type {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.training_details p {
    margin-bottom: 8px;
    color: #555;
}

.training_details i {
    color: #3498db;
    margin-right: 8px;
}

.training_actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.training_actions .btn_1,
.training_actions .btn_2 {
    margin-right: 10px;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-duyuru {
    background: #f39c12;
    color: white;
}

.status-kayıt-açık {
    background: #27ae60;
    color: white;
}

.status-kontenjan-doldu {
    background: #e74c3c;
    color: white;
}

.status-tamamlandı {
    background: #95a5a6;
    color: white;
}

/* Eğitim süreci adımları */
.box_step {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.step_number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 15px;
}

.box_step h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Basın sayfası stilleri */
.box_social {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.box_social:hover {
    transform: translateY(-5px);
}

.social_icon {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 15px;
}

.box_social h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.box_event {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.event_header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.event_header h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.event_type {
    background: #9b59b6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.event_details p {
    margin-bottom: 8px;
    color: #555;
}

.event_details i {
    color: #3498db;
    margin-right: 8px;
}

.box_newsletter {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.box_newsletter h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Kaynaklar sayfası stilleri */
.box_resource {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.box_resource:hover {
    transform: translateY(-5px);
}

.resource_icon {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 15px;
    text-align: center;
}

.box_resource h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.author {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 10px;
}

.box_reading {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.box_reading h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Genel stiller */
.box_info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.box_info:hover {
    transform: translateY(-5px);
}

.box_info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Anasayfa özel stilleri */
.box_biography {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.box_biography h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.box_image {
    text-align: center;
    margin-bottom: 20px;
}

.box_image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.box_glossary {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.box_glossary h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.glossary_terms {
    margin-bottom: 30px;
}

.term_item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.term_item h5 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.term_item p {
    color: #555;
    margin-bottom: 0;
}

/* Sayfa içeriği stilleri */
.box_content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.box_content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.box_content h2 {
    color: #2c3e50;
    margin: 30px 0 15px 0;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.box_content h3 {
    color: #34495e;
    margin: 25px 0 10px 0;
}

.box_content p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.box_content ul, .box_content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.box_content li {
    color: #555;
    margin-bottom: 8px;
}

.box_content strong {
    color: #2c3e50;
    font-weight: 600;
}

.box_content em {
    color: #7f8c8d;
    font-style: italic;
}

/* 404 hata sayfası stilleri */
.box_404 {
    background: #fff;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.box_404 h2 {
    font-size: 6em;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: bold;
}

.box_404 h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
}

.box_404 p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.error_actions {
    margin-top: 30px;
}

.error_actions .btn_1,
.error_actions .btn_2 {
    margin: 0 10px 10px 0;
    display: inline-block;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .box_therapist,
    .box_training,
    .box_social,
    .box_resource {
        margin-bottom: 15px;
    }
    
    .training_actions .btn_1,
    .training_actions .btn_2 {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box_therapist,
.box_training,
.box_social,
.box_resource,
.box_reading {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover efektleri */
.btn_1:hover,
.btn_2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Özel renkler */
:root {
    --masterson-blue: #3498db;
    --masterson-dark: #2c3e50;
    --masterson-light: #ecf0f1;
    --masterson-accent: #e74c3c;
}

/* Masterson teması */
/* Hero Section - Arka Plan Görsel Düzeltmeleri */
.hero_single.version_2 {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

@media (max-width: 991px) {
    .hero_single.version_2 {
        background-attachment: scroll !important;
    }
}

/* Dinamik arka plan görseli geldiğinde :before'u gizle */
.hero_single.version_2[style*="background-image"]:before {
    display: none !important;
}


/* Hero section başlıkları beyaz olsun */
.hero_single.version_2 .wrapper h3 {
    color: #fff !important;
}

.hero_single.version_2 .wrapper p {
    color: #fff !important;
}

.hero_single h3 {
    color: var(--masterson-dark);
}

.main_title_2 h2 {
    color: var(--masterson-dark);
}

.btn_1 {
    background: var(--masterson-blue);
    border-color: var(--masterson-blue);
}

.btn_1:hover {
    background: var(--masterson-dark);
    border-color: var(--masterson-dark);
}

/* Etkinlik Badge Stilleri */
.event_type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-seminer {
    background: #4CAF50;
    color: #ffffff;
}

.badge-konferans {
    background: #2196F3;
    color: #ffffff;
}

.badge-etkinlik {
    background: #FF9800;
    color: #ffffff;
}

/* Etkinlik Kutuları */
.box_event {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.box_event:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.box_event .event_header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
}

.box_event .event_header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--masterson-dark);
    margin-bottom: 8px;
}

.box_event .event_content {
    color: #6c757d;
    font-size: 14px;
}

.box_event .event_details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5;
}

.box_event .event_details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #495057;
}

.box_event .event_details i {
    color: var(--masterson-blue);
    margin-right: 5px;
}