body {
    margin: 0;
    font-family: Poppins;
    padding: 0;
}

img {
    object-fit: cover;
}

header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    top: 30px;
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}


.logo-container {
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}


:root {
    --width-circle: 150vw;
    --radius: calc(100vw / 6);
}

.slider {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #17232A;
    background-image: radial-gradient(#fff3, transparent 50%);
    margin-top: -50px;
}

.slider .list {
    position: absolute;
    width: max-content;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: transform 0.8s;

}

.slider .list .item {
    width: calc(var(--radius) * 2);
    text-align: center;
    transform: rotate(45deg);
    transition: transform 1s;
}

.slider .list .item.active {
    transform: rotate(0deg);
}

.slider .list .item img {
    width: 90%;
    filter: drop-shadow(0 0 20px #000);
    border-radius: 50%;
    height: 100%;
}

.slider .content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #eee;
    width: max-content;
}

.slider .content div:nth-child(2) {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: bold;
    position: relative;
}

.slider .content div:nth-child(2)::before {
    position: absolute;
    left: 60%;
    bottom: 50%;
    width: 80px;
    height: 80px;
    content: '';
    background-image: url(img/leaves.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.slider .content div:nth-child(1) {
    text-align: left;
    text-transform: uppercase;
    transform: translateY(20px);
}

.slider .content button {
    border: 1px solid #eee5;
    background: transparent;
    color: #eee;
    font-family: Poppins;
    letter-spacing: 5px;
    border-radius: 20px;
    padding: 10px 20px;
}

#prev,
#next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #eee9;
    background-color: #cb9950;
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    cursor: pointer;
    z-index: 15;
}

#prev {
    left: 20px;
}

#next {
    right: 20px;
}

.item-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #eee9;
    background-color: rgba(0, 0, 0, 0.447);
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    z-index: 15;

    padding: 5px;


    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.p_fsize {
    font-size: 40px;
}

footer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 370px);
    width: 550px;
    background-color: transparent;
    border: 1px solid #eee9;
    background-color: rgba(0, 0, 0, 0.447);
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    z-index: 15;
    border-radius: 26px;
    padding: 5px;


    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

footer a {
    color: #fff;
}

@media (max-width: 768px) {
    .item-name {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 120px);
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: transparent;
        border: 1px solid #eee9;
        background-color: rgba(0, 0, 0, 0.447);
        color: #eee;
        font-size: x-large;
        font-family: monospace;
        z-index: 15;

        padding: 5px;


        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }


    .slider {

        margin-top: -150px;
    }

    footer {

        transform: translate(-50%, 310px);

        font-size: 18px;


    }

    header {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
       
    }
}



.item-details {
    display: none;
}

/* //circle */

.circle {
    pointer-events: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    -webkit-mask: radial-gradient(var(--radius), transparent 100%, #000);
    mask: radial-gradient(var(--radius), #0000 98%, #000);
    backdrop-filter: blur(10px);
    background: radial-gradient(calc(var(--radius) + 1px), #eee5 100%, #eee2);

}

.circle span {
    display: block;
    position: absolute;
    height: calc(var(--radius) * 2 + 50px);
    top: 50%;
    left: 50%;
    --rotate: 50deg;
    transform: translate(-50%, -50%) rotate(var(--rotate));
    text-transform: uppercase;
    color: #fff;
    font-size: small;
    animation: circleRotate 20s linear infinite;
}

@keyframes circleRotate {
    to {
        transform: translate(-50%, -50%) rotate(calc(var(--rotate) + 360deg));
    }
}



/* custom */

.cat {
    overflow-x: auto;
    white-space: nowrap;
    padding-top: 15px!important; 
    padding-left: 30px;
    background-color: #ff000000;
    height: 43px;
    border-radius: 26px;
    position: absolute;
    margin: 0 auto;
    width: 1000px;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 999;
    scrollbar-width: none;
}

.cat::-webkit-scrollbar {
    display: none;
}


.cat-items {
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
  
}

.cat-items .item {
    flex: none; 
    height: 35px;
}

.cat-items .item a {
    text-decoration: none;
    color: #cb9950;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 25px; 
    background: white;

  
}

.cat-items .item a.active {
    color: white;
    background-color: #cb9950;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}


.cat-items .item a:hover {
    background-color: #ddd;
}

/* Resp */
@media (max-width: 1200px) {
    .cat {
        width: 800px;
    }
}

@media (max-width: 992px) {
    .cat {
        width: 600px;
    }


}

@media (max-width: 900px) {
    .cat {
        top: 115px;
        height: 36px;
    }

    .cat-items .item a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cat {
        width: 500px;
        padding: 10px;

    }

    .cat-items {
        gap: 15px;
    }

    .cat-items .item a {
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .cat {
        width: 90%;
        padding: 8px;
    }

    .cat-items {
        gap: 10px;
    }

    .cat-items .item a {
      
    }
}

@media (max-width: 476px) {
    .cat {
        width: 320px;
        padding: 5px;
    }
}