/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
.header {
    background-color: #000;
    text-align: center;
    padding: 10px 0;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Giriş Bölümü */
.intro {
    height: 100vh;
    background: url('images/indexbg.jpg') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.intro-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.intro-content .button {
    padding: 10px 20px;
    background-color: #38b000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.intro-content .button:hover {
    background-color: #2a8500;
}

/* Bilgi Bölümü */
.info-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
}

.info-section h2 {
    font-size: 28px;
    color: #38b000;
    margin-bottom: 10px;
}

.info-section a {
    color: #38b000;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* Ekip Bölümü */
/* Ekip Bölümü */
.team-section {
    padding: 40px 20px;
    background-color: black; /* Arka plan siyah */
    text-align: center;
    color: white; /* Tüm metin beyaz */
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Dinamik grid */
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white; /* İsim beyaz */
}

.team-member p {
    font-size: 14px;
    color: white; /* Açıklama beyaz */
    line-height: 1.6;
}

/* İletişim Bölümü */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.contact-section a {
    color: #38b000;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}
/* Slider Stili */
.slider {
    width: 100%;
    max-width: 2000px;
    /* Orijinal boyut sınırı */
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    /* Görüntüyü merkezden ortala */
    max-height: 500px;
    /* Görüntünün maksimum yüksekliği */
}
/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #000;
    color: #fff;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.slider img {
    object-fit: contain;
    /* Küçük ekranlarda oranını koruyarak göster */
}
}
@media (max-width: 480px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}
