@import url('font/gloock-font.css');

:root{
        --icon_bg_color: none;
    /* rgba(255, 255, 255, 0.5)*/
    --menu-bar-bg-color-span:#000;
    --menu-bar-text-color:#FFE8D2;
    --menu-bar-text-color-active:#EF9C66;
}
li {
    list-style: none;
    text-decoration: none;
}
li a
{
    text-decoration: none;
    color: var(--menu-bar-text-color);
    font-size: 4rem;
    font-family: collier, sans-serif;
    transition: all 0.3s ease-in-out;
}
li .active
{
    color: var(--menu-bar-text-color-active);
    
}
li a:hover
{
    color: var(--menu-bar-text-color-active);
    transition: all 0.3s ease-in-out;
}
.menu-section {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: var(--icon_bg_color);
    font-family: var(--main-font-family-theme);
    border-radius: 10px; 
    cursor: pointer;
    z-index: 1;
}
.menuletter {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: var(--menu-bar-bg-color-span);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 1.2em;
    margin-left: 10px; 
} 
.nav-icon {
    width: 23px;
    height: 18px;
    position: relative;    
    transform: rotate(0deg);     
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 7px;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--menu-bar-bg-color-span);
    opacity: 1;    
    transform: rotate(0deg);   
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;     
    transform-origin: left center;
}

.nav-icon span:nth-child(2) {
    top: 6px;    
    transform-origin: left center;
}

.nav-icon span:nth-child(3) {
    top: 12px;     
    transform-origin: left center;
    width: 60%;
    right: 0 !important;
}

.nav-icon:hover span:nth-child(3) {
    width: 100%;
}
/*------------------------ 2.1 Full Menu ------------------------*/

.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center;
    /* background: var(--menu-bar-bg-color); */
}

/* Full Menu */

.full-menu .modal-close {
    /* 'X' icon */
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    padding: 45px;
    padding-left: 20px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0) url('../images/close.png')no-repeat center center;
    background-size: 30%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    visibility: 0s 0.3s, opacity 0.3s 0s;

    transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}

.no-touch .full-menu .modal-close:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.full-menu.visible {
    background-size: 100%;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s, visibility 0s;
}

.full-menu.visible .fullmenu-content {
    -webkit-overflow-scrolling: touch;
}

.full-menu.visible .modal-close {
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    transform: scale(1);
}
.full-menu .fullmenu-content {
    text-align: center;
    margin-left: -50px;
}



.cd-transition-layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    display: none;
}

.cd-transition-layer .bg-layer {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-2%);
    transform: translateY(-50%) translateX(-2%);
    height: 100%;
    /* our sprite is composed of 25 frames */
    width: 2500%;
    background: url('../images/velvom_menu_ink_orange.png') no-repeat 0 0;
    background-size: 100% 100%;
}

.cd-transition-layer.visible {
    opacity: 1;
    visibility: visible;
}

.cd-transition-layer.opening .bg-layer {
    animation: cd-sequence 1.5s steps(24);
    animation-fill-mode: forwards;
}

.cd-transition-layer.closing .bg-layer {
    animation: cd-sequence-reverse 1.0s steps(24);
    animation-fill-mode: forwards;
}

.no-cssanimations .cd-transition-layer {
    display: none;
}

.full-menu .fullmenu-content {
    height: 100%;
    width: 100%;
    display: table;
}


@keyframes cd-sequence {
    0% {
        transform: translateY(-50%) translateX(-2%);
    }

    100% {
        transform: translateY(-50%) translateX(-98%);
    }
}




@keyframes cd-sequence-reverse {
    0% {
        transform: translateY(-50%) translateX(-98%);
       background-color: #000;
    }

    100% {

        background-color:transparent;
    }
}



@media ((min-width: 1049px) and (max-width: 1400px)) {
    li a
        {
            font-size: 3rem;
        }
    }
    
@media only screen and (min-width: 1100px) {
    .full-menu .fullmenu-content {
        padding: 0px 0px;
    }

    .full-menu .modal-close {
        height: 5px;
        width: 5px;
    }

    .full-menu p {
        font-size: 25px;
    }
}
@media (max-width: 1000px) {
    li a {
        font-size: 4rem;
    }
}

@media (max-width: 850px) {
    li a {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    li a {
        font-size: 2rem;
    }
}

/* For landscape mode */
@media (max-device-width: 1000px) and (orientation: landscape) {
    li a {
        font-size: 3rem;
    }
}

@media (max-device-width: 850px) and (orientation: landscape) {
    li a {
        font-size: 2rem;
    }
}

@media (max-device-width: 600px) and (orientation: landscape) {
    li a {
        font-size: 1.5rem;
    }
}
