/* CSS FILE: styles.css */
body {
    margin: 40px;
    overflow-x: hidden; /* Yatay kaymayı engeller */
    color: #2f426a;
    background-color: #ffffff;
    
    min-height: 100vh; /* Sayfa boyutuna göre ortalanır */
    overflow-x: hidden; /* Yatay kaymayı engeller */
}
/* Animasyon için başlangıç durumu */
/* Sağdan sola kayan animasyon başlangıç durumu */
.animate-right {
    opacity: 0;
    transform: translateX(100px); /* Sağdan sola gelir */
    transition: all 1s ease-out;
}

/* Soldan sağa kayan animasyon başlangıç durumu */
.animate-left {
    opacity: 0;
    transform: translateX(-100px); /* Soldan sağa gelir */
    transition: all 1s ease-out;
}

/* Görünür olduğunda animasyon aktif olur */
.animate-active {
    opacity: 1;
    transform: translateX(0); /* Normal pozisyona gelir */
}


/* Animasyon tetiklendiğinde görünen durum */
.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.logo img {
    height: 60px;
}

.social-menu-container {
    display: flex;
    align-items: center;
}

.social-media-icons {
    margin-right: 20px;
}

.social-media-icons a {
    margin-right: 15px;
    display: inline-block;
}

.social-media-icons img {
    height: 25px;
    width: 25px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.social-media-icons a:hover img {
    filter: grayscale(0%);
}

.menu {
    color: #000000;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.menu-icon {
    font-size: 1.5em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2f426a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 10;
}

.dropdown-menu li {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5; /* İnce çizgi ekleme */

}
.dropdown-menu li:last-child {
    border-bottom: none; /* Son öğede çizgi olmasın */
}

.dropdown-menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f0c040;
}

.menu:hover .dropdown-menu {
    display: block;
}
.submenu {
    display: none;
    position: absolute;
    right: 100%; /* Sol tarafta açılmasını sağlamak için kullanıldı */
    top: 0;
    background-color: #2f426a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 10;
    width: 200px; /* Alt menünün genişliğini artırdık */
}

.dropdown-item:hover .submenu {
    display: block;
}
.submenu li {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5; /* Alt menü öğelerine ince çizgi ekleme */
}
.submenu li:last-child {
    border-bottom: none; /* Alt menünün son öğesinde çizgi olmasın */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #2f426a;
    border-radius: 15px;
    color: #ffffff;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0c040;
}

.scroll-down {
    display: flex;
    align-items: center;
}

.scroll-link {
    margin-right: 10px;
    font-size: 1.1em;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.scroll-link:hover {
    color: #f0c040;
}

.mouse-icon {
    margin-right: 40px;
    height: 60px;
    width: 60px;
}
/* Mobil ve Tablet cihazlar için medya sorguları */
@media screen and (max-width: 768px) {
    /* Header ve Top Container */
    .top-container {
        display: flex;
        justify-content: space-between; /* Logo sola, ikonlar sağa */
        align-items: center;
        flex-direction: row; /* Yatay düzen */
    }
    .logo {
        margin-right: 0; /* Ekstra boşluk bırakmasın */
    }

    .logo img {
        height: 50px;
    }

    .social-menu-container {
        margin-top: 2%;
        display: flex;
        align-items: center;
        margin-left: auto; /* Sağ tarafa yaslar */
    }

    .social-media-icons {
        margin-bottom: 10px;
    }

    .social-media-icons a {
        margin: 5px;
    }

    /* Menü için */
    .menu {
        margin-top: -20px;
    }

    .dropdown-menu {
        width: 100%; /* Mobilde genişliği tam ekran yap */
        font-size: 0.85em;
        padding: 10px;
        text-align: left;
    }

    .menu:hover .dropdown-menu {
        display: block;
    }

    .submenu {
        width: 100%; /* Alt menü genişliği */
        padding: 5px;
    }

    .dropdown-item:hover .submenu {
        display: block;
    }

    .scroll-down {
        display: none; /* "Kaydır" yazısı ve ikonunu gizle */
    }

    /* Nav Links */
    .nav-links {
        flex-direction: column;
        text-align: center;
        margin-left: -5%;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1em;
    }

    /* Genel Header */
    header {
        flex-direction: column;
        padding: 10px;
    }
}
/* başlangıç */

/* Ana Kapsayıcı */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* İçerik Konteyneri */
.content-container {
    max-width: 1800px; /* İçeriğin maksimum genişliği */
    text-align: center; /* Ortadaki metni hizalar */
    
    padding: 20px;
    border-radius: 10px; /* Köşeleri yuvarlatır */
  
}

/* Başlık */
.header-title {
    font-size: 1.8rem;
    text-align: left;
padding: 2%;
max-width: 340px;
    font-family: "Quicksand", sans-serif;

    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* Başlık rengi */
    background-color: #333333;
}

/* Görsel Kapsayıcı */
.image-wrapper {
    display: flex;
    justify-content: center; /* Resmi yatayda ortalar */
    margin-bottom: 20px; /* Metinle boşluk bırakır */
}

/* Resim Stili */
.content-image {
    width: 100%; /* Kapsayıcı genişliğine uyum sağlar */
    max-width: 800px; /* Resmin maksimum genişliği */
    height: auto; /* Oranlarını korur */
    border-radius: 10px; /* Köşeleri yuvarlatır */
}

/* Metin */
.text-content {
    font-family: "Quicksand", sans-serif;
    text-align: left;

    font-size: 1.7rem;
    line-height: 1.8;
    color: #333333; /* Metin rengi */
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .content-container {
        max-width: 90%; /* Küçük ekranlarda genişliği azaltır */
    }

    .header-title {
        font-size: 1.5rem; /* Başlık boyutunu küçültür */
    }

    .content-image {
        max-width: 100%; /* Mobilde tam genişlik sağlar */
    }

    .text-content {
        font-size: 0.9rem; /* Alt metni küçültür */
    }
}





.title-box {
    background-color: #d3d3d3;
    padding: 10px 20px;
    border-radius: 10px;
}

.title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333333;
}

/* İçerik Bölümü */
.content-section {
    display: flex;
    flex-direction: column;
}

/* Görseller Konteyneri */
.images-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.content-image {
    width: 48%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Metin Konteyneri */
.text-container {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.text-content {
    margin-bottom: 15px;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .images-container {
        flex-direction: column;
    }

    .content-image {
        width: 100%;
    }

    .title {
        font-size: 1.5rem;
    }

    .text-content {
        font-size: 0.9rem;
    }
}









.fade-in-effect {
    opacity: 0; /* Başlangıçta tamamen saydam */
    transition: opacity 1.5s ease-in-out; /* Opaklığa geçiş süresi ve tipi */
}

/* Görünür Olacak Durum */
.fade-in-visible {
    opacity: 1; /* Net (opak) görünür */
}




/* İletişim Bölümü */
.iletisim-bolumu {
    display: flex;
    justify-content: space-between; /* Soldaki bilgi ve sağdaki haritayı yan yana hizalar */
    align-items: flex-start; /* Dikey hizalamayı üstten başlatır */
    gap: 20px; /* İki kısım arasında boşluk */
    max-width: 1200px;
    margin: 50px auto; /* Ortalamak için */
    padding: 20px;
}

/* Sol Kısım: Bilgi Kutusu */
.bilgi-kutusu {
    flex: 1; /* Eşit genişlik */
    padding: 20px;
    background-color: #ffffff; /* Beyaz arka plan */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    border-radius: 10px; /* Yuvarlak köşeler */
    font-family: "Quicksand", sans-serif;
    line-height: 1.6; /* Daha okunabilir metin için */
}

.bilgi-kutusu h2 {
    font-size: 24px;
    color: #2f426a; /* Şirketinize uygun renk */
    margin-bottom: 15px;
}

.bilgi-kutusu p {
    font-size: 16px;
    color: #555555; /* Daha yumuşak bir metin rengi */
    margin-bottom: 10px;
}

.bilgi-kutusu a {
    color: #2f426a;
    text-decoration: none; /* Alt çizgi kaldırılır */
}

.bilgi-kutusu a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi eklenir */
}

/* Sağ Kısım: Harita */
.harita {
    flex: 2; /* Daha geniş yer kaplaması için */
    height: 300px; /* Harita yüksekliği */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Mobil ve Tablet Uyumluluğu */
@media (max-width: 768px) {
    .iletisim-bolumu {
        flex-direction: column; /* Bölümleri alt alta diz */
    }

    .harita {
        height: 250px; /* Daha küçük cihazlarda harita boyutu */
    }
}







footer {
    background-color: #2f426a;
    color: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    font-size: 1em;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
    display: inline-block;
}

.social-icons img {
    height: 30px;
    width: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

.footer-section input[type="email"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-section button {
    padding: 10px;
    background-color: #f0c040;
    color: #2f426a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.footer-section button:hover {
    background-color: #e5b732;
}
