/* Temel Ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

main {
    margin-top: 110px; /* Üst barın yüksekliğine göre içeriği aşağıya kaydır */
    margin-bottom: 50px; /* Footer ile çakışmayı engellemek için */
}

.btn {
    display: block;
    text-align: center;
    background: #ff6600;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}
/* Header */
.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-bottom: 2px solid #ddd;
    height: 100px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #ff6600;
}

.logo img {
    height: 80px;
    margin-right: 15px;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 50%;
}

.search-bar input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search-bar .search-btn {
    padding: 8px 12px;
    border: none;
    background-color: #ff6600;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-btn {
    margin-left: 10px;
    padding: 8px 12px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: #cc5200;
}


/* Slider Mobil Uyumluluk */
.slider-container {
    position: relative;
    display: flex;
    overflow-x: auto; /* Yatay kaydırmayı etkinleştir */
    scroll-snap-type: x mandatory; /* Kaydırma duraklama noktaları */
    gap: 10px;
    height: 400px; /* Varsayılan yükseklik */
    padding: 10px;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Kaydırma çubuğunu gizle */
}

.slider-item {
    flex: 0 0 auto; /* Öğeleri yatayda kaydırılabilir hale getir */
    scroll-snap-align: start;
    width: 80%; /* Slider öğesinin genişliği */
	
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slider-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.1);
}

/* Oklar */
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.arrow-btn {
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Mobil Ok Ayarları */
@media (max-width: 480px) {
    .slider-container {
        height: 175px; /* Daha küçük ekranlar için slider yüksekliği */
    }

    .arrow-btn {
        padding: 6px;
    }

    .arrow-left {
        left: 5px;
    }

    .arrow-right {
        right: 5px;
    }
}

/* Container */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.box {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Eşit şekilde yerleştir */
    height: 550px; /* Eşit boyut için yükseklik */
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
}


/* Resim Konteyneri */
.image-container {
    overflow: hidden;
    border-radius: 8px;
    height: 370px; /* Resimlerin yüksekliğini sabitle */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resimleri kutuya sığdır */
    transition: transform 0.3s ease;
}

/* Footer */
.footer {
    background-color: #ff5a00;
    color: white;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer .menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer .menu a:hover {
    text-decoration: underline;
}

.footer .copyright {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}


/* Popup Background */
#videoPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
iframe {
    width: 100%;

}
/* Popup Content */
.popupContent {
    position: relative;
    background: #000;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 20%;
    width: 800px;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.closeBtn:hover {
    color: red;
}

/* Video */
video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.gel{
    color:white;
    font-family: 'Lora', serif;
}
.sbt{
margin-bottom:-50px;

}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider ve Popup Mobil Uyumluluk */
.slider-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.slide img {
    width: 180%;
    height: 600px;
	margin-left:-2%;
}

.popupContent {
    width: 90%;
    max-width: 400px;
}

/* Container Uyumluluk */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.box img {
    width: 100%;
    height: auto;
}

.details {
    padding: 10px;
    list-style: none;
    margin: 0;
}

.details li {
    margin-bottom: 5px;
}



/* Mobil Cihazlar için Media Query */
@media (max-width: 768px) {
    .slider-container {
        height: auto;
    }
.slide img {
    width: 110%;
    height: 600px;
	margin-left:-3%;
}
    .popupContent {
        width: 100%;
        padding: 10px;
    }

    .details {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 8px;
    }

    .promotion-image {
        text-align: center;
        padding: 20px;
    }
}
@media (max-width: 900px) {

.slide img {
    width: 108%;
    height: 600px;
	margin-left:-3%;
	margin-top:-5%;
}
}
