/* Ana container */
.arge-banner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Tekil banner stili */
.arge-single-banner {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

/* 1 banner için tam genişlik */
.arge-banner-container[data-banner-count="1"] .arge-single-banner {
    max-width: 100%;
}

/* 2 banner için yan yana */
.arge-banner-container[data-banner-count="2"] {
    justify-content: space-between;
    gap: 40px; /* Bu değeri istediğiniz boşluk miktarına göre ayarlayın (20px yerine 40px) */
}

.arge-banner-container[data-banner-count="2"] .arge-single-banner {
    flex: 1 1 calc(50% - 20px); /* gap değerinin yarısını buradan çıkarın (40px/2 = 20px) */
    min-width: 300px;
}

/* Mobilde daha az boşluk */
@media (max-width: 768px) {
    .arge-banner-container[data-banner-count="2"] {
        gap: 20px; /* Mobilde daha küçük boşluk */
    }
    
    .arge-banner-container[data-banner-count="2"] .arge-single-banner {
        flex: 1 1 calc(50% - 10px); /* Mobilde daha küçük boşluk */
    }
}

/* 3+ banner için slider */
.arge-banner-container.slick-initialized {
    display: block;
    padding: 20px 40px;
}

.arge-banner-container.slick-initialized .arge-single-banner {
    margin: 0 10px;
}

/* Slider navigasyon stilleri */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:before, 
.slick-next:before {
    color: #333;
    font-size: 40px;
    opacity: 0.7;
}

.slick-dots {
    bottom: 10px;
}

.slick-dots li button:before {
    color: white;
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* İçerik kutusu */
.arge-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    color: white !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Overlay */
.arge-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Maksimum opaklık için 1 değeri */
    z-index: 1;
    opacity: 0.5; /* Bu değer artık 0-2 arasında olacak */
}

/* Video arkaplan */
.arge-banner-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.arge-banner-video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Metin stilleri */
.arge-banner-subtitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white !important;
}

.arge-banner-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: white !important;
}

.arge-banner-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white !important;
}

.arge-banner-text p:last-child {
    margin-bottom: 0;
}

/* Buton container */
.arge-banner-button-container {
    margin-top: auto;
    padding-top: 20px;
}

/* Detaylı Bilgi Butonu */
.arge-banner-button {
    display: inline-block;
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.arge-banner-button:before {
    content: "—";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
}

/* Kenar yumuşatma */
.arge-single-banner {
    border-radius: 0px;
    overflow: hidden;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .arge-single-banner {
        height: 500px;
    }
    
    .arge-banner-content {
        padding: 20px;
    }
    
    .arge-banner-subtitle {
        font-size: 18px;
    }
    
    .arge-banner-title {
        font-size: 28px;
    }
    
    .arge-banner-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}