/* Colors */
:root {
    --bg-color: #fefae0;
    --bg_sec-color: #e9edc9;
    --prim-color: White;
    --sec-color: white;
    --third-color: white;
    --acent-color: rgb(0, 238, 255);
}



html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    overflow-x: hidden !important;
    background: linear-gradient(-45deg, #02aab0, #00cdac, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    position: relative;
}

.logoSvg {
    padding: 1rem;
}

.dast {
    margin: 1rem;
}


.dast h4 {
    padding: 6px;
    margin: 0;
    line-height: 1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes svg-text-anim {
    40% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    60% {
        stroke-dashoffset: 0;
        fill: #fafafa;
    }

    100% {
        stroke-dashoffset: 0;
        fill: #fafafa;
    }

}


/* Most browsers */
@keyframes svg-text-anim {
    40% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    60% {
        stroke-dashoffset: 0;
        fill: #fafafa;
    }

    100% {
        stroke-dashoffset: 0;
        fill: #fafafa;
    }

}

.fadeIn {
    opacity: 0;
    /* Start with zero opacity */
    animation-name: fadeInAnimation;
    animation-duration: 3s;
    /* Adjust the duration as needed */
    animation-timing-function: ease-in;
    /* Adjust the timing function as needed */
    animation-fill-mode: forwards;
    /* Keeps the final state of the animation */
    animation-delay: 3s;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        /* Start with zero opacity */
    }

    to {
        opacity: 1;
        /* End with full opacity */
    }
}


*::-webkit-scrollbar {
    display: none !important;
}

md-content {
    scrollbar-width: none;
}

#cups {
    overflow: visible;
    z-index: -100;
    width: 100%;
    /* Make sure the SVG fills the entire width of its container */
    height: auto;
    /* Maintain the aspect ratio */
    display: block;
    /* Remove any default inline display */
    margin: 0 auto;
    /* Center horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    xtransform: translate(-50%, -50%);
    max-width: 100%;
    /* Ensure the SVG does not exceed the width of its container */
    max-height: 100%;
}

.navbar:hover {
    opacity: 1 !important;
}

hr {
    border: none;
    /* Entfernt die standardmäßige Linie */
    border-top: 1px solid white;

    /* Stil, Farbe und Breite der Linie anpassen */
}

h1 {
    padding-top: 1.6em;
    font-size: calc(0.6vw + 0.6em);
    direction: ltr;
    width: 90vw;
    margin: auto;
    text-align: center;
    word-break: break-word;
    white-space: pre-line;
    overflow-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    font-family: 'Cinzel';
    color: var(--prim-color);
}

h2 {
    font-family: 'Cinzel';
    color: var(--sec-color);
}

h3 {
    /* color: var(--acent-color); */
    font-family: 'Cinzel';
    color: white;
}

h4 {
    font-size: small;
    color: var(--sec-color)
}

h6 {
    font-size: small;
    color: var(--sec-color);
}

p {
    color: white;
}

a {
    text-decoration: none;
}

.svg-container {
    stroke-dasharray: 150;
    stroke-width: 10rem;
}

/* CSS to make the navigation bar sticky */
.sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #ffffff;
    /* Add your desired background color */
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* CSS to highlight the active link in the navigation bar */
.navbar-nav .active {
    font-weight: bold;
    /* Add your desired styles for the active link */
}



nav {
    position: absolute;
    top: 0;
    right: 0;
}

.navbar {
    background-color: transparent !important;
    text-decoration: none;

}

.navbar-brand {
    color: var(--prim-color);
    font-weight: bold;
    margin-left: 6rem;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--acent-color);
    font-weight: bold;
    transform: scale(1.1);
}

.nav-link {
    color: var(--sec-color);
    text-decoration: none;
    transition: transform .2s;
    margin-right: 3rem;
    font-weight: bold;
    font-family: 'Nunito';
}

.nav-link:hover,
.nav-link:focus {
    color: var(--acent-color);
    font-weight: bold;
    transform: scale(1.1);
}


.navbar-toggler {
    color: white;
    outline: none;
    box-shadow: none;
    border: 1px solid white;
    /* Add a white border */
    z-index: 100;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Add a white border to the navbar-toggler-icon when active or focused */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid white;
    /* Add a white border */
    z-index: 100;
    transform: scale(1.1);
}

#impressum {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.impressum-heading {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: end;
}

.impressum-heading h1 {
    font-size: 95px;
}

.impressum-container {
    margin-top: 6rem;
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 1000px;

}

.impressum-container p {
    padding-left: 25%;
    padding-right: 25%;
}

.footer{
    margin-top: 8rem;
    bottom: 0;
    align-items: center;
    width: 40%;
}
.footer h1 {
    width: auto;
}


#hero {
    position: relative;
    overflow-x: hidden !important;
}
.dropdown-menu {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    border-radius: 10px;
}

.dropdown-item {
    color: white;
    font-family: 'Nunito';
    font-weight: bold;
    transition: all 0.33s;
    text-shadow: 1px 1px 1px grey;
}

.dropdown-item:hover {
    transform: scale(1.2);
    color: var(--acent-color);
    border: none;
    background-color: transparent;
}

@media (max-width: 776px) {
    .navbar-brand {
        margin-left: 0;
    }

    h1 {
        padding-top: 2.2em;
    }

    .impressum-heading h1 {
        font-size: 65px;
    }
    .impressum-container {
        margin-top:8rem;
        width: 98%;
    }
    .impressum-container p {
        padding-left: 1%;
        padding-right: 1%;
    }
    .footer{
        margin-top: 8rem;
        bottom: 0;
        align-items: center;
        width: 90%;
    }
}

@font-face {
    font-family: 'Cinzel';
    src: url('/assets/fonts/Cinzel-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito';
    src: url('/assets/fonts/Nunito-Regular.ttf') format('truetype');
}