﻿
/* Genel Reset ve Font */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Sayfa Başlık Görseli */
.page-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .page-image img:hover {
        transform: scale(1.02);
    }

/* İçerik Alanı */
.page-content-area {
    padding: 50px 15px;
    background: #f9f9f9;
}

    .page-content-area p {
        margin-bottom: 1rem;
    }

    .page-content-area strong {
        color: #0033A1;
    }

/* Metin ve Logo Yan Yana */
.content-with-logo {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .content-with-logo .text-col {
        flex: 1 1 500px;
    }

    .content-with-logo .logo-col {
        flex: 0 0 200px;
    }

        .content-with-logo .logo-col img {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: 8px;
        }

/* Faaliyet Alanları Başlık */
.sporfaaliyet {
    background: #fff;
    padding: 50px 15px;
}

    .sporfaaliyet h4 {
        font-size: 2rem;
        color: #0033A1;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .sporfaaliyet p {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        font-size: 1rem;
    }

/* Faaliyet Kartları */
.faaliyet-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

    .faaliyet-title img {
        width: 120px;
        height: auto;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .faaliyet-title h6 {
        margin-top: 0;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .faaliyet-title p {
        font-size: 0.95rem;
    }

/* Faaliyet Galeri */
.faaliyet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 10px;
}

    .faaliyet-gallery img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

        .faaliyet-gallery img:hover {
            transform: scale(1.02);
        }

/* Responsive */
@media (max-width: 767px) {
    .content-with-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .content-with-logo .logo-col {
            max-width: 150px;
        }

    .sporfaaliyet h4 {
        font-size: 1.8rem;
    }

    .faaliyet-title {
        flex-direction: column;
        text-align: center;
    }

        .faaliyet-title img {
            width: 150px;
            height: auto;
        }
}
