
    /* Kapatma butonu için ek stiller */
.btn-close {
    opacity: 0.8;
    transition: all 0.3s ease;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    width: 1em;
    height: 1em;
    padding: 0.5em;
    filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}



    /* Başkan Sayfası Özel Stilleri */
        .baskan-profile {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .baskan-image-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .baskan-image {
            width: 270px;
            height: 375px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
        }
        
        .baskan-image-bg {
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, #2a4365 0%, #3498db 100%);
            border-radius: 12px;
            opacity: 0.7;
            z-index: 1;
        }
        
        .baskan-name {
            font-size: 28px;
            font-weight: 700;
            color: #2a4365;
            margin: 15px 0 5px;
        }
        
        .baskan-title {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 20px;
        }
        
        .baskan-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        
        .facebook-bg { background-color: #3b5998; }
        .twitter-bg { background-color: #1da1f2; }
        .instagram-bg { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .youtube-bg { background-color: #ff0000; }
        .linkedin-bg { background-color: #0077b5; }
        
        .baskan-bio {
            background: #f8fafc;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .baskan-bio h3 {
            color: #2a4365;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .gallery-section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 24px;
            color: #2a4365;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 200px;
            position: relative;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }
        
        .zoom-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .zoom-overlay {
            opacity: 1;
        }
        
        .zoom-icon {
            color: white;
            font-size: 30px;
            background: rgba(0, 0, 0, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
        }
        
        .video-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e53e3e;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .video-item:hover .video-play-btn {
            background: rgba(255, 255, 255, 0.95);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .pagination {
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-link {
            color: #2a4365;
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            margin: 0 4px;
            border-radius: 6px;
        }
        
        .page-link:hover {
            background-color: #f1f5f9;
            color: #2a4365;
        }
        
        .page-item.active .page-link {
            background-color: #2a4365;
            border-color: #2a4365;
            color: white;
        }
        
        .lightbox-modal .modal-content {
            background: transparent;
            border: none;
        }
        
        .lightbox-modal .modal-header {
            border-bottom: none;
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1060;
        }
        
        .lightbox-modal .btn-close {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            opacity: 0.8;
            padding: 10px;
        }
        
        .lightbox-modal .btn-close:hover {
            opacity: 1;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Video Slider Stilleri */
        .video-slider-container {
            position: relative;
        }
        
        .video-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .video-slider-nav:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .video-slider-prev {
            left: 15px;
        }
        
        .video-slider-next {
            right: 15px;
        }
        
        .video-slider-nav.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        /* Mevcut stiller */
        .custom-breadcrumb {
            background-color: #f5f7fa;
            padding: 25px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumb-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .breadcrumb-item a {
            color: #3498db;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .breadcrumb-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: #7f8c8d;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "→";
            color: #95a5a6;
            font-size: 1.2rem;
            padding: 0 10px;
        }
        
        /* Bootstrap icons */
        .bi-house-door {
            margin-right: 5px;
            font-size: 1.2rem;
        }

        /* İçerik Alanı */
        .content-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2a4365;
        }
        
        .content-actions .btn {
            min-width: 40px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-zoom span {
            line-height: 1;
        }
        
        #zoomable-content {
            font-size: 1.05rem;
            line-height: 1.8;
            transition: font-size 0.3s ease;
        }
        
        #zoomable-content h2 {
            font-size: 1.5rem;
            color: #2a4365;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Paylaşım Butonları */
        .content-share {
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: 0.5rem;
        }
        
        .share-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #4a5568;
        }
        
        .btn-share {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-radius: 0.3rem;
            color: white;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .btn-facebook { background-color: #3b5998; }
        .btn-twitter { background-color: #1da1f2; }
        .btn-linkedin { background-color: #0077b5; }
        .btn-whatsapp { background-color: #25d366; }
        
        .btn-share:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }


        /* Resim Lightbox için ek stiller */
.photo-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
}

.photo-slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.photo-slider-prev {
    left: 15px;
}

.photo-slider-next {
    right: 15px;
}

.photo-slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-caption-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

/* Video Lightbox için ek stiller */
.video-slider-container {
    position: relative;
}

.video-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.video-slider-prev {
    left: 15px;
}

.video-slider-next {
    right: 15px;
}

.video-slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}




/* Modal kapatma butonu için özel stiller */
.lightbox-modal .modal-header {
    padding: 0.5rem;
    z-index: 1060;
}

.lightbox-modal .btn-close {
    background: transparent;
    opacity: 0.8;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0;
}

.lightbox-modal .btn-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.lightbox-modal .btn-close:focus {
    box-shadow: none;
}

.lightbox-modal .btn-close::before {
    content: "×";
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Bootstrap'un varsayılan kapatma ikonunu gizle */
.lightbox-modal .btn-close {
    background-image: none;
}

/* Z-index ayarı için */
.z-index-1 {
    z-index: 1;
}