body {
    background-color: #f8f9fa;
    padding: 20px 0;
}

h1 {
    font-size: 6rem;
    font-weight: 300;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    font-family: "superior-title", serif;
}

p {
    color: white;
    text-align: justify;
    font-family: "Montserrat", serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gallery-column {
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.image-container {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.05);
}

/* Sütun kaydırma efektleri */
.gallery-column:nth-child(3n+1) {
    margin-top: 0;
}

.gallery-column:nth-child(3n+2) {
    margin-top: 30px;
}

.gallery-column:nth-child(3n) {
    margin-top: 60px;
}

/* Tablet görünümü için düzenleme */
@media (max-width: 870px) and (min-width: 580px) {
    .gallery-column {
        width: 50%;
    }
    
    /* İlk sütun elemanları */
    .gallery-column:nth-child(2n+1) {
        margin-top: 0;
    }

    /* İkinci sütun elemanları */
    .gallery-column:nth-child(2n) {
        margin-top: 30px;
    }
} 

/* Mobil görünüm için düzenleme */
@media (max-width: 580px) {
    .gallery-column {
        width: 100%;
    }
    
    .gallery-column {
        margin-top: 0 !important;
    }
} 