/* Influencer Single Page Styles */

/* Breadcrumb Navigation - Soft & Minimal */
.influencer-breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
}

.influencer-breadcrumb .breadcrumb {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    border: 1px solid #e2e8f0;
}

.influencer-breadcrumb .breadcrumb-item {
    font-size: 13px;
    color: #64748b;
}

.influencer-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.influencer-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.influencer-breadcrumb .breadcrumb-item a:hover {
    color: #0ea5e9;
    text-decoration: none;
}

.influencer-breadcrumb .breadcrumb-item.active {
    color: #0ea5e9;
    font-weight: 500;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .influencer-breadcrumb {
        margin-bottom: 20px;
    }
    
    .influencer-breadcrumb .breadcrumb {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .influencer-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
    }
}

/* Başlık ve Header - Soft & Clean */
.careers-page-header {
    margin-bottom: 20px;
}

.careers-page-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Yönetim Bilgisi Badge - Soft Pastel */
.influencer-management {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    border: 1px solid #bae6fd;
}

.influencer-management i.fas.fa-check-circle {
    color: #0284c7;
    font-size: 14px;
}

/* Liste Container - Clean & Compact */
.careers-page-list-container {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.careers-page-list-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.careers-page-list-row:last-child {
    border-bottom: none;
}

.careers-page-list-row:first-child {
    border-radius: 12px 12px 0 0;
}

.careers-page-list-title {
    font-weight: 500;
    color: #94a3b8;
    min-width: 100px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.careers-page-list-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Kategoriler - Soft Pastel Tags */
.influencer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.influencer-category {
    margin: 0;
}

.influencer-category a {
    display: inline-block;
    padding: 5px 12px;
    background: transparent;
    color: #EA088C;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #EA088C;
}

.influencer-category a:hover {
    background: rgba(234, 8, 140, 0.05);
    border-color: #EA088C;
    color: #EA088C;
    transform: none;
}

/* Sosyal Medya İkonları - Minimal */
.influencer-social-media-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.influencer-social-media-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    font-size: 20px;
    color: #1a1a1a;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.influencer-social-media-links a:hover {
    transform: scale(1.1);
}

/* Platform-specific hover colors - Very Subtle */
.influencer-social-media-links a[href*="instagram"]:hover {
    background: #fdf2f8;
    color: #ec4899;
    border-color: #fbcfe8;
}

.influencer-social-media-links a[href*="tiktok"]:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #cbd5e1;
}

.influencer-social-media-links a[href*="youtube"]:hover {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
}

.influencer-social-media-links a[href*="twitter"]:hover {
    background: #eff6ff;
    color: #3b82f6;
    border-color: #bfdbfe;
}

/* İletişim Butonu - Compact & Modern */
.careers-page-list-container a[href*="iletisim"] {
    display: inline-block;
    padding: 10px 24px;
    background: #EA088C;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(234, 8, 140, 0.25);
    border: none;
}

.careers-page-list-container a[href*="iletisim"]:hover {
    background: #c2185b;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(234, 8, 140, 0.35);
    color: white;
}

/* Mobil için Sticky İletişim Butonu */
.influencer-contact-sticky {
    display: none;
}

@media (max-width: 768px) {
    .influencer-contact-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 12px 15px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        animation: slideUp 0.3s ease;
    }
    
    .influencer-contact-sticky a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        background: #0ea5e9;
        color: white;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        box-shadow: 0 2px 12px rgba(14, 165, 233, 0.25);
        border: none;
    }
    
    .influencer-contact-sticky a:active {
        transform: scale(0.98);
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Desktop'ta normal iletişim butonunun card içindeki halini ayarla */
@media (min-width: 769px) {
    .careers-page-list-row a[href*="iletisim"] {
        margin-top: 5px;
    }
}

/* İçerik Wrapper - Clean & Readable */
.influencer-content-wrapper {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    color: #475569;
    border: 1px solid #f1f5f9;
}

.influencer-content-wrapper::before {
    display: none; /* Desktop'ta gizli, mobilde gösterilecek */
}

.influencer-content-wrapper p {
    margin-bottom: 20px;
    font-size: 15px;
}

.influencer-content-wrapper h2,
.influencer-content-wrapper h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* Daha Fazla Oku Butonu - Desktop'ta Gizli */
.read-more-btn {
    display: none;
}

/* Featured Image - Soft & Clean */
.influencer-featured-image {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.influencer-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.influencer-featured-image:hover img {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 991px) {
    .careers-page-header h1 {
        font-size: 28px;
    }
    
    .careers-page-list-container {
        padding: 20px;
    }
    
    .influencer-featured-image {
        max-width: 250px;
        margin: 0 20px 15px 0;
    }
}

/* Desktop & Mobile Layout Control */
.mobile-only {
    display: none;
}

.influencer-desktop-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.influencer-desktop-content {
    flex: 0 0 65%;
    max-width: 65%;
}

.influencer-desktop-form {
    flex: 0 0 35%;
    max-width: 35%;
}

.mobile-contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mobile-contact-modal.is-active {
    display: flex;
}

.mobile-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-contact-modal__dialog {
    position: relative;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    width: min(90%, 520px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.mobile-contact-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.mobile-contact-modal__dialog h3 {
    margin-bottom: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.mobile-contact-modal__intro {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.wpcf7-response-output--modal {
    margin-bottom: 16px !important;
    text-align: center;
}

@media (min-width: 769px) {
    .mobile-contact-modal {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Mobil - Desktop Gizle, Mobil Göster */
    .desktop-only {
        display: none !important;
    }

    .influencer-desktop-layout {
        display: block;
    }

    .influencer-desktop-content,
    .influencer-desktop-form {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .mobile-only {
        display: block !important;
        padding: 0 0px !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Breadcrumb - Mobilde Gizle */
    .influencer-breadcrumb {
        display: none;
    }
    
    
    /* Mobil Fotoğraf - Yuvarlak */
    .mobile-influencer-photo {
        text-align: center;
        margin-bottom: 16px;
        padding-top: 20px; /* Fotoğrafın üstüne boşluk */
    }
    
    .mobile-influencer-photo img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    
    /* Mobil Menajerlik Mesajı */
    .mobile-influencer-management {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: transparent;
        color: #000000;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 500;
        margin: 0 auto 16px auto;
        border: none;
        text-align: center;
        width: fit-content;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
    
    .mobile-influencer-management i.fas.fa-check-circle {
        color: #000000;
        font-size: 14px;
    }
    
    /* Mobil Sosyal Medya */
    .mobile-social-media {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .mobile-social-media a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #1a1a1a;
        transition: all 0.3s ease;
    }
    
    .mobile-social-media a:hover {
        color: #EA088C; /* Pembe hover */
        transform: scale(1.15);
    }
    
    .mobile-social-media a:active {
        transform: scale(0.9);
    }
    
    /* Mobil Kategoriler */
    .mobile-categories {
        display: flex;
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    
    .mobile-categories a {
        padding: 4px 10px;
        font-size: 10px;
        background: transparent;
        color: #EA088C;
        border: 2px solid #EA088C;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Mobil İçerik Wrapper */
    .mobile-content-wrapper {
        background: white !important;
        border-radius: 12px;
        padding: 20px 16px !important; /* İçerik alanını genişlet */
        margin-bottom: 16px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
        display: block !important;
        width: 100%;
    }
    
    .mobile-person-name {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        text-align: center !important;
        margin-bottom: 14px !important;
        padding-bottom: 10px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        display: block !important;
    }
    
    .mobile-post-content {
        font-size: 13px !important;
        line-height: 1.6 !important;
        color: #475569 !important;
        display: block !important;
    }
    
    .mobile-post-content p {
        margin-bottom: 12px !important;
        display: block !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .mobile-blog-detail-info {
        margin: 16px 0;
        padding: 12px;
        background: #fff6ed;
        border-radius: 10px;
        font-size: 12px;
        line-height: 1.5;
        color: #85592c;
        text-align: center;
    }
    
    .mobile-post-content h2,
    .mobile-post-content h3 {
        font-size: 16px !important;
        margin-top: 16px !important;
        margin-bottom: 8px !important;
        color: #1a1a1a !important;
        display: block !important;
    }
    
    /* Mobil İletişim Butonu */
    .mobile-contact-button {
        margin-bottom: 8px;
    }
    
    .mobile-contact-button a {
        display: block;
        width: 100%;
        padding: 14px;
        background: #EA088C;
        color: white;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(234, 8, 140, 0.25);
        transition: all 0.3s ease;
    }
    
    .mobile-contact-button a:hover {
        background: #c10773;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 8, 140, 0.35);
    }
    
    /* Mobil Mesaj Gönder Butonu */
    .mobile-message-button {
        margin-bottom: 20px;
    }
    
    .mobile-message-button a {
        display: block;
        width: 100%;
        padding: 14px;
        background: transparent;
        color: #EA088C;
        border: 2px solid #EA088C;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-message-button a:hover {
        background: #EA088C;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 8, 140, 0.25);
    }
    
    .mobile-contact-button a:active {
        transform: scale(0.98);
    }
    
    /* Mobil Scroll Optimizasyonu */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Sticky Button Gizle */
    .influencer-contact-sticky {
        display: none !important;
    }
}

@media (max-width: 576px) {
    /* Ekstra Küçük Ekranlar */
    .mobile-influencer-photo img {
        width: 130px;
        height: 130px;
    }
    
    .mobile-social-media a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .mobile-categories a {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .mobile-person-name {
        font-size: 18px;
    }
    
    .mobile-post-content {
        font-size: 12px;
    }
    
    .mobile-post-content h2,
    .mobile-post-content h3 {
        font-size: 15px;
    }
    
    .mobile-contact-button a,
    .mobile-message-button a {
        padding: 13px;
        font-size: 14px;
    }
    
    .mobile-content-wrapper {
        padding: 16px !important;
    }
    
    .influencer-category a {
        padding: 4px 8px;
        font-size: 9px;
        border: 2px solid #EA088C;
    }
    
    .influencer-social-media-links {
        gap: 8px;
    }
    
    .influencer-social-media-links a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .careers-page-list-container a[href*="iletisim"] {
        padding: 13px;
        font-size: 14px;
    }
    
    .influencer-content-wrapper {
        padding: 16px;
    }
    
    .influencer-content-wrapper::before {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .influencer-content-wrapper p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .influencer-content-wrapper h2,
    .influencer-content-wrapper h3 {
        font-size: 15px;
        margin-top: 14px;
        margin-bottom: 7px;
    }
}


/* iPhone SE ve benzeri çok küçük ekranlar */
@media (max-width: 375px) {
    .mobile-influencer-photo img {
        width: 110px;
        height: 110px;
    }
    
    .mobile-social-media {
        gap: 7px;
    }
    
    .mobile-social-media a {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    
    .mobile-categories a {
        padding: 3px 7px;
        font-size: 9px;
    }
    
    .mobile-person-name {
        font-size: 17px;
    }
    
    .mobile-post-content {
        font-size: 11px;
    }
    
    .mobile-post-content h2,
    .mobile-post-content h3 {
        font-size: 14px;
    }
    
    .mobile-contact-button a {
        padding: 12px;
        font-size: 13px;
    }
    
    .mobile-content-wrapper {
        padding: 14px;
    }
}

/* Genel Body Background (opsiyonel) */
body.single-influencer {
    background: #fafafa;
}

