@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

svg {
    width: 25px;
}

header {
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

    header .logo {
        font-weight: bold;
    }

    header .menu {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 20px;
        font-weight: 500;
    }
/* css slider */
.slider {
    height: 105vh;
    margin-top: -50px;
    position: relative;
}

    .slider .list .item {
        position: absolute;
        inset: 0 0 0 0;
        overflow: hidden;
        opacity: 0;
        transition: .5s;
    }

        .slider .list .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider .list .item::after {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            bottom: 0;
            background-image: linear-gradient( to top, rgb(0 86 152 / 80%) 1%, transparent );
        }

        .slider .list .item .content {
            position: absolute;
            left: 10%;
            top: 35%;
            width: 500px;
            max-width: 80%;
            z-index: 1;
            color: aliceblue;
        }

            .slider .list .item .content p:nth-child(1) {
                text-transform: uppercase;
                letter-spacing: 10px;
            }

            .slider .list .item .content h2 {
                font-size: 50px;
                margin: 0;
                color: aliceblue;
            }

        .slider .list .item.active {
            opacity: 1;
            z-index: 10;
        }

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
    animation-duration: 1.3s;
}

.arrows {
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}

    .arrows button {
        background-color: #eee5;
        border: none;
        font-family: monospace;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        font-size: x-large;
        color: #eee;
        transition: .5s;
    }

        .arrows button:hover {
            background-color: #eee;
            color: black;
        }

.thumbnail {
    position: absolute;
    bottom: 2px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: flex-end;
    flex-direction: row;
}

    .thumbnail::-webkit-scrollbar {
        width: 0;
    }

    .thumbnail .item {
        width: 150px;
        height: 220px;
        filter: brightness(.5);
        transition: .5s;
        flex-shrink: 0;
    }

        .thumbnail .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .thumbnail .item.active {
            filter: brightness(1.2);
        }

        .thumbnail .item .content {
            position: absolute;
            inset: auto 10px 10px 10px;
        }

@media screen and (max-width: 678px) {
    .thumbnail {
        justify-content: start;
    }

    .slider .list .item .content h2 {
        font-size: 60px;
    }

    .arrows {
        top: 10%;
    }
}

.discover-btn {
    padding: 10px;
    background-color: #eee5;
    border-radius: 11px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}

.cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


html {
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
}

* {
    font-family: "Poppins", sans-serif;
}


/* Google Fonts - Poppins Fontu */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Sayfanın sağ kenarına butonları yerleştirme */
.side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000; /* Diğer içeriklerin üzerinde kalmasını sağlar */
}

/* Butonların genel stili */
.button {
    background-color: #006fba; /* Kahverengi buton rengi */
    color: #ffffff; /* Yazı rengi */
    font-family: 'Poppins', sans-serif; /* Yazı tipi */
    font-weight: 600; /* Kalınlık */
    text-decoration: none; /* Alt çizgiyi kaldır */
    text-align: center; /* Metni ortala */
    writing-mode: vertical-rl; /* Metni dikey yap */
    display: flex;
    align-items: center; /* Dikeyde ortalama */
    justify-content: center; /* Yatayda ortalama */
    padding: 2px;
    width: 40px; /* Buton genişliği */
    height: 120px; /* Buton yüksekliği */
    border: none; /* Kenarlık kaldırıldı */
    border-radius: 0; /* Köşeler düzleştirildi */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    transition: background-color 0.3s ease;
}

  

/* Responsive yapı: Mobil cihazlar */
@media screen and (max-width: 768px) {
    .side-buttons {
        position: fixed;
        bottom: 0; /* Sayfanın en altına sabitle */
        top: auto; /* Üst boşluğu kaldır */
        right: 0;
        left: 0; /* Ekran genişliğini kaplar */
        transform: translateY(0); /* Transform kaldırıldı */
        flex-direction: row; /* Butonları yatay sırala */
        gap: 0; /* Boşluk kaldırıldı */
    }

    .button {
        writing-mode: horizontal-tb; /* Metni yatay yap */
        width: 50%; /* Buton genişliğini yarı yarıya yap */
        height: 60px; /* Yüksekliği küçült */
        font-size: 14px; /* Yazı boyutunu ayarla */
    }
}







.sag-icon-bar {
    position: fixed;
    top: 30%;
    right: 0;
    width: 50px;
    z-index: 99;
}

.sag-icon-bar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column
    }

.sag-icon-bar ul li {
            padding: 10px
        }




