/* Galeri Sayfası Özel Stilleri */

/* Filter Buttons */
.gallery-filters {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    font-size: 0.9rem;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.filter-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover::after {
    left: 100%;
}

.filter-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border-color: #FFD700;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: activeGlow 2s ease-in-out infinite alternate;
}

.filter-btn.active::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
    }
}

/* Full Gallery */
.full-gallery {
    padding: 4rem 0;
    background: #1a1a1a;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-full {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: simpleFadeIn 0.6s ease forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Sade tasarım için pseudo-elementleri kaldırıldı */

.gallery-item-full:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-full:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-full:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-full:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-full:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-full:nth-child(6) { animation-delay: 0.6s; }
.gallery-item-full:nth-child(7) { animation-delay: 0.7s; }
.gallery-item-full:nth-child(8) { animation-delay: 0.8s; }
.gallery-item-full:nth-child(9) { animation-delay: 0.9s; }
.gallery-item-full:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item-full img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
    border-radius: 10px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.gallery-item-full:hover img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.02);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FFD700;
}

.lightbox img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1002;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 215, 0, 0.9);
    border: none;
    color: #1a1a1a;
    font-size: 1.8rem;
    padding: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #FFD700;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


/* Responsive */
@media (max-width: 768px) {
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        transition: all 0.3s ease; /* Mobilde daha hızlı animasyon */
    }
    
    .filter-btn:hover {
        transform: translateY(-2px) scale(1.02); /* Mobilde daha az büyüme */
    }
    
    .filter-btn.active {
        transform: translateY(-2px) scale(1.02); /* Mobilde daha az büyüme */
    }
    
    .gallery-item-full {
        animation-duration: 0.4s; /* Mobilde daha hızlı animasyon */
        border-radius: 15px;
    }
    
    .gallery-item-full::before {
        border-radius: 17px;
    }
    
    .gallery-item-full::after {
        border-radius: 13px;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item-full img {
        height: 250px;
        border-radius: 12px;
    }
    
    .gallery-item-full:hover {
        transform: translateY(-4px) scale(1.02) rotateX(2deg);
    }
    
    .lightbox-prev,
    .lightbox-next {
        margin: 0 2rem;
        padding: 1rem;
        font-size: 1.4rem;
    }
    
}

@media (max-width: 480px) {
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item-full img {
        height: 200px;
        border-radius: 10px;
    }
    
    .gallery-item-full {
        border-radius: 12px;
    }
    
    .gallery-item-full::before {
        border-radius: 14px;
    }
    
    .gallery-item-full::after {
        border-radius: 10px;
    }
    
    .gallery-item-full:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
}

/* Sade Animasyonlar */
@keyframes simpleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sade tasarım için karmaşık animasyonlar kaldırıldı */
