/* Genel stiller */
body {
    font-family: 'Poppins', Arial, sans-serif; /* Fontu Poppins olarak ayarladık */
    color: black;
    margin: 0;
    padding: 0;
    position: relative; /* Katman için pozisyon ayarlaması */
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

/* Arka plan için alpha katmanı */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Arka plan görseli sayfa boyutunu kaplar */
    background-repeat: no-repeat; /* Arka plan tekrar etmez */
    background-position: center center; /* Arka plan ortalanır */
    filter: saturate(10%); /* Arka planın saturasyonunu %10'a düşürür */
    z-index: -2; /* İçeriğin arka planda kalması için */
}

/* Alpha katmanı */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Alpha değeri 50 olan beyaz katman */
    z-index: -1; /* İçeriğin arka planda kalması için */
}

/* Logo Konteyneri Stili */
.logo-container {
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 1; /* Katmanın üstünde kalır */
}

.logo {
    max-width: 300px; /* Logo boyutunu artırdık */
    width: 30%;
    height: auto;
}

/* Ana içerik stili */
.content {
    max-width: 60%; /* Genel içerik genişliği */
    margin: 0 auto; /* Ortalamak için */
    padding: 20px;
    position: relative;
    z-index: 1; /* Katmanın üstünde kalır */
}

.text-section, .image-section {
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
}

.content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0; /* Resimleri ortalamak için */
}

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Poppins', Arial, sans-serif; /* Yazı tipini Poppins olarak ayarladık */
}

.contact-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif; /* Yazı tipini Poppins olarak ayarladık */
}

/* Duyarlı tasarım için medya sorguları */
@media (max-width: 1024px) {
    .content {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .content {
        max-width: 95%;
    }
}

/* Footer stilleri */
footer {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    width: 100%;
    bottom: 0;
    position: fixed;
    z-index: 1; /* Katmanın üstünde kalır */
}
