/* ========================================
   Allgemeine Gestaltungselemente
======================================== */

.divider {
  width: 100px;
  height: 2px;
  margin: 16px auto 32px;
  background-color: #d88947;
}


/* ========================================
   Hero-Bereich: Genüsse für den Gaumen
======================================== */

/* Abstand oberhalb des Beitrags entfernen */
#sp-main-body {
  padding-top: 0;
  padding-bottom: 0;
}

.com-content-article,
.item-page {
  margin-top: 0;
  padding-top: 0;
}


/* Hintergrundbild */
.ochsen-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 620px;
  margin-left: -50vw;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 30px;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.52)
    ),
    url("/images/ochsen/gastraum.jpg");

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  color: #ffffff;
  text-align: center;
}

.ochsen-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.ochsen-hero h1 {
  margin: 0 0 25px;
  color: #ffffff;
}

.ochsen-hero__text {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.ochsen-hero__text p {
  margin: 0 0 20px;
}

.ochsen-hero__signature {
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  font-size: 20px;
  font-weight: 500;
}


/* Tablet */
@media (max-width: 991px) {

  .ochsen-hero {
    min-height: 540px;
    padding: 70px 25px;
  }

}


/* Smartphone */
@media (max-width: 767px) {

  .ochsen-hero {
    left: auto;
    width: 100%;
    min-height: 520px;
    margin-left: 0;
    padding: 60px 20px;
  }

  .ochsen-hero__text {
    font-size: 17px;
    line-height: 1.6;
  }

  .ochsen-hero__signature {
    font-size: 18px;
  }

}


/* ========================================
   Öffnungszeiten und Küchenzeiten
======================================== */

.hours {
  width: 100%;
  color: #222222;
  text-align: center;
}

.hours-title {
  margin: 0 0 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.hours p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.hours p + p {
  margin-top: 24px;
}

.hours-contact {
  margin-top: 10px !important;
}

.hours a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hours a:hover,
.hours a:focus {
  opacity: 0.75;
  text-decoration: none;
}


/* Restaurant */
.hours-restaurant {
  padding: 65px 35px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}


/* Küchenzeiten */
.hours-kitchen {
  padding: 65px 35px 50px;
}


/* Smartphone */
@media (max-width: 767px) {

  .hours-restaurant,
  .hours-kitchen {
    padding: 35px 20px;
    border-right: none;
  }

  .hours-title {
    font-size: 15px;
  }

  .hours p {
    font-size: 14px;
    line-height: 1.45;
  }

}


/* ========================================
   Tageskarte
======================================== */

.daily-menu {
  padding: 70px 0 55px;
  background: #ffffff;
  color: #222222;
}

.daily-menu-header {
  margin-bottom: 35px;
}

.daily-menu-header h2 {
  margin: 0;
  color: #222222;
  text-transform: uppercase;
}

.daily-menu-subtitle {
  margin: 12px 0 10px;
  color: #222222;
}

.daily-menu-column {
  height: 100%;
}

.menu-item {
  margin-bottom: 24px;
}

.menu-item-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
}

.menu-name {
  flex: 0 1 auto;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.menu-dots {
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 2px dotted #333333;
  transform: translateY(-3px);
}

.menu-price {
  flex: 0 0 auto;
  color: #d88947;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.menu-description,
.menu-note {
  margin-top: 3px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.menu-note {
  margin-top: 20px;
}

.menu-highlight {
  margin-top: 4px;
  color: #ff4040;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.daily-menu-separator {
  margin: 28px 0;
  border: 0;
  border-top: 1px dashed #777777;
}

.daily-menu-additives {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 2px dotted #333333;
  color: #555555;
  font-size: 12px;
  line-height: 1.4;
}

.daily-menu-additives strong {
  display: block;
  margin-bottom: 3px;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.daily-menu-additives p {
  margin: 0;
}


/* Zusatzstoffe und Allergene hochstellen */
.menu-description sup,
.menu-note sup {
  position: relative;
  top: -0.15em;
  font-size: 0.68em;
  line-height: 0;
  vertical-align: baseline;
}


/* Smartphone */
@media (max-width: 767px) {

  .daily-menu {
    padding: 50px 0 40px;
  }

  .daily-menu-header {
    margin-bottom: 28px;
    padding: 0 20px;
  }

  .daily-menu-column {
    margin-bottom: 15px;
  }

  .menu-item {
    margin-bottom: 22px;
  }

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

  .menu-price {
    font-size: 14px;
  }

  .menu-description,
  .menu-note,
  .menu-highlight {
    font-size: 13px;
  }

  .daily-menu-additives {
    font-size: 11px;
  }

}


/* ========================================
   Speisen zum Mitnehmen
======================================== */

.takeaway-menu {
  padding: 55px 25px;
  background: #ffffff;
  color: #222222;
}

.takeaway-menu-box {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 30px 45px;
  background: #f3f3f3;
  border: 1px solid #777777;
  border-radius: 6px;
}

.takeaway-menu-header {
  margin-bottom: 32px;
}

.takeaway-menu-header h2 {
  margin: 0;
  color: #222222;
  text-transform: uppercase;
}

.takeaway-menu-subtitle {
  margin: 10px 0 9px;
  color: #222222;
}

.takeaway-menu-column {
  height: 100%;
}

.takeaway-item {
  margin-bottom: 22px;
}

.takeaway-item-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
}

.takeaway-name {
  flex: 0 1 auto;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.takeaway-dots {
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 2px dotted #333333;
  transform: translateY(-3px);
}

.takeaway-price {
  flex: 0 0 auto;
  color: #d88947;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.takeaway-description {
  margin-top: 3px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.takeaway-description sup {
  position: relative;
  top: -0.15em;
  font-size: 0.68em;
  line-height: 0;
  vertical-align: baseline;
}

.takeaway-info {
  margin-top: 22px;
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.takeaway-info p {
  margin: 0 0 22px;
}

.takeaway-info p:last-child {
  margin-bottom: 0;
}

.takeaway-additives {
  margin-top: 10px;
  padding-top: 12px;
}

.takeaway-additives-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}

.takeaway-additives-heading strong {
  flex: 0 0 auto;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.takeaway-additives-dots {
  flex: 1 1 auto;
  min-width: 30px;
  border-bottom: 2px dotted #333333;
  transform: translateY(-3px);
}

.takeaway-additives p {
  margin: 3px 0 0;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}


/* Tablet */
@media (max-width: 991px) {

  .takeaway-menu-box {
    padding: 35px 25px 40px;
  }

  .takeaway-menu-column {
    margin-bottom: 12px;
  }

}


/* Smartphone */
@media (max-width: 767px) {

  .takeaway-menu {
    padding: 35px 15px;
  }

  .takeaway-menu-box {
    padding: 30px 20px 35px;
    border-radius: 5px;
  }

  .takeaway-menu-header {
    margin-bottom: 28px;
  }

  .takeaway-item {
    margin-bottom: 21px;
  }

  .takeaway-name {
    font-size: 15px;
  }

  .takeaway-price {
    font-size: 14px;
  }

  .takeaway-description,
  .takeaway-info {
    font-size: 13px;
  }

  .takeaway-additives-heading strong {
    font-size: 13px;
  }

  .takeaway-additives p {
    font-size: 11px;
  }

}


/* ========================================
   Hero klein (#Enjoy Together)
======================================== */

.hero-small {
  min-height: 340px;
  padding: 70px 30px;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("/images/ochsen/enjoytogether.jpg");

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-small h1 {
  margin-bottom: 0;
}


/* Smartphone */
@media (max-width: 767px) {

  .hero-small {
    min-height: 240px;
    padding: 50px 20px;
  }

}

/* ========================================
   Standort
======================================== */

.location-text {
  padding: 70px 40px;
  color: #222222;
}

.location-intro {
  margin: 0 0 20px;
}

.divider-left {
  margin-left: 0;
  margin-right: 0;
}

.location-text h2 {
  margin: 0 0 18px;
}

.location-text p {
  margin: 0 0 18px;
}

.location-map {
  width: 100%;
  padding: 70px 40px;
}

.location-map a {
  display: block;
}

.location-map img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px dotted #333333;
}


/* Tablet */
@media (max-width: 991px) {

  .location-text,
  .location-map {
    padding: 50px 25px;
  }

}


/* Smartphone */
@media (max-width: 767px) {

  .location-text,
  .location-map {
    padding: 35px 20px;
  }

  .location-text {
    text-align: center;
  }

  .divider-left {
    margin-left: auto;
    margin-right: auto;
  }

}

/* ========================================
   Footer
======================================== */

.ochsen-footer {
  color: #ffffff;
}

.ochsen-footer .sp-module,
.ochsen-footer .sp-module-content,
.ochsen-footer .custom {
  text-align: center;
}

.ochsen-footer h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.ochsen-footer p {
  margin: 0 0 12px;
  color: #ffffff;
  text-align: center;
}

.ochsen-footer a {
  color: #ffffff;
  text-decoration: none;
}

.ochsen-footer a:hover,
.ochsen-footer a:focus {
  color: #d88947;
}
}