@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

:root {
    --primary: #ffde00;
    --font1: "Noto Sans";
    --font2: "Montserrat";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #0e0c0c;
}

a,
button {
    cursor: pointer;
}

h1 div,
h2 div,
h3 div,
h4 div,
h5 div,
h6 div {
    display: inline;
}

body .bg-effect {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body .bg-effect #result {
    border: none;
    width: 100%;
    height: 100%;
    overflow: visible;
}

body::-webkit-scrollbar {
    display: none;
}

.preloader {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader .loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
}

.preloader .loader::after,
.preloader .loader::before {
    content: '';
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}

.preloader .loader::after {
    animation-delay: 1s;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.preloader p {
    font-family: var(--font2);
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-top: 1vw;
}

.preloader.stop-animation {
    display: none;
}

.container {
    max-width: 96vw;
    margin: 0 auto;
    height: 100%;
}

.hero {
    backdrop-filter: brightness(45%);
    height: 100%;
}

.menu {
    position: fixed;
    top: 100%;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100vh;
    background-image: url('assets/images/limon-logos-for-background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 434ms;
}

.menu.active {
    top: 0;
}

.menu-list-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.menu-box {
    position: relative;
}

.menu-cont {
    width: 100%;
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    height: 100%;
    transition: 434ms;
}

.menu-cont.active {
    top: 0;
    transition: 450ms;
}

.menu-header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    padding: 0.5vw 3vw;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.menu-close-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary);
    color: black;
    font-size: 1.4vw;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4.2vw;
}

.about-info {
    width: 50%;
    color: white;
}

.about-info h4 span {
    color: var(--primary);
    font-size: 1.6vw;
}

.about-info h4 {
    color: white;
    font-size: 1.4vw;
    font-family: var(--font2);
    font-weight: 500;
    text-transform: uppercase;
}

.about-info h2 {
    font-size: 3vw;
    font-family: var(--font1);
    font-weight: 300;
    margin-block: 1vw;
}

.about-info h2 span {
    color: var(--primary);
    font-weight: 700;
}

.about-info p {
    font-size: 1.15vw;
    font-family: var(--font1);
    font-weight: 400;
    line-height: 1.8vw;
}

.about-info a {
    margin-top: 2vw;
    font-size: 1.2vw;
    font-family: var(--font2);
    display: flex;
    align-items: center;
    gap: 0.8vw;
    color: var(--primary);

    & i {
        font-size: 1.4vw;
    }
}

.about-images {
    position: relative;
    width: 50%;
    height: 100%;
}

.about-images img {
    object-fit: cover;
}

.about-images img:nth-child(1) {
    position: absolute;
    border-radius: 14px;
    top: 0;
    left: 0;
    width: 30vw;
    aspect-ratio: 16 / 9;
}

.about-images img:nth-child(2) {
    position: absolute;
    border-radius: 14px;
    top: 60%;
    right: 10%;
    transform: translate(0%, -50%);
    width: 22vw;
    aspect-ratio: 3 / 2;
}

.about-images img:nth-child(3) {
    position: absolute;
    border-radius: 14px;
    bottom: 0;
    left: 10%;
    width: 18vw;
    animation: 9s shaking linear infinite;
}

@keyframes shaking {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0);
    }
}

.services-section h2 {
    color: var(--primary);
    text-align: center;
    font-family: var(--font2);
    font-size: 2.4vw;
    margin-bottom: 2vw;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4vw;
}

.service-item {
    backdrop-filter: blur(6px);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: white;
    overflow: hidden;
    position: relative;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1.2vw;
}

.service-card-header div {
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0.8vw;
    width: 5vw;
    height: 5vw;
}

.service-card-header div img {
    width: 100%;
}

.service-card-header h3 {
    font-family: var(--font1);
    font-size: 1.6vw;
}

.service-item p {
    padding: 1.2vw;
    font-family: var(--font1);
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 1.8vw;
}

.menu-footer-links {
    background-color: rgba(0, 0, 0, 0.75);
    position: sticky;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    list-style: none;
    text-align: center;
}

.menu-footer-links li {
    display: inline-block;
}

.menu-footer-links li a {
    padding: 0.8vw 1.2vw;
    display: inline-block;
    width: 100%;
    color: var(--primary);
    letter-spacing: 1.2px;
    font-family: var(--font2);
    font-weight: 500;
    font-size: 1.4vw;
    transition: 0.5s;
}

.menu-footer-link.active {
    background-color: var(--primary);
    color: black;
}

.contact-section {
    width: 100%;
}

.contact-section h2 {
    text-align: center;
    font-family: var(--font2);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-section p {
    color: var(--primary);
    text-align: center;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.form-cont {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.form-box1 {
    width: 60%;
}

.form-box2 {
    width: 40%;
    background-color: rgba(0, 0, 0, 0.6);
}

.form-box1 label {
    color: var(--primary);
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    margin-bottom: 12px;
}

.form-box1 label span {
    color: white;
    font-size: 22px;
}

.form-box1 input {
    display: block;
    width: 100%;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font1);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary);
    margin-bottom: 18px;
    transition: 500ms;
}

.form-box1 textarea {
    display: block;
    width: 100%;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font1);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary);
    margin-bottom: 26px;
    resize: none;
    transition: 500ms;
}

.form-box1 input:focus,
.form-box1 input:focus-visible,
.form-box1 textarea:focus,
.form-box1 textarea:focus-visible {
    outline: none;
    transition: 500ms;
    box-shadow: 0 0 25px -3px var(--primary);
}

.form-box1 input::-webkit-inner-spin-button,
.form-box1 input::-webkit-outer-spin-button {
    appearance: none;
}

.captcha-box {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.captcha-box .captcha-question {
    width: 30%;
    border: 2px solid var(--primary);
    border-radius: 16px 0 0 16px;
    background-color: var(--primary);
    font-family: var(--font1);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-box .captcha-answer {
    width: 70%;
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.submit-btn {
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 9px 18px;
    background-color: var(--primary);
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 700;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 0;
}

.form-box2 {
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
}

.form-box2 h3 {
    font-family: var(--font1);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.drink-cont {
    height: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


.drink-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-item {
    background-image: url("assets/images/table-with-khurasan.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.drink-item:hover::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink1:hover::before {
    content: "Suv";
}

.drink2:hover::before {
    content: "Qahva";
}

.drink3:hover::before {
    content: "Limonad";
}

.drink4:hover::before {
    content: "Choy";
}

.drink-item.active:hover::before {
    content: "";
    display: none;
}

.drink-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 450ms;
}

.drink-item img.active {
    top: 50%;
    left: 20%;
    width: 45%;
    height: 45%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 0;
}

.header-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 13vw;
}

.logo img {
    width: 100%;
}

.header-call {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6vw;
}

.header-call a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6vw;
    font-family: var(--font1);
    font-size: 1.8vw;
    color: var(--primary);
}

.header-call a i {
    font-size: 1.8vw;
}

.lang-drop-wrapper {
    position: relative;
}

.lang-drop-btn {
    width: 45px;
    height: 45px;
}

.lang-drop {
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(-300%);
    transition: 500ms;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 10px;
}

.lang-drop li {
    padding: 8px;
}

.lang-drop li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.lang-drop li a {
    color: black;
}

.lang-drop-wrapper:hover .lang-drop {
    transform: translateY(0) translateX(-50%);
}

.header-call button {
    width: 3vw;
    height: 3vw;
    background-color: transparent;
    color: var(--primary);
    font-size: 2vw;
    border: 2px solid var(--primary);
    border-radius: 0.5vw;
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.main-section {
    height: 100%;
}

.main-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content h1 {
    text-transform: uppercase;
    font-family: var(--font2);
    font-size: 60px;
    letter-spacing: 0.9px;
    line-height: 60px;
    color: var(--primary);
}

.main-content img {
    width: 600px;
}

.main-content h1 span {
    font-size: 160px;
    line-height: 90px;
}

.main-content p {
    margin-block: 18px 24px;
    color: var(--primary);
    font-size: 22px;
    font-family: var(--font1);
}

.main-content button {
    position: relative;
    border: 2px solid var(--primary);
    border-radius: 1vw;
    padding: 1.2vw 2.5vw;
    text-transform: uppercase;
    font-family: var(--font2);
    font-weight: 500;
    font-size: 1.4vw;
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content button::before,
.main-content button::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: inherit;
    border-radius: inherit;
    display: block;
    width: 100%;
    height: 100%;
    animation: 0.8s spotting linear infinite;
}

.main-content button::after {
    animation-delay: 500ms;
}

@keyframes spotting {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);

    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    background-color: rgba(0, 0, 0, 0.75);
}

.footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 1vw;
}

.social-links li {
    width: 2.4vw;
    height: 2.4vw;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.social-links li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.social-links li a i {
    font-size: 1.4vw;
}

.footer-cont p {
    font-family: var(--font2);
    font-size: 1.042vw;
    font-weight: 400;
    color: var(--primary);
}

.resident {
    display: flex;
    align-items: center;
}

.resident img {
    width: 2vw;
    margin-right: 1vw;
}

.resident p {
    color: white;
}

.succes-alert-bg,
.fail-alert-bg {
    z-index: 1000;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    pointer-events: none;
    opacity: 0;
}

.succes-alert-bg.active,
.fail-alert-bg.active {
    pointer-events: auto;
    animation: 150ms popupanim linear forwards;
}

@keyframes popupanim {
    0% {
        opacity: 0;
        top: 0;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

.succes-alert,
.fail-alert {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 20px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
}

.succes-alert.active,
.fail-alert.active {
    pointer-events: auto;
    animation: 150ms zooming linear forwards;

}

@keyframes zooming {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);

    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.succes-alert img,
.fail-alert img {
    width: 20%;
}

.succes-alert h2,
.fail-alert h2 {
    font-family: var(--font1);
    font-size: 36px;
    text-align: center;
}

@media screen and (max-width: 1370px) {
    body {
        cursor: default
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .header {
        padding: 16px 0 0;
    }

    .logo {
        width: 20vw;
    }

    .header-call a {
        font-size: 3vw;
    }

    .header-call a i {
        font-size: 2.4vw;
    }

    .header-call button {
        width: 5vw;
        height: 5vw;
        font-size: 3vw;
    }

    .main-content h1 span {
        font-size: 15vw;
    }

    .main-content h1 {
        font-size: 5.5vw;
    }

    .main-content button {
        padding: 2vw 4vw;
        font-size: 2.2vw;
        margin-top: 5vw;
    }

    .footer {
        padding-block: 15px;
    }

    .social-links li {
        width: 4.2vw;
        height: 4.2vw;
    }

    .social-links li a i {
        font-size: 2.2vw;
    }

    .footer-cont .all-rights-reserved {
        font-size: 1.6vw;
    }

    .resident img {
        width: 3.4vw;
    }

    .resident p {
        font-size: 1.6vw;
    }

    .menu-header {
        padding: 3.2vw;
    }

    .menu-header button {
        font-size: 3vw;
    }

    .menu-footer-links li a {
        font-size: 2.8vw;
    }

    .menu-cont {
        overflow-y: scroll;
    }

    .about {
        margin-block: 80px;
    }

    .services-section {
        margin-block: 60px;
    }

    .form-box1 {
        width: 50%;
    }

    .form-box2 {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .menu-cont {
        justify-content: unset;
        align-items: unset;
    }

    .contact-section {
        margin-block: 50px 80px;
    }

    .form-cont {
        flex-direction: column;
    }

    .form-box1,
    .form-box2 {
        width: 75%;
        margin: 0 auto;
    }

    .drink-item {
        width: 130px;
        height: 130px;
    }

    .drink-item img.active {
        width: 32%;
        height: 32%;
    }

    .succes-alert,
    .fail-alert {
        width: 70%;
        height: 35%;

        & img {
            width: 30%;
        }

        & h2 {
            font-size: 22px;
        }
    }
}

@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        gap: 4vw;
    }

    .about-info,
    .about-images {
        width: 100%;
    }

    .about-images {
        height: 50vh;
    }

    .about-info h4 span {
        font-size: 14px;
    }

    .about-info h4 {
        font-size: 12px;
    }

    .about-info h2 {
        font-size: 30px;
    }

    .about-info p {
        font-size: 14px;
        line-height: 20px;
    }

    .about-info a {
        font-size: 3vw;

        & i {
            font-size: 3.2vw;
        }
    }

    .about-images {
        height: 35vh;
    }

    .about-images img:nth-child(1) {
        width: 55vw;
    }

    .about-images img:nth-child(2) {
        width: 40vw;
    }

    .about-images img:nth-child(3) {
        width: 45vw;
        bottom: -20%;
    }

    .services-section h2 {
        font-size: 3.6vw;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-header div {
        width: 10vw;
        height: 10vw;
    }

    .service-card-header h3 {
        font-size: 2.8vw;
    }

    .service-item p {
        padding: 2vw;
        font-size: 2vw;
        line-height: 3vw;
    }

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .form-box1,
    .form-box2 {
        width: 90%;
    }

    .form-box1 label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-box1 input,
    .form-box1 textarea {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-box2 h3 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .drink-cont {
        row-gap: 12px;
    }

    .main-content img {
        width: 380px;
    }

}

@media screen and (max-width: 450px) {
    .logo {
        width: 33vw;
    }

    .header-call a {
        font-size: 4.4vw;
        gap: 1.4vw;
    }

    .header-call a i {
        font-size: 3.8vw;
    }

    .header-call button {
        width: 7vw;
        height: 7vw;
        font-size: 4.5vw;
    }

    .main-content h1 {
        max-width: 70vw;
        font-size: 6vw;
    }

    .main-content img {
        width: 280px;
    }

    .main-content p {
        font-size: 16px;
        line-height: 20px;
    }

    .main-content button {
        padding: 3vw 6.5vw;
        font-size: 3vw;
    }

    .social-links {
        gap: 2vw;
    }

    .social-links li {
        width: 6.4vw;
        height: 6.4vw;
    }

    .social-links li a i {
        font-size: 3vw;
    }

    .footer-cont .all-rights-reserved {
        display: none;
    }

    .resident img {
        width: 5.6vw;
        margin-right: 2vw;
    }

    .resident p {
        font-size: 3vw;
    }

    .menu-header {
        padding: 8px;
    }

    .menu-footer-links li a {
        padding: 2.4vw 5vw;
        font-size: 3.2vw;
    }

    .about {
        margin-block: 60px 130px;
    }

    .about-images {
        height: 28vh;
    }

    .about-images img:nth-child(1) {
        width: 70vw;
    }

    .about-images img:nth-child(2) {
        width: 60vw;
        top: 90%;
    }

    .about-images img:nth-child(3) {
        width: 50vw;
        bottom: -40%;
    }

    .services-section {
        margin-block: 50px 60px;
    }

    .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw;
    }

    .service-card-header {
        gap: 5vw;
    }

    .service-card-header div {
        width: 15vw;
        height: 15vw;
    }

    .service-card-header h3 {
        font-size: 4.5vw;
    }

    .service-item p {
        font-size: 3.2vw;
        line-height: 4.4vw;
    }
}