
@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300; 
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 900; 
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-color: #1e608b;       
    --background-color: #f7f7f7;    
    --card-background: #ffffff;     
    --text-color: #343a40;          
    --light-text-color: #6c757d;    
    --border-color: #e9ecef;        
}


body {
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.container {
    max-width: 1450px; 
    margin: 0 auto;
    padding: 0 20px;
}


.page-header {
    text-align: center;
    padding: 50px 0 50px; 
    background-color: transparent; 
    border-bottom: none; 
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem); 
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 900; 
}

.page-header p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* MARKALAR BÖLÜMÜ */
.brands-section {
    padding-bottom: 80px;
}


.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 30px;
}


.brand-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 140px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    /* Animasyon ve Gölge */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    
    position: relative;
    overflow: hidden;
}

/* Hover Efekti */
.brand-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 10px 25px rgba(30, 96, 139, 0.1); 
    border-color: var(--primary-color); 
}


.brand-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    
}

.brand-card:hover .brand-logo-wrapper img {
    transform: scale(1.05); 
}




@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}


@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .brand-card {
        height: 100px;
        padding: 10px;
    }
}