/* Genel sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono';
}



body {
    font-family: Arial, sans-serif;
    width: 1900px; /* Sayfanın genişliği tarayıcıya göre dinamik */
    margin: 0 auto; /* Ortalamak için otomatik boşluk */
    background: rgba(242, 240, 219, 1);
}

/* Navbar ayarları */
.navbar {
    background-color: #e39527; /* Yarı şeffaf sarı */
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px ;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.normal-menu a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s ease;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.normal-menu a:hover {
    color: #f0e68c;
}

/* Hamburger Menü Simgesi */
.hamburger-menu {
    display: none; /* İlk başta gizli */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 30px;
    height: 25px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 4px 0;
    display: block;
}



/* Overlay tam ekran menü (Hamburger) */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #e5c47399;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 999;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay-content a {
    padding: 10px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    background-color: #fff;
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover {
    background-color: #a50000;
}

/* Kapatma düğmesi */
.closebtn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    text-decoration: none;
}

/* Medya sorgusu: 1600px ve daha küçük ekranlar için */
@media (max-width: 1600px) {
    .normal-menu {
        display: none; /* Küçük ekranlarda normal menüyü gizle */
    }

    .hamburger-menu {
        display: flex; /* Küçük ekranlarda hamburger menüyü göster */
    }
}

.navbar div a {
    text-decoration: none; /* Alt çizgiyi kaldır */
    color: inherit; /* Varsayılan renk devralınır */
    font-size: 16px; /* Metin boyutu */
    display: inline-block; /* Blok içi düzenleme için */
    padding: 5px 10px; /* İç boşluk */
    transition: color 0.3s ease, background-color 0.3s ease; /* Hover efektine geçiş süresi */
}
.title {
    position: relative;
    line-height: 24px;
}
.component {
    position: absolute;
    top: 50%;
    left: 130px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.component:hover, .component1:hover, .component2:hover, .component3:hover, .component4:hover,.component5:hover,.component6:hover {
    color: white;
    background-color: black; /* Arka plan rengini siyah yap */
    border-radius: 5px; /* Köşeleri yuvarlat */
}
.component2 {
    position: absolute;
    top: 50%;
    left: 320px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.component3 {
    position: absolute;
    top: 50%;
    left: 550px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 40px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.component4 {
    position: absolute;
    top: 50%;
    right: 600px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 12px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}
/* Dropdown menü için temel stil */
.dropdown {
    position: absolute;
    display: inline-block;
}

/* Dropdown içeriği başlangıçta gizli */
.dropdown-content {
    display: none; /* İlk başta gizli olacak */
    position: absolute;
    background-color: black; /* Arka plan rengi */
    min-width: 80px; /* Minimum genişlik */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Gölge efekti */
    z-index: 1; /* Menülerin üstte görünmesi için */
}

/* Dropdown içindeki bağlantıların stili */
.dropdown-content a {
    color: black;
    padding: 2px 3px;
    text-decoration: none;
    display: block; /* Tüm genişliği kaplaması için */
}

/* Fare ile "Projelerimiz" üzerine gelindiğinde dropdown'u göster */
.dropdown:hover .dropdown-content {
    display: block; /* Görünür yap */
}

/* Dropdown içindeki bağlantılara hover efekti */
.dropdown-content a:hover {
    background-color: #252323; /* Üzerine gelindiğinde arka plan rengi */
}

.component5 {
    position: absolute;
    top: 50%;
    right: 320px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.component6 {
    position: absolute;
    top: 50%;
    right: 130px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 3px;
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-family: 'Space Mono';
    transform: translateY(-50%);
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Dropdown içeriği başlangıçta gizli */
.dropdown-content2 {
    display: none; /* İlk başta gizli olacak */
    position: absolute;
    background-color: black; /* Arka plan rengi */
    min-width: 178px; /* Minimum genişlik */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Gölge efekti */
    z-index: 1; /* Menülerin üstte görünmesi için */
}

/* Dropdown içindeki bağlantıların stili */
.dropdown-content2 a {
    color: black;
    padding: 2px 3px;
    text-decoration: none;
    display: block; /* Tüm genişliği kaplaması için */
}

/* Fare ile "Projelerimiz" üzerine gelindiğinde dropdown'u göster */
.dropdown:hover .dropdown-content2 {
    display: block; /* Görünür yap */
}

/* Dropdown içindeki bağlantılara hover efekti */
.dropdown-content2 a:hover {
    background-color: #252323; /* Üzerine gelindiğinde arka plan rengi */
}

.logo img {
    height: 80px;
    width: auto;
}
/* Hero section ayarları */
.hero-section {
    position: relative;
    width: 100%;
    height: 1035px; /* Görsel yüksekliği */ 
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: absolute;
    margin-top: 100px;
  /*  width: 800px;
    height: 500px; */
    top: 27%;
    left: 8%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgb(74, 74, 74, 0.5); /* Şeffaf siyah arka plan */
    padding: 20px; /* İç boşluk */
    border-radius: 10px; /* Köşeleri yuvarlat */
    margin-left: 120px;
    width: 500px;
}

.duyuru{
    background-color: rgb(0, 0, 0,0.8);
    margin-top: -35px;
    margin-left: 1280px;
    width: 600px;
    height: 40px;
    text-align: center;
    color: #fff;
}

.icerik{
    background-color:rgb(74, 74, 74,0.5);
    margin-top: -5px;
    margin-left: 1280px;
    width: 600px;
    height: 200px;
    text-align: center;
    color: #fff;
    overflow: auto;
}



.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.hero-button a{
    text-decoration: none;
    color:#fff;
}

.hero-button:hover {
    background-color: black;
    color: #e39527;
}

.katalog-button {
margin-top: 100px;
margin-left: 880px;
padding: 10px 20px;
font-size: 18px;
background-color: transparent;
border: 2px solid rgb(0, 0, 0);
color: white;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
text-decoration: none;
background-color: hsl(35, 97%, 69%);
border-radius: 30px;
}
.katalog-button a{
    text-decoration: none;
    color:#000;
}
.katalog-button:hover {
    background-color: white;
    color: #000;
}


/* Özellik bölümü ayarları */
.feature-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Kutular otomatik dizilir */
    gap: 20px;
    padding:50px 10px  ;
    background-color: #f5f3e6;
}

.feature-box {
    height: 200px;
    background-color: #4a4a4a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease; /* Yumuşak geçiş efekti */
    padding-right: 200px;
}

.up-feature-box {
    width: 100%; /* Üst kutuyla aynı genişlik */
    height: 50px; /* Üst kutunun 1/4 boyutunda */
    background-color: black; /* Alt kutu */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.feature-box {
    width: 100%;
    height: 200px;
    background-color: #4a4a4a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.feature-box img {
    width: fit-content;
    width:  800%; /* Kutunun genişliğine uyum sağlayacak */
    height: 80%; /* Kutunun yüksekliğine uyum sağlayacak */
    object-fit: cover; /* Görselin kutuya tam olarak sığmasını sağlar, taşan kısımları keser */
    transition: transform 0.3s ease; /* Yumuşak geçiş efekti */
    padding-left: 200px;
}

.feature-box img:hover {
    transform: scale(1.2); /* Kutuyu en ve boydan %20 büyüt */
}

.up-feature-box {
    width: 100%; /* Üst kutuyla aynı genişlik */
    height: 50px; /* Üst kutunun 1/4 boyutunda */
    background-color: black; /*alt kutu */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.up-feature-box p{
    padding-right: 200px;
    text-align: center;
    padding-left: 180px;
}

.feature-button {
    padding: 10px 10px;
    margin-top: 20px;
    margin-left: 46%;
    background-color: transparent;
    border: 2px solid black;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}

.feature-button a{
    text-decoration: none;
    color: #000;
}

.feature-button:hover{
    background-color: white;
    color: black;
}
/*Hakkımızda bölümü ayarları*/
.hakkimizda-section {
    background-color: rgba(74, 74, 74, 0.6);
    margin: 50px auto; /* Ortalamak için */
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.hakkimizda-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Görseller ya da bilgi kutuları için */
    align-items: center; /* Ortalanmış hizalama */
}

.hakkimizda-content img{
    width: 200px; /* Görsel veya bilgi kutusu genişliği */
    margin: 0 20px; /* Görsel veya bilgi kutuları arasında boşluk */
    color: black;
    padding: 40px;
    margin: 30px;
    margin-left: 80px; 
}

.info-box {
    background-color: rgba(245, 243, 230, 0.8);
    color: black;
    padding: 20px;
    margin: 10px;
    flex: 1 1 200px; /* İçerik kutuları esnek */
}
#counter-container {
    display: inline-block;
    position: relative;
    left: -50px; /* Başlangıçta kutu solda başlasın */
    opacity: 0; /* Görünmez başlayacak */
    transition: all 1s ease-out; /* Hareket ve görünme geçişini ekliyoruz */
}

#counter {
    font-weight: bold;
    font-size: 24px;
    color: #000;
}






/* Proje bölümü ayarları */

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background-color: transparent;
}

.slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide {
    min-width: 100%;
    display: none;
    opacity: 0;
    transition: 0.5s ease;
    background-size: cover;
    background-position: center;
    height: 600px; /* Bu yüksekliği istediğin gibi ayarlayabilirsin */
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 1200px !important;
    height: 100% !important;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

button.prev {
    left: 0;
}

button.next {
    right: 0;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.caption {
    position: absolute;
    top: 10px; /* Üstten uzaklık */
    left: 10px; /* Soldan uzaklık */
    background-color: rgba(0, 0, 0, 0.5); /* Siyah arka plan ve %50 şeffaflık */
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.projects-button {
    display: block;
    margin: 20px auto; /* Ortalamak için */
    background-color: #e39527; /* şeffaflık */
    color: black;
    padding: 10px 10px;
    border: 2px solid black;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s;
}

.projects-button a{
    text-decoration: none;
    color: black;
}

.projects-button:hover {
    background-color: green; /* Üzerine gelince koyulaşsın */
    color:white;
}



/* Footer ayarları */
/* Footer Genel Stil */
.footer {
    background-color: #f5f3e4;
    padding: 40px 0;
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column hr {
    width: 50%;
    border: 1px solid #333;
    margin: 10px auto;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
    font-weight: bold;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}
/* Linklerin altındaki çizgiyi kaldırma */
.footer-column ul li a {
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: inherit; /* Link rengini mevcut metin rengiyle aynı yapar */
}

/* Link tıklandığında mavi işaretlemeyi kaldırma */
.footer-column ul li a:focus,
.footer-column ul li a:hover {
    outline: none; /* Mavi çerçeveyi kaldırır */
}

/* Linklerin hover (üzerine gelindiğinde) efekti */
.footer-column ul li a:hover {
    color: #ff6600; /* İstediğin renkte hover efekti ekleyebilirsin */
    transition: color 0.3s ease;
}
.footer-column h3 a {
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: inherit; /* Link rengini mevcut metin rengiyle aynı yapar */
}
.footer-column h3 a:hover {
    color: #ff6600; /* İstediğin renkte hover efekti ekleyebilirsin */
    transition: color 0.3s ease;
}

/* Çerez bildirimini stilize etmek */
.cookie_consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

.cookie_consent a {
    color: #ff6600;
    text-decoration: underline;
}

.cookie_consent button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie_consent button:hover {
    background-color: #e65a00;
}


/* 1500px ve altı için ölçeklendirme */
@media screen and (max-width: 1500px) {
    body {
        transform: scale(0.5);
        transform-origin: top left;
    }
}

/* 1200px ve altı için ölçeklendirme */
@media screen and (max-width: 1200px) {
    body {
        transform: scale(0.5);
        transform-origin: top left;
    }
}

/* 900px ve altı için ölçeklendirme */
@media screen and (max-width: 900px) {
    body {
        transform: scale(0.5);
        transform-origin: top left;
    }
}

/* 600px ve altı için (mobil cihazlar) */
@media screen and (max-width: 600px) {
    body {
        transform: scale(0.5);
        transform-origin: top left;
    }
}
