@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

:root {
    --color1: #edc84b;
    --color2: #1e272e;
    --color3: #b89864;
    --color-schoko: #482900;
    --font: 'Roboto Condensed';
    --font-color: #dfe6e9;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed';
    color: var(--font-color);
}

body {
    min-height: 100vh;
    background: var(--font-color);

}

.error {
    display: none;
}

.dash {
    position: relative;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;

}

/* Login Start ********************************/
.login-container {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.login-container .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child {
    background: var(--color-schoko);
    left: -80px;
    top: -80px;
}

.shape:last-child {
    background: linear-gradient(to right,
            #ffd32a,
            #ffa11c);
    right: -30px;
    bottom: -80px;
}

.login-form {
    height: 520px auto;
    width: 400px;
    background-color: rgba(24, 23, 19, 0.053);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 35px;
}

.login-form * {
    font-family: 'Poppins', sans-serif;
    color: #150909;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

.login-form h3 {
    color: #485460;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

.login-form label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.login-form input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    border: 2px solid #485460;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

select {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    border: 2px solid #0e0e0f;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

::placeholder {
    color: #272020;
}

.login-form .login-btn {
    margin-top: 50px;
    width: 100%;
    background-color: var(--color1);
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #485460;
    transition: 500ms;
}

.login-form .login-btn:hover {
    color: #edb807;
    background-color: #080710;
}

/* Login End ********************************/
/* Admin Panel start ********************************/


.side-menu {
    position: fixed;
    background: var(--color-schoko);
    width: 20vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.side-menu .brand-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
}

.side-menu .brand-name .logo {
    height: 60px;
    width: 60px;
    border: 2px solid var(--color1);
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;

}

.side-menu .brand-name .logo img {
    width: 100%;

}

.side-menu .brand-name h1 {
    font-family: 'Satisfy';
    font-size: 25px;
    padding: 0;
    margin: 0;
}

.side-menu ul {

    transition: 500ms;
}

.side-menu li {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    padding: 10px 40px;
    transition: 500ms;
}

.side-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    gap: 10px;
    transition: 0, 5s;
    width: 100%;
}

.side-menu p {
    padding: 0;
    margin: 0;

}

.side-menu li:hover {
    background: var(--font-color);
    color: var(--color-schoko);
    transition: 500ms;

}

.side-menu li:hover p {

    color: var(--color-schoko);
}



.side-menu li:hover i {
    color: var(--color-schoko);
    transition: 500ms;
}

@media screen and (max-width: 1050px) {
    .side-menu li {
        font-size: 18px;
    }
}

@media screen and (max-width: 940px) {
    .side-menu li p {
        display: none;
    }

    .side-menu {
        align-items: center;
    }

    .side-menu .brand-name {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        margin-top: 5px;
    }

    .side-menu .brand-name .logo {
        height: 35px;
        width: 35px;
    }

    .side-menu .brand-name h1 {
        font-size: 15px;
    }

    .cards {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

}

@media screen and (max-width: 766px) {
    .nav-link {
        font-size: 14px;
        padding: 22px 10px;
    }

    .navbar-nav .nav-item .nav-link {
        background: var(--color3);
        font-size: 12px;
    }

    .navbar-nav .nav-item {
        padding: 5px;
    }

    .navbar-nav .nav-item .nav-link:hover {
        background: var(--color-schoko);
        color: var(--color3);
    }
}

/* @media screen and (max-width: 480px) {
    .card {
        width: 200px;
    }
} */

.right-menu {
    display: flex;
    justify-content: center;
    width: 80vw;
    height: 100vh;
    position: absolute;
    right: 0;
}

.cards {
    width: 60vw;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
}

.card {
    /* max-width: 350px; */
    width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: #b89864;
    border: 3px solid var(--color-schoko);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.cards .card h1 {
    margin-top: 30px;
    font-size: 35px;
    background: #b89864;
    color: #482900;
}

.card-body {
    background: #b89864;
    color: var(--color-schoko);
}

.card-body p {
    font-size: 25px;
    color: var(--color-schoko);
}

.card-body i {
    font-size: 25px;
    color: var(--color-schoko);
}

.navbar {
    height: 130px;
    background: var(--color3);
    z-index: 2;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-home {
    width: 100%;
    /* or a specific width */
    height: 100px;
    /* required for cover effect */
    overflow: hidden;
    /* hide overflow from scaling */
    position: relative;
    border-radius: 50%;
    border: 3px solid var(--color-schoko);

}

.navbar-brand h1 {
    font-family: 'Satisfy';
    font-size: 35px;
    padding: 0;
    margin: 0;
    color: var(--color-schoko);
}

.logo-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.navbar-toggler i {
    font-size: 30px;
    color: var(--color-schoko);
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 20px;
    padding: 50px 20px;
    transition: 500ms;
}

.navbar-nav .nav-item .nav-link:hover {
    background: var(--color-schoko);
    color: var(--color3);
}



/* ///////////////////////////////////////////////// */
.home-cards {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    display: inline-block;
    position: relative;
    width: 380px;
    min-width: 300px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin: 30px;
    padding: 0;

}



.hero-profile-img {
    height: 70%;
    width: 100%;
    object-fit: cover;
    transition: 500ms;
}

.hero:hover .hero-profile-img {
    transform: scale(1.2);
}

.hero-description-bk {
    background-image: linear-gradient(var(--color3), var(--color-schoko));
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

.second .hero-description-bk {
    background-image: linear-gradient(-20deg, var(--color-schoko), var(--color3))
}

.hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 30px;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.hero-logo img {
    height: 100%;
}

.hero-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    left: 150px;
    bottom: 26%;
}

.hero p {
    margin-bottom: 0px;
    font-size: 15px;
}

.hero-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 10%;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 15px;
    transition: 500ms;
}

.hero-btn a {
    color: #fff;
}

.hero-btn:hover {
    color: var(--color3);
    background: var(--color-schoko);
}

.hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
}

.btn i:before {
    width: 14px;
    height: 14px;
    position: fixed;
    color: #fff;
    background: #0077B5;
    padding: 10px;
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

.mape {
    border: 2px solid var(--color3);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

iframe {
    height: 100%;
    width: 100%;
}

.footer-end {
    height: 600px;
}

/* Slider//////////////////////////////////////////////////////////////////////////////////////////// */

.sliderElements,
.sliderElements figure,
.sliderControls {
    margin: 0;
}

.sliderElements:after {
    content: ".";
    display: block;
    height: .1px;
    clear: both;
    visibility: hidden;
    font-size: 0;
    overflow: hidden;
}

.cssSlider {
    overflow-x: hidden;
    border: 2px solid var(--color3);
    border-radius: 30px;
}

.sliderElements {
    list-style: none;
    position: relative;
    left: 0;
    width: 400%;
    margin-bottom: .8em;
    padding: 0;
    -webkit-transition: left .8s ease-in-out;
    -moz-transition: left .8s ease-in-out;
    -o-transition: left .8s ease-in-out;
    transition: left .8s ease-in-out;
}

.sliderElements>li {
    float: left;
    width: 25%;
    position: relative;
}

#slide02:checked~.sliderElements {
    left: -100%;
}

#slide03:checked~.sliderElements {
    left: -200%;
}

#slide04:checked~.sliderElements {
    left: -300%;
}

/* Bildunterschrift auf dem Bild positionieren */
.sliderElements figcaption {
    display: block;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 1em;
    padding: .4em;
    background: rgba(0, 0, 0, .5);
}

/* Bilder responsive */
.sliderElements img {
    width: 100%;
    height: auto;
}


/* inputs aus dem Blickfeld schieben */
.cssSlider input {
    position: absolute;
    left: -99999px;
}

/* mittige Ausrichtung der Controls - funktioniert im Zusammenspiel mit inline-block */
.sliderControls {
    text-align: center;
}

/* Controls nebeneinander bringen */
.sliderControls li {
    display: inline-block;
}

/* Controls auf einheitliche Maße bringen und die Ecken abrunden */
.sliderControls label {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    background: var(--color3);
    color: var(--color-schoko);
}

/* Attributselektor und indirekter Nachfahrkombinator zum ansteuern der labels */
.sliderControls label:hover,
#slide01:checked~.sliderControls label[for="slide01"],
#slide02:checked~.sliderControls label[for="slide02"],
#slide03:checked~.sliderControls label[for="slide03"],
#slide04:checked~.sliderControls label[for="slide04"] {
    background: #ddd;
    color: #ddd;
}

/* Slider//////////////////////////////////////////////////////////////////////////////////////////// */


.article-component {
    border-radius: 6px;
    background: var(--color3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 25px;
}

.article-component .article-text {
    font-size: 20px;
    color: var(--color2);
}

.article-component .article-title {
    font-size: 34px;
    color: var(--color2);
}


.article-component .article-image {

    overflow: hidden;

}

.article-component .article-image img {
    width: 100%;

}

.konditoorin {
    padding: 0;
    width: 95%;
    margin-top: 150px;
    margin-bottom: 50px;
    border: 2px solid var(--color1);
    border-radius: 60px 0 60px 0;
    overflow: hidden;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* .konditoorin-foto {
    width: 1200px;
}
 */
.konditoorin img {
    width: 100%;
}


/* footer //////////////////////////////////////////////////////////////////////////////////////// */
.footer {
    margin-top: 200px;
    background-color: var(--color3);
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: var(--color-schoko);
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-link img {
    height: 75px;
    border-radius: 50%;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: var(--color-schoko);
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: var(--color-schoko);
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-link a i {
    /* bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px; */
    font-size: 12px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: var(--color-schoko);
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background-color: var(--color3);
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {

    /* smartphones, Android phones, landscape iPhone */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {

    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:801px) {
    /* tablet, landscape iPad, lo-res laptops ands desktops */

}

@media (min-width:1025px) {
    /* big landscape tablets, laptops, and desktops */

}

@media (min-width:502px) {
    /*  .konditoorin {
        width: 400px;
    } */

}




@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {
    /* .footer-content-column {
      width: 49.99%;
  } */
}