:root {
  --black: #2d2d34;
  --pink: #dcb8cb;
  --blue: #7fc8f8;
  --green: #c4d6b0;
}

body {
  margin: 0;
  font-family: 'Josefine Sans', sans-serif;
  background-color: var(--black);
  color: var(--green);
}


h1 { font-weight: 700; font-size: 48px; }
h2 { font-weight: 700; font-size: 36px; }
h3 { font-weight: 600; font-size: 28px; }
h4 { font-weight: 500; font-size: 24px; }
h5 { font-weight: 400; font-size: 18px; }
h6 { font-weight: 300; font-size: 16px; }

header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 9999;
  border-radius: 0 0 20px 20px;
  background-color: var(--black);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--blue);
  transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.nav-list-item {
    display: flex;
    align-items: center;
    margin-left: 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-list-item:hover {
  background-color: rgba(185, 212, 241, 0.1);
  backdrop-filter: blur(5px);
  transform: translateY(-2px);
}

.nav-item a {
  color: var(--primary);
  transition: all 0.3s ease;
}

.nav-item a:hover {
  color: var(--blue);
  transform: scale(1.1);
}

/* Icons */
.fa-solid {
  display: inline-block;
  margin: 15px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.fa-solid:hover {
  color: var(--blue);
  transform: scale(1.1);
}
.nav-active {
  color: var(--blue) !important;
}

#icons-desktop .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#icons-desktop .col-xl-6:last-child {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header-container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}
.header-container .row .col-6 {
  display: flex;
  flex: none;
}
.header-container .row .col-6:first-child {
  justify-content: flex-start;
}
.header-container .row .col-6:last-child {
  justify-content: flex-end;
}
#icons-desktop,
#icons-mobile {
  width: 100%;
  justify-content: flex-end;
}
#icons-desktop {
  display: none;
}
#icons-mobile {
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  #icons-desktop {
    display: flex !important;
  }
  #icons-mobile {
    display: none !important;
  }
}

.nav-item-link {
  text-decoration: none;
  font-weight: 600;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--blue);
}

.logo-link:hover {
  color: var(--blue);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  width: 100%;
}

#mobile-menu {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: var(--black);
  padding: 10px;
  border-radius: 10px;
  z-index: 999;
}

#mobile-menu li {
  margin: 10px 0;
}

.d-none {
  display: none;
}

.spacer-8 {
  height: 80px;
}

.centered-container {
  width: 65%;
  margin: auto;
}

.horizontal-text-image-image {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .horizontal-text-image-image {
    clip-path: polygon(80% 3%, 100% 27%, 79% 81%, 25% 99%, 5% 91%, 0% 60%, 24% 5%);
  }
}

.horizontal-text-image-title {
  margin-bottom: 20px;
}

.horizontal-text-image-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 60px;
}

.btn {
  min-width: 100px;
  height: 50px;
  border: 2px solid var(--pink);
  align-content: center;
  color: var(--pink);
  border-radius: 20px;
  transition: .3s ease;
  margin-bottom: 60px;
  margin-right: 20px;
}

.btn:hover {
  background-color: var(--pink);
  color: var(--black);
}

.cart-item {
  height: auto;
}

.card-image {
  max-width: 100%;
  height: auto;
}

.card-item-label {
  color: var(--blue);
  background-color: var(--black);
  z-index: 99;
  padding: 0px 5px;
  font-size: 0.8rem;
}

.card-title {
  margin-top: 10px;
}

.card-icons-list {
  display: flex;
  list-style: none;
  padding: 0px;
}

.card-icons-list-item {
  display: inline;
  transition: 0.2 ease
}

.card-icons-list-item:hover {
  display: inline;
}

.clicked {
  color: #ff0000;
}

/* Bahnhof Cards Menu*/

.menu-item {
  height: auto;
}

.menu-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9; /* oder 4/3, 1/1 usw. */
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild wird zugeschnitten */
}


.menu-item-label {
  color: var(--blue);
  background-color: var(--black);
  z-index: 99;
  padding: 0px 5px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.menu-title {
  margin-top: 10px;
}

.menu-icons-list {
  display: flex;
  list-style: none;
  padding: 0px;
}

.menu-icons-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2 ease
}

.btn-info {
  display: flex;
  color: var(--blue);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--black);
  border: 1px solid var(--pink);
}

.popover-body {
  white-space: pre-line;
  font-size: 14px;
  background-color: var(--black);
  border: 1px solid var(--pink);
  color: var(--green);
}

#map, #map-bbbaden {
  height: 400px;
  width: 100%;
}

.map-title {
  margin-top: 50px;
}

.cart-counter {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #dc3545 !important;
    color: rgb(255, 255, 255) !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: bold !important;
    z-index: 10 !important;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.cart-notification {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.quantity-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  border: 1px solid var(--pink);
  color: var(--pink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.process-img {
  width: auto;
  height: 200px;
}

.container-white  {
  background-color: #fff;
  padding: 40px;
}

.process-title {
  color: var(--black);
  text-align: center;
}

.process-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 4px;
  background-color: var(--blue);
  margin: 8px auto 80px;
}

.process-text {
  margin: 20px 0px;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 600;
}

.process-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.checkout-qr-code {
  width: 50%;
  height: auto;
}

@media (min-width: 1200px) {
  .checkout-qr-code {
  width: 20%;
  height: auto;
  }
}

.pickup-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--pink);
  padding: 10px 30px;
  height: 100px;
  margin-top: 50px;
  border-radius: 20px 40px;
}

.pickup-code-code,
.confirmation-title {
  color: #06ff45;
}

footer {
  margin-top: 150px;
  border: 1px solid var(--blue);
  color: var(--green);
  border-radius: 30px;
}

.footer-col {
  padding: 20px 0px;
}

.form button {

  margin-bottom: 0px;
  height: 40px;
}
.form input {
  height: 40px;
  border-radius: 30px;
  padding: 0 10px;
  background-color: var(--black);
  border: 1px solid var(--pink);
  color: var(--pink);
}

.form {
  margin-top: 100px;
}
