@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
}


.top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-bottom: 1px solid white;
    font-size: 12px;
}

.top-text .icons {
    display: none;
}

.top-text .icons svg {
    margin: 0 10px;
    width: 14px;
    height: 14px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px 10px 15px;
    position: sticky;
    top: 0;
    transition: all .2s linear;
}

.navbar .navbar-brand {
    font-size: 20px;
    font-weight: 700;
}

.navbar .navbar-buttons {
    display: none;
}

.navbar .navigation-checkbox {
    appearance: none;
    width: 30px;
    aspect-ratio: 1;
    /* background-color: white; */
}

.navbar .navigation-checkbox::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: white;
    top: 20px;
    transition: all .2s linear;

}

.navbar .navigation-checkbox::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: white;
    bottom: 20px;
    transition: all .2s linear;
}

.navbar .navigation-checkbox:checked::before {
    top: 24px;
    transform: rotate(45deg);
}

.navbar .navigation-checkbox:checked::after {
    bottom: 24px;
    transform: rotate(-45deg);
}

.image-box {
    height: 475px;
    padding-top: 100px;
}

.image-box .image-text {
    padding: 0px 5px 30px 10px;

}

.image-box .image-text .header {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;

}

.image-box .image-text .header::after {
    content: "";
    animation-name: head;
    animation-duration: 17s;
    animation-iteration-count: infinite;
    transition: .2s all linear;
    position: relative;
    z-index: -1;
}


@keyframes head {
    0% {
        content: "EROĞLU ER";
        opacity: 1;
    }

    20% {
        content: "EROĞLU ER";
        opacity: 1;
    }


    25% {content: "ERYALI";}

    45% {
        opacity: 1;
    }

    49% {
        opacity: 0;
        content: "ERYALI";
    }

    51% {
        opacity: 0;
        content: "EROTEL";
    }

    55% {
        opacity: 1;
    }

    76% {opacity: 1;}

    77% {
        content: "EROTEL";
        opacity: 0;
    }
    77.5% {
        content: "CANIMER";
        opacity: 0;
    }

    78% {
        content: "CANIMER";
        opacity: 1;
    }

    96% {
        opacity: 1;
    }
    97% {
        opacity: 0;
        content: "CANIMER";
    }

    100% {
        content: "EROĞLU ER";
        opacity: 1;
    }

}



.image-box .image-text .explanation {
    font-size: 34px;
    letter-spacing: 1.5px;
    line-height: 42px;
    font-weight: 200;
}

.image-box .image-text .explanation::after {
    animation-name: explain;
    animation-duration: 17s;
    animation-iteration-count: infinite;
    transition: .1s all linear;
    position: relative;
    z-index: -1; 
    content: "";
}

@keyframes explain {
    0% {
        content: "Kaliteli bir yolculuk için";
        opacity: 1;
    }

    20% {
        content: "Kaliteli bir yolculuk için";
        opacity: 1;
    }

    25% {
        content: "Gelin geleceği birlikte inşa edelim";
        opacity: 1;
    }

    45% {
        content: "Gelin geleceği birlikte inşa edelim";
        opacity: 1;
    }

    49% {
        content: "Gelin geleceği birlikte inşa edelim";
        opacity: 0;
    }

    51% {
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 0;
    }

    55% {
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 1;
    }

    70% {
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 1;
    }

    75% {
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 1;
    }
    77%{opacity: 1;}
    79%{opacity: 1;content: "Kusursuz bir konaklama için bekliyoruz";}

    95% {
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 1;
    }
    97%{
        content: "Kusursuz bir konaklama için bekliyoruz";
        opacity: 0;
    }

    100% {
        content: "Kaliteli bir yolculuk için";
        opacity: 1;
    }

}

.info-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    background-color: rgb(242, 242, 242);
    padding: 30px 0;
}

.info-box .box {
    display: flex;
    align-items: flex-start;
    padding: 10px 20px;
}

.info-box .info {
    padding-left: 20px;
}

.info-box .box .icon {
    height: 30px;
    aspect-ratio: 1;
    border-radius: 5px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.info-box .box .icon svg {
    transform: rotate(-45deg);
}

.info-box .info .info-head {
    color: black;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.info-box .info .info-information {
    color: rgb(43, 43, 43);
    font-size: 13px;
    line-height: 24px;
    font-weight: 200;
}

footer {
    background-color: rgb(18, 18, 18);
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .reserved {
    font-size: 10px;
}

footer .reserved {
    color: rgb(133, 136, 153);
    /* margin-bottom: 15px; */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

footer .reserved a {
    text-decoration: none;
    color: rgb(179, 118, 0);
}

footer .social-media-icons span {
    margin: 0 10px;
    width: 30px;
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 50%;
}

footer .social-media-icons span svg {
    transition: all 5s;
    color: gray;
}
footer .social-media-icons span svg:hover{
    color: white;
}



/*? Posititon Episode  */

.top-image-box {
    position: fixed;
    height: 600px;
    z-index: -1;
    left: 0%;
    display: flex;
    animation-name: goster;
    animation-duration: 17s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

}

.top-image-box img {
    height: inherit;
    width: 110vw;
    object-fit: cover;
}



@keyframes goster {
    0% {
        left: 0%;
    }

    20% {
        left: 0vw;
    }

    25% {
        left: -110vw;
    }

    45% {
        left: -110vw;
    }

    50% {
        left: -220vw;
    }

    70% {
        left: -220vw;
    }

    75% {
        left: -330vw;
    }

    95% {
        left: -330vw;
    }

    100% {
        left: 0vw;
    }

}

.navigation-bar {
    position: fixed;
    z-index: 2;
    top: 90px;
    bottom: 0;
    right: -275px;
    background-color: white;
    width: 275px;
    padding: 30px;
    transition: .3s all linear;

}

.navigation-bar ul {
    list-style-type: none;
    line-height: 45px;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.navigation-bar ul * {
    color: black;
}

.navigation-bar ul ul li {
    margin-left: 20px;
    list-style-type: " - ";
}