@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary: #ff4000;
}

body {
    position: relative;
    background-color: #ffff;
    font-family: 'roboto',sans-serif;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    z-index: 20;
    background: #ffffff;
    box-shadow: 50px 50px 50px 50px rgba(255, 255, 255, 0.8);
}

 .logo {
    font-size: 2.5em;
    color: black;
    letter-spacing: 2px;
    font-weight: 800;
    width: 60px;
    height: 60px;
    padding: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo:active {
    box-shadow: inset 5px 10px rgba(0, 0, 0, 0.1);
}


.logo ion-icon:hover {
    color: var(--primary);
}

.search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.search:active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.search ion-icon {
    font-size: 2em;
    color: black;
    cursor: pointer;
    transition: 0.5s;
}

.search ion-icon:hover {
    color: var(--primary);
}

.search input {
    display: none;
}

.search.active {
    width: 300px;
    border-radius: 50px;
    justify-content: flex-start;
}

.search.active input {
    display: block;
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
}

.bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    display: flex;
    align-items: center;
    margin-right: 50px;

}

.nav li {
    list-style: none;
    margin: 0 20px;
}

.nav li a,
.nav-mobile li a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
}

.nav li:hover a,
.nav-mobile li:hover a {
    color: var(--primary);
} 

.check-out {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.check-out:active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.check-out ion-icon {
    font-size: 2em;
    color: black;
    cursor: pointer;
}
.check-out:hover ion-icon {
    color: var(--primary);
}

.check-out span {
    position: absolute;
    width: 20px;
    height: 20px;
    padding: 5px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 300;
    font-size: 0.8em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 5px;
    bottom: 10px;
}

.menu {
    display: none;
    color: black;
    font-size: 2em;
    z-index: 100;
}

.nav-mobile {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100);

}

.nav-mobile li{
    list-style: none;
    margin-bottom: 20px;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    perspective: 1000px;
}

.banner .imgBox.active {
    transform: translate(-50%,-50%) rotateY(180deg);
}


.banner .imgBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: 0.5s;
    transform-style: preserve-3d;
}


.banner .imgBox .food {
    position: absolute;
    backface-visibility: hidden;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.banner .imgBox .food img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.banner .imgBox .description {
    position: absolute;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    padding: 70px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
   justify-content: center;
   align-items: center;
}

.description h3 {
    font-size: 1.5em;
    font-weight: 1000;
    margin-bottom: 20px;
}
.description p {
font-size: 0.5em;
font-weight: 300;
letter-spacing: 0.5em;
text-align: center;
margin-bottom: 10px;
}

.description .download {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.description .download li {
    list-style: none;
    gap: 10px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 5px 0;
}
 
.description .download li img {
     max-width: 150px;
}

.description .price {
    color: var(--primary);
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}


.btn {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    color: black;
    font-weight: 300;
    cursor: pointer;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: 0.3s;
    z-index: 1000;
}

.btn.active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    color: var(--primary);
}

.order {
    position: absolute;
    left: 70%;
    bottom: 20%;
    transform: translate(-50% -50%);
    width: 80px;
    height: 80px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.order ion-icon {
    font-size: 2em;
    font-weight: 300;
    color: black;
    transition: 0.3s;
}
.order:hover ion-icon {
    color: var(--primary);
}

.order:active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.banner .content h1 {
      font-family: 'Berkshire Swash', cursive;
     position: absolute;
     display: flex;
     align-items: center;
     font-size: 7em;
     line-height: 1em;
     letter-spacing: 2px;
     top: 45%;
     transform: translateY(-50%);
     z-index: 10;
}

.banner .content h1 ion-icon {
    color: var(--primary);
    margin-left: 20px;
    transform: rotateZ(-30deg);
}


.banner .content h2 {
    font-family: 'Berkshire Swash', cursive;
     position: absolute;
     display: flex;
     align-items: center;
     font-size: 6em;
     line-height: 1em;
     letter-spacing: 5px;
     top: 58%;
     transform: translateY(-50%);
     z-index: 10;
}

.banner .selecttions {
    position: relative;
    height: 100vh;
    width: 20%;
}

.banner .circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0%,
    100% {
         transform: translateY(-50%) rotateZ(0);
    }
    30% {
        transform: translateY(-50%) rotateZ(10deg);
    }
    60% {
         transform: translateY(-50%) rotateZ(-10deg);
    }
}

.banner .selecttions h1 {
    font-family: 'Berkshire Swash', cursive;
     position: absolute;
     font-size: 4em;
     left: 20%;
     top: 50%;
     transform: translateY(-50%) rotateZ(90deg);
     line-height: 0.9em;
     opacity: 0.1;
     text-align: center;
}

.banner .selecttions img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.banner .selecttions .options {
    position: absolute;
    background: #ffffff;
    width: 130px;
    height: 130px;
    padding: 15px;
    box-shadow:  5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
 

.banner .selecttions .options:active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.banner .selecttions .circle .one {
top: 8%;
right: 75%;
}

.banner .selecttions .circle .two {
top: 50%;
right: 90%;
transform: translateY(-50%);
}

.banner .selecttions .circle .three {
bottom: 2%;
right: 75%;
}
.sci {
    position: absolute;
    left: 30px;
    bottom: 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
}
.sci li {
    list-style: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 2px;
    background: #ffffff;
    box-shadow:  5px 5px 10px rgba(0, 0, 0, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.sci li.active {
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.sci ion-icon {
    color: black;
    font-size: 1.5em;
    transition: 0.3s;
    padding: 3px;
}

.sci ion-icon:hover {
    color: var(--primary);
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 20px;
    background: var(--primary);
    border-top-left-radius: 30px;
    box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.8);
    z-index: 10;
}
