/* GALERİ ÖZEL AYARLARI */

.main-container {
    /* Header sabit olduğu için üstten boşluk bırakıyoruz */
    margin-top: 100px; 
    margin-bottom: 50px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    
    padding: 40px;
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.1); 
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 20px;
    display: block;
}

/* GALERİ IZGARASI - 2 SÜTUN */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

/* KART YAPISI */
.gallery-card {
    background: transparent;
    border-radius: 15px; 
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 0; /* İç boşluğu sıfırladık resim tam otursun */
}

/* KART HOVER */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4); 
    border-color: #ff0000;
}

.card-image {
    width: 100%;
    height: 300px; 
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

/* MOBİL */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .main-container {
        padding: 20px;
        margin-top: 120px;
    }
}