.custom-toast {
    position: fixed;
    top: -100px; /* Başlangıçta yukarıda gizlenmiş */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9800;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 1000;
}

.custom-toast.show {
    top: 20px; /* Ekranın üstünden kayarak aşağı gelir */
    opacity: 1;
}

.custom-toast.hidden {
    top: -100px; /* Yukarı geri gider */
    opacity: 0;
}

.boostcamp-sections {
position: relative;
margin-top: 10px;
}
.boostcamp-sections:first-child {
margin-top: 80px;
}
@media (max-width: 991px) {
.boostcamp-sections {
margin-top: 80px;
}
}
.boostcamp-sections .section-title {
font-size: 24px;
font-weight: bold;
line-height: 1.5;
color: var(--secondary);
pointer-events: none;
}
@media (max-width: 991px) {
.boostcamp-sections .section-title {
font-size: 18px;
}
}
.boostcamp-sections .section-hint {
margin-top: 5px;
font-size: 14px;
font-weight: normal;
line-height: 1.5;
color: #818894;
pointer-events: none;
}
@media (max-width: 991px) {
.boostcamp-sections .section-hint {
font-size: 14px;
}
}


.slider-containerr {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    background-color: #000;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.slide .content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: white;
    max-width: 40%;
    z-index: 2;
}

.slide .content h2 {
    font-size: 2rem;
    margin: 0 0 10px;
}

.slide .content p {
    font-size: 1rem;
    margin: 0 0 20px;
}

.info-btn, .video-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.info-btn:hover {
    background-color: #000000;
    color: rgb(255, 255, 255);
    border: 1px solid #FED233;
}

.video-btn {
    background-color: #FED233;
    color: black;
    margin-left: 10px;
}

.video-btn:hover {
    background-color: rgb(0, 0, 0);
    color: white;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* 1000px ve üzeri geniş ekranlar için eklenen medya sorgusu */
@media (min-width: 1001px) {
    .slider-containerr {
        height: 55vh; /* Daha iyi görünmesi için biraz büyüt */
        max-height: none;
    }
    .slide .content {
        left: 15%;
        max-width: 75%;
    }.slider-containerr {
        max-height: 600px; /* Geniş ekranlar için maksimum yükseklik */
    }
    
    .slide img {
        max-height: 600px; /* Resimleri sınırla */
    }

    .slide .content h2 {
        font-size: 1.8rem; /* Biraz daha büyük başlık */
    }

    .slide .content p {
        font-size: 1rem; /* Yazıyı biraz daha büyüt */
    }

    .info-btn, .video-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
    
}


/* 768px - 1000px genişliği arasındaki ekranlar için */
@media (min-width: 769px) and (max-width: 1000px) {
    .slider-containerr {
        height: 45vh; /* Daha iyi görünmesi için biraz büyüt */
        max-height: none;
    }
    .slide .content {
        left: 15%;
        max-width: 75%;
    }

    .slide .content h2 {
        font-size: 1.8rem; /* Biraz daha büyük başlık */
    }

    .slide .content p {
        font-size: 1rem; /* Yazıyı biraz daha büyüt */
    }

    .info-btn, .video-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .slider-containerr {
        height: 35vh; /* Mobilde daha büyük görünmesini sağla */
        max-height: none; /* Maksimum yüksekliği kaldır */
    }
    .slide .content {
        left: 10%;
        max-width: 80%;
    }

    .slide .content h2 {
        font-size: 1.5rem;
    }

    .slide .content p {
        font-size: 0.9rem;
    }

    .info-btn, .video-btn {
        padding: 6px 6px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide .content {
        left: 5%;
        max-width: 90%;
    }

    .slide .content h2 {
        font-size: 2rem;
    }

    .slide .content p {
        font-size: 1rem;
    }

    .info-btn, .video-btn {
        padding: 6px 6px;
        font-size: 0.9rem;
    }

    .controls button {
        padding: 8px;
    }
}
.modal {
    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;
}

.modal video {
    max-width: 60%;
    max-height: 60%;
}

.modal .close-btn {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .slide .content {
        max-width: 60%;
    }

    .slide .content h2 {
        font-size: 1.2rem; /* Orta boyutlu ekranlar için */
    }

    .slide .content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slide .content {
        max-width: 80%;
    }

    .slide .content h2 {
        font-size: 0.8rem; /* Daha küçük ekranlar için */
    }

    .slide .content p {
        font-size: 0.6rem;
    }
}
