/* Tüm fontları Poppins yap */
* {
    font-family: 'Poppins', sans-serif !important;
}

/* Sayfa genişliği ve ortalama */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

/* Container'ı max 1400px yap ve ortala */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo kutuları için sabit boyut ve gri arkaplan */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.grid-logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-logo img {
    max-width: 100%;
    max-height: 100%;
}

.grid-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.grid-logo img.hurley,
.grid-logo img.saucony {
    width: 120px !important;
}


.main-logo {
    max-width: 200px;
}

/* Mobil Cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 {
        font-size: 2rem;
    }

    .main-logo {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
}