body {
    background-image: url('/storage/bg.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat-y;
}
.navbar {
 background: transparent !important;
}
/* Home page slider */
/* Slider Genel Kapsayıcısı */
.home-page-slider {
    position: relative;
    overflow: hidden;
}

.slider-content-wrapper {
    height: 500px; /* Slider'ın sabit yüksekliği (isteğe göre ayarla) */
}

/* Masaüstü Ayarları */
@media (min-width: 769px) {
    .slider-text-col {
        padding-left: 5%; /* Metinlerin soldan boşluğu */
    }

    .slider-text-content h2 {
        font-weight: 800;
        font-size: 3rem;
        color: #0b1e33; /* Tasarımdaki koyu lacivert */
        margin-bottom: 20px;
    }

    .slider-text-content p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
    }

    /* Sağdaki PNG Görsel */
    .slider-png-image {
        max-height: 90%; /* Görselin yüksekliğini sınırla */
        object-fit: contain;
        transform: translateX(10%); /* Görseli biraz daha sağa yaslamak için */
    }
}

/* Mobil Ayarları (Sadece PNG Görsel Görünecek) */
@media (max-width: 768px) {
    .slider-content-wrapper {
        height: auto; /* Mobilde yükseklik görsele göre ayarlansın */
        padding: 50px 0;
    }

    .slider-image-col {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .slider-png-image {
        max-height: 300px; /* Mobilde görselin çok büyümesini engelle */
        width: auto;
    }
}

/* Örnek Buton Stili */
.btn-slider {
    background-color: #0b1e33;
    border-color: #0b1e33;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
}
/* Sekiz Akademi Section */
.sekiz-akademi-section {
    background-color: #fdf2a7; /* Görseldeki sarı tonu */
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #001937; /* Lacivert tonu */
}

/* Sol alttaki logo arka planı */
.sekiz-akademi-section::before {
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    width: 600px;
    height: 600px;
    background-image: url('/storage/logobanner.png'); /* Buraya logonun yolunu koy */
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1; /* Logoyu hafif göstermek için */
    z-index: 10;
}

.main-title {
    letter-spacing: -1px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.more-link {
    text-decoration: none;
    color: #001937;
    font-weight: bold;
    letter-spacing: 5px;
    border-bottom: 2px solid #001937;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.more-link:hover {
    opacity: 0.7;
}

.question-mark {
    font-size: 550px;
    font-weight: 1000;
    color: #001937;
    line-height: 1;
    display: inline-block;
}

/* Mobilde soru işaretini küçült veya gizle */
@media (max-width: 991px) {
    .question-mark {
        font-size: 8rem;
    }
}
.artistik-button-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 60px;
    margin: 20px auto;
    border: 2px solid #0b1e33; /* Genel çerçeve */
    overflow: visible; /* Sonsuzluk taşabilsin diye */
}

.btn-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Sol Taraf */
.btn-left {
    background-color: #fdfbc7; /* Tasarımdaki açık sarı */
    color: #0b1e33;
    padding-right: 30px;
}

/* Sağ Taraf */
.btn-right {
    background-color: #0b1e33; /* Tasarımdaki lacivert */
    color: #fff;
    padding-left: 30px;
}

/* Sonsuzluk İkonu Konumlandırma */
.infinity-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60px;
    height: 30px;
    background: #0b1e33; /* Arka planı lacivert yapıyoruz */
    border: 3px solid #fdfbc7; /* Etrafına sarı çerçeve */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none; /* Butonlara basmaya engel olmasın */
}

.infinity-divider svg {
    width: 35px;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

/* Hover Efektleri */
.btn-left:hover {
    background-color: #fff;
    padding-left: 10px;
}

.btn-right:hover {
    background-color: #162e4a;
    padding-right: 10px;
}