/* Top Bar Grundstil */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    background: #136ca2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 10px 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    flex: 1;
}

.top-bar button {
    background: transparent;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.3em;
}

.home-icon {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
}

.home-icon img {
    display: block;
}

.logo-container {
    flex: 0 1 auto;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 16px;
}

.logo-text {
    font-size: 1.9em;
    font-weight: bold;
    display: inline;
}

.orange-text {
    color: #f26122;
}

.white-text {
    color: white;
}

.logo-subtext {
    font-size: 14px;
    max-width: 300px;
    text-align: center;
}

.left-text {
    font-size: 1.7em;
    margin-top: -14px;
}

.top-bar-icons {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
    overflow: hidden;
    margin-top: 6px;
    justify-content: flex-end;
    flex: 1;
}

.top-bar-icons .currency {
    font-size: 1.75em;
}

.top-bar i {
    cursor: pointer;
    font-size: 18px;
    color: white;
    transition: color 0.3s, transform 0.2s ease-in-out;
}

.top-bar i:hover {
    color: #f26122;
    transform: scale(1.1);
}

/* Neues mobiles Logo */
.logo-container-mobile {
    display: none;
    background: #136ca2;
    padding: 10px 0;
    text-align: center;
    color: white;
    z-index: 1001;
}

.logo-container-mobile .logo-text {
    font-size: 1.7em;
    font-weight: bold;
}

.logo-container-mobile .logo-subtext {
    font-size: 0.9em;
}

.logo-container-mobile .orange-text {
    color: #f26122;
}

.logo-container-mobile .white-text {
    color: white;
}

/* RESPONSIVE DESIGN FÜR TOP BAR */
@media (max-width: 767px) {
    .top-bar {
        flex-direction: row;
        align-items: stretch;
        padding: 10px 20px 5px;
        padding-top: 41px;
    }

    .logo-container {
        display: none !important;
    }

    .logo-container-mobile {
        position: fixed;
        top: 0px;
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: 40px;
        overflow: hidden;
        margin-top: 0px;
        /* justify-content: flex-end; */
        flex: 1;
		padding: 6px 0;
		width: 100%;
        justify-content: center;
    }

    .top-bar-left-icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .top-bar-left,
    .top-bar-icons {
        flex-shrink: 0;
        flex: none;
        width: auto;
    }

    .logo-text {
        font-size: 1.4em;
        text-align: center;
        display: block;
    }

    .logo-subtext {
        font-size: 0.9em;
    }

    .left-text {
        font-size: 0.9em;
        margin-top: -2px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.logo-container{
		flex-direction: column;
		gap: 2px;
	}
    .logo-text {
        font-size: 1.0em;
    }

    .logo-subtext {
        font-size: 1.0em;
        line-height: 1.0;
    }

    .left-text {
        font-size: 1.0em;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .logo-text {
        font-size: 1.2em;
    }
}

@media (min-width: 1025px) {
    .logo-text {
        font-size: 1.9em;
    }

    .logo-subtext {
        font-size: 14px;
        line-height: 1.4;
    }

    .left-text {
        font-size: 1.5em;
    }
}


.burger-icon {
  display: inline-block;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
}

.burger-icon span {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #FFF;
  left: 0;
  border-radius: 2px;
  transition: 0.3s;
}

.burger-icon span:nth-child(1) {
  top: 0;
}
.burger-icon span:nth-child(2) {
  top: 9px;
}
.burger-icon span:nth-child(3) {
  top: 18px;
}