/* 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;
    scroll-behavior: none;
    overflow-y: hidden;
}

.logoSvg {
    padding: 1rem;
}


@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;
}

.navbar.override-opacity {
    animation: none;
    transition: opacity 0.66s;
}


@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%;
}



hr {
    border: none;
    /* Entfernt die standardmäßige Linie */
    border-top: 1px solid white;

    /* Stil, Farbe und Breite der Linie anpassen */
}

h1 {
    font-family: 'Cinzel';

    color: var(--prim-color);
}

h2 {
    font-family: 'Cinzel';
    color: var(--sec-color);
}

h3 {
    /* color: var(--acent-color); */
    color: white;
}

h4 {
    font-size: small;
    color: var(--sec-color)
}

h6 {
    font-size: small;
    color: var(--sec-color);
}

p {
    color: white;
}

p strong {
    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:hover {
    opacity: 1 !important;
}

.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 {
    margin: 6rem;
} */

.scroll-sections {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

section {
    height: -webkit-fill-available;
    height: fill-available !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

/* .impressum-container {
    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);
    padding: 10rem;
} */

.boujee-text:hover {
    background-image: linear-gradient(45deg, #AA1B8F, #EB3F4B, #FFD703);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

/* section:nth-child(1) {
    background-color: var(--bg-color);
}

section:nth-child(2) {
    background-color: var(--third-color);
}

section:nth-child(3) {
    background-color: var(--bg-color);
}

section:nth-child(4) {
    background-color: var(--third-color);
} */

#hero {
    position: relative;
    overflow-x: hidden !important;
}

.dast {
    margin: 1rem;
}


.dast h4 {
    padding: 6px;
    margin: 0;
    line-height: 1;
}

.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;
    }

    .scroll-sections {

        height: 90vh;
    }

    section {
        min-height: 90vh;
    }


}

@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');
}