*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}

body{
    color: #fff;
    background-color: #fff;
}


section{
    padding: 70px 10% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(../assets/img/cave.jpg);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
}

.home-text h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#f1683a;
}

.home-text p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 30px;
    color: #ffffffd3;
    margin-bottom: 35px;

}

.btn{
    display: inline-block;
    padding: 13px 30px;
    background-color: #ffffff6c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.btn:hover{
    transform: translateX(5px);
    border: 2px solid;
    background: transparent;
    color: #f1683a;
}

/* KULINER JUDUL */

.kuliner {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-left: 5rem;
    gap: 1rem;
    width: 80rem;
    color: #0B2447;
}
.kuliner-judul h1{
    font-size: 22px;
    font-weight: 600;
    color: #0B2447;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-left: 18rem;
    text-align: center;

}

.kuliner-judul h5{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 18rem;
    text-align: center;
    color: #f1683a;
}

.kuliner-judul p{
    font-size: var(--p-font-);
    font-weight: 400;
    line-height: 30px;
    color: #0B2447;
    margin-left: 18rem;
    text-align: center;
}
/* END KULINER JUDUL */

/* CONTENT KULINER */
.slider{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #2B2F3A, white#0D0E12);
    overflow: hidden;
}
.slider::before{
    position: absolute;
    width: 50%;
    height: 100vh;
    content: '';
    top: 0;
    left: 0;
    background-color: #E88735;
}
.title{
    position: absolute;
    top: 10%;
    right: 60%;
    text-align: right;
    color: #fff;
    font-size: 150px;
    width: 40%;
    font-family: 'Pacifico', cursive;
    text-shadow: 3px 5px 0px #f1683a;
    line-height: .9em;
    transform: rotate(-5deg);
}
.images{
    position: absolute;
    bottom: 0%;
    left: 50%;
    --rotate: 0deg;
    transform: translate(-50%, 50%) rotate(var(--rotate));
    width: 700px;
    height: 700px;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
    outline: 3px dashed #fff5;
    outline-offset: -100px;
}
.images .item{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    rotate: calc(60deg * var(--i));
}
.images .item img{
    height: 220px;
}

.content{
    color: #0B2447;
    position: absolute;
    top: 10%;
    left: 60%;
    text-align: justify;
    width: 350px;
}
.content h1{
    color: #E88735;
    font-size: xxx-large;
}

.content .item{
    display: none;
}
.content .item.active{
    display: block;
}
@keyframes showContent{
    from{
        opacity: 0;
        transform: translateY(100px);
    }to{
        opacity: 1;
    }
}
.content .item.active h1{
    opacity: 0;
    animation: showContent 0.5s ease-in-out 1 forwards;
}
.content .item.active .des{
    opacity: 0;
    animation: showContent 0.5s 0.3s ease-in-out 1 forwards;
}
.content .item.active button{
    opacity: 0;
    animation: showContent 0.5s 0.6s ease-in-out 1 forwards;
}


#prev,
#next{
    position: absolute;
    border: none;
    top: 50%;
    left: 250px;
    font-size: 100px;
    font-family: cursive;
    background-color: transparent;
    color: #000000;
    font-weight: bold;
    opacity: 0.3
}
#next{
    left: unset;
    right: 250px;
}
#next:hover,
#prev:hover{
    opacity: 1
}
/* END CONTENT WISATA BUDAYA */

