﻿

.container {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #2c1d8f;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper {
    width: 100%;
    padding-bottom: 20px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .swiper-slide:hover img {
        transform: scale(1.05);
    }

.caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* --- Lightbox (Büyütme Ekranı) Stili --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    }

    .lightbox .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        background: none;
        border: none;
    }

.breadcrumb-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 5px solid #4c2db8; /* Mavi Dikey Çizgi */
    padding-left: 10px;
}

    .breadcrumb-container h1 {
        font-size: 22px;
        color: #4c2db8; /* Mavi Başlık */
        font-weight: bold;
        margin: 0;
    }

.breadcrumb {
    font-size: 14px;
    color: #999; /* Gri Yazı */
}


