/* ========== GALERİ DETAY CSS ========== */
/* /assets/css/galeri-detay.css */

/* Hikaye Image Container */
.hikaye-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.fancybox-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.hikaye-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

/* Image Overlay - RESMİN ÜZERİNDE */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.fancybox-link:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
	color: white;
}

.overlay-content p {
    font-size: 1.1rem;
    font-weight: 600;
	color: white;
}

/* Hover Effect */
.fancybox-link:hover .hikaye-image {
    transform: scale(1.05);
}

/* Image Caption */
.image-caption {
    padding: 0.75rem 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Position Badge */
.position-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

/* Audio Player */
.audio-player-container {
    background: #f8f9fa;
    border-left: 4px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
}

.audio-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.audio-header i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.audio-element {
    width: 100%;
    outline: none;
}

.audio-info {
    margin-top: 0.5rem;
}

/* Hikaye Content */
.hikaye-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.hikaye-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.hikaye-text .lead {
    font-size: 1.15rem;
	font-weight:600;
    line-height: 1.9;
	color: #000;
}

/* Hikaye Block */
.hikaye-block {
    position: relative;
    padding: 2rem 0;
}

/* AdSense Placeholder */
.adsense-placeholder {
    min-height: 250px;
}

/* Social Buttons */
.social-buttons .btn {
    min-width: 150px;
    font-weight: 600;
}

/* Galeri Header */
.galeri-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galeri-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
}

.galeri-meta {
    font-size: 0.95rem;
    color: #6c757d;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-item i {
    font-size: 1.1rem;
}

/* Badge Sizes */
.badge-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .galeri-page-title {
        font-size: 1.5rem;
    }
    
    .hikaye-content {
        padding: 1rem;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .position-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .image-overlay,
    .position-badge,
    .social-buttons,
    .adsense-placeholder {
        display: none !important;
    }
}

/* ========== IMAGE ATTRIBUTION STYLES ========== */

.image-attribution {
    margin-top: 0.5rem;
}

.image-attribution small {
    font-size: 0.875rem;
    color: #6c757d;
}

.image-attribution strong {
    font-weight: 600;
    color: #495057;
}

.image-attribution a {
    color: #007bff;
    text-decoration: none;
}

.image-attribution a:hover {
    text-decoration: underline;
}

/* Kaynak bazlı renkler (opsiyonel) */
.instagram-attribution a {
    color: #E1306C;
}

.flickr-attribution a {
    color: #0063DC;
}

.wikimedia-attribution a {
    color: #339966;
}

/* Responsive */
@media (max-width: 576px) {
    .image-attribution small {
        font-size: 0.8rem;
    }
}