@import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@import 'animate.css';


@tailwind base;
@tailwind components;
@tailwind utilities;


html, body{
    width: auto;
    height: fit-content;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#main-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #323435 0%, #0C0C0C 99.99%, #2A2B2C 100%, #2A2B2C 100%);
    padding: 0 7%;
}

.nav-items {
    font-family: 'Germany Gothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #FFFFFE;
    font-size: 22px;
}

#logo {
    width: 140px;
}

.gradient {
    background: linear-gradient(135deg, #303132 0%, #363738 100%);
}

.neu {
    box-shadow: -5px 5px 10px rgba(41, 42, 42, 0.2), 5px -5px 10px rgba(41, 42, 42, 0.2), -5px -5px 10px rgba(61, 62, 64, 0.9), 5px 5px 13px rgba(41, 42, 42, 0.9), inset 1px 1px 2px rgba(61, 62, 64, 0.3), inset -1px -1px 2px rgba(41, 42, 42, 0.5);
}

/* Hamburger Menu */

.hamburger {
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: all 0.25s;
    position: relative;
}

.hamburger-top,
.hamburger-middle, 
.hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #CDB466;
    transform: rotate(0);
    transition: all 0.5s;
}

.hamburger-middle {
    transform: translateY(7px);
}

.hamburger-bottom {
    transform: translateY(14px);
}

.open {
    transform: rotate(90deg);
    transform: translateY(0px);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translate(6px);
}

.open .hamburger-middle {
    display: none;
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translate(-6px);
}

.hiddenEl {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

@media(prefers-reduced-motion) {
    .hiddenEl {
        transition: none;
    }
}

.delayAnimation:nth-child(2) {
    transition-delay: 200ms;
}

.delayAnimation:nth-child(3) {
    transition-delay: 300ms;
}


.delayAnimation:nth-child(4) {
    transition-delay: 500ms;
}

.delayAnimation:nth-child(5) {
    transition-delay: 700ms;
}

.delayAnimation:nth-child(6) {
    transition-delay: 900ms;
}

