/*!
Theme Name: hirsch_und_maus
Theme URI: http://underscores.me/
Author: Martin Paschinger, Design- und Entwicklungsbüro
Author URI: https://www.martinpaschinger.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hirsch_und_maus
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

hirsch_und_maus is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
:root {
  --black-color: #000000;
  --sand-color: #edeadd;
  --ice-color: #b3d3ea;

  --text-2xl: 65px;
  --text-xl: 45px;
  --text-lg: 34px;
  --text-md: 22px;
  --text-base: 16px;
  --text-sm: 14px;
}

@font-face {
  font-family: "Host-Variable";
  src: url("assets/fonts/Host/HostGrotesk-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aether-Regular";
  src:
    url("assets/fonts/Aether/Aether-A.woff2") format("woff2"),
    url("assets/fonts/Aether/Aether-A.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aether-Italic";
  src:
    url("assets/fonts/Aether/Aether-AItalic.woff2") format("woff2"),
    url("assets/fonts/Aether/Aether-AItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  display: none;
  visibility: hidden;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Host-Variable";
  font-size: var(--text-base);
  line-height: 1.3;
  color: #222;
  background: var(--ice-color);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

select {
	color: black;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aether-Regular";
  clear: both;
  line-height: 1.3;
  font-weight: 400;
}

h1 {
  font-size: var(--text-xl);
  line-height: 1.1;
}

h2 {
  font-size: var(--text-lg);
  line-height: 1;
}

h3 {
  font-size: var(--text-md);
  line-height: 1.05;
}

p {
  font-size: var(--text-base);
  font-weight: 600;
}

.menu-header a {
  font-family: "Aether-Regular";
  font-size: var(--text-lg);
}

b,
strong {
  font-weight: bold;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.lang-toggle {
  position: relative;
  display: inline-block;
  transform: translateY(7px);
}

.lang-toggle select {
  font-family: "Host-Variable", sans-serif;
  font-weight: 600;
  font-size: var(--text-base);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 28px 6px 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* SVG Pfeil */
.lang-toggle::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 25px;
  height: 24px;
  transform: translateY(-50%);
  pointer-events: none;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}

/* Screenreader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.gradient-top {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.gradient-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.wrapper {
  max-width: 50vw;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.wrapper.small {
  max-width: calc(50vw - 100px);
}

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

/*--------------------------------------------------------------
# Menü
--------------------------------------------------------------*/
.menu-toggle {
	color: black;
}

.menu-toggle span {
  margin: 0 0.5px;
  display: inline-block;
  transition: transform 0.5s ease;
}

/* Treppen-Startzustand */
.menu-toggle span:nth-child(1) {
  transform: translateY(-18px);
}
.menu-toggle span:nth-child(2) {
  transform: translateY(-8px);
}
.menu-toggle span:nth-child(3) {
  transform: translateY(3px);
}
.menu-toggle span:nth-child(4) {
  transform: translateY(11px);
}

/* Hover → alles auf eine Linie */
.menu-toggle:hover span {
  transform: translateY(0);
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--sand-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}

/* .menu-overlay.active {
  opacity: 1;
  visibility: visible;
} */

.overlay-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.fullscreen-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: -70px;
}

.fullscreen-menu-list li {
  line-height: 1;
}

.fullscreen-menu-list a {
  font-family: "Aether-Italic";
	font-style: italic;
  text-transform: none;
  font-size: var(--text-xl);
  color: var(--black-color);
  text-decoration: none;
  transition:
    font-variation-settings 0.3s ease,
    letter-spacing 0.3s ease;
}

.fullscreen-menu-list a:hover,
.fullscreen-menu-list a:focus {
}

.menu-overlay .menu-footer {
  opacity: 0;
}

.menu-footer-logo-alt {
  position: absolute;
  width: 18.9vw;
  max-width: 400px;
  height: auto;
  display: block;
  right: 4vw;
  bottom: 115px;
  opacity: 0;
  transform: rotate(-45deg);
}

.site-header,
.menu-header {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-transform: uppercase;
  padding: 30px;
}

.site-header .site-voucher {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1000;
}

.active .site-voucher {
  color: var(--black-color);
}

.home .site-header,
.home .site-header .menu-toggle {
  color: white;
}

/* .site-header.menu-active {
  color: var(--black-color);
} */

.main-navigation,
.menu-header div:last-child {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  appearance: none;
}

.site-branding,
.menu-header div:nth-child(2) {
  text-align: center;
  display: flex;
  justify-content: center;
}

.site-branding {
  position: relative;
  z-index: 1000;
}

.menu-footer,
.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-transform: uppercase;
  padding: 25px 30px;
  color: var(--black-color);
}

.menu-footer p,
.site-footer p {
  font-weight: 600;
  line-height: 1.1;
  font-size: var(--text-sm);
}

.site-footer .contact-info,
.site-footer .legal-info,
.menu-footer .contact-info,
.menu-footer .legal-info {
  display: flex;
  align-items: flex-end;
  gap: 100px;
  text-align: center;
}

.contact-info > div:first-child {
  flex-shrink: 0;
}

.site-footer .menu-footer-logo,
.menu-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .legal-info,
.menu-footer .legal-info {
  justify-content: flex-end;
}

.site-footer {
  background-color: var(--ice-color);
}

.site-voucher a,
.menu-toggle {
  font-family: "Aether-Regular";
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 400;
}

.close-button {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: #736164;
  border: none;
  cursor: pointer;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-in-out;
}

.close-button:hover {
  transform: rotate(180deg);
}

.book-table-button {
  position: fixed;
  width: 130px;
  height: 130px;
  right: 30px;
  bottom: 40px;
  z-index: 100;
  display: block;
  background-color: var(--sand-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 1s ease;
}

.book-table-button:hover {
  transform: rotate(180deg);
}

.book-table-button svg {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.1) translateX(0.5%);
}

/*--------------------------------------------------------------
# Startseite
--------------------------------------------------------------*/

.home .entry-header {
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 60px 30px 50px 30px;
	background-color: black;
}

.home .entry-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .entry-header video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: -1;
}

.home .entry-header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  color: white;
}

.home .entry-header-content h1 {
  font-family: "Aether-Italic";
	font-style: italic;
  font-size: var(--text-2xl);
  line-height: 1.1;
  margin-bottom: 15px;
}

.home .entry-header-content p {
  width: 100%;
  max-width: 640px;
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Startseite - Info Section
--------------------------------------------------------------*/

.info-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5%;
  padding: 80px 40px;
  background-color: var(--ice-color);
}

.info-section .wrapper {
  grid-column: 2 / span 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-section h2 {
  font-family: "Aether-Italic";
	font-style: italic;
}

.info-section p {
  font-weight: 600;
}

.info-section p:first-of-type {
  margin-top: 8px;
  margin-bottom: 35px;
}

/*--------------------------------------------------------------
# Startseite - Menükarte
--------------------------------------------------------------*/

.menucard-banner {
  width: 100%;
  height: 75svh;
  min-height: 730px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.menucard-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menucard-content {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 60px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.menucard-inner-content {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.menu-button {
  width: 230px;
  text-align: center;
  font-family: "Aether-Regular";
  text-transform: uppercase;
  padding: 12px 0;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.menu-button:focus {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/*--------------------------------------------------------------
# Startseite - Lieferanten & Partner
--------------------------------------------------------------*/
.partner-section {
  width: 100%;
  position: relative;
  padding: 0px 30px;
  background-color: var(--ice-color);
}

.partner-section .section-header {
  width: 100%;
  max-width: 720px;
  padding: 100px 20px;
  margin: 0 auto;
}

.partner-section .section-header h2 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.grid-content {
  display: grid;
  gap: 100px;
}

.grid-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.grid-text h3 {
  font-size: var(--text-lg);
  font-family: "Aether-Italic";
	font-style: italic;
}

.padding-right {
  padding-right: 8vw;
}

.reverse .grid-image {
  padding-left: 8vw;
}

/*--------------------------------------------------------------
# Startseite - Eindrücke
--------------------------------------------------------------*/

.impressions-section {
  width: 100%;
  position: relative;
  padding: 100px 30px 0px 30px;
  background-color: var(--ice-color);
}

.impressions-section h2 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.impressions-swiper .swiper-slide {
  aspect-ratio: 1450 / 720;
  width: 100%;
  overflow: hidden;
}

.impressions-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--black-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  border: 1px solid var(--black-color);
  background: var(--ice-color);
}

.swiper-pagination-w {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Startseite - Footer
--------------------------------------------------------------*/

.quote-section {
  width: 100%;
  position: relative;
  padding: 90px 30px 100px 30px;
  background-color: var(--ice-color);
}

.quote-content {
  position: relative;
}

.quote-content > div:nth-child(2) {
  transform: translateY(20px);
}

.quote-section .quote-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-section .menu-button {
  width: 230px;
  color: var(--black-color);
  border-color: var(--black-color);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.menu-button.alt {
  color: var(--black-color);
  border-color: var(--black-color);
  padding-left: 24px;
  padding-right: 24px;
}

.cta-section .menu-button:hover,
.menu-button:hover,
.menu-button.alt:hover {
  color: var(--ice-color);
  background-color: var(--black-color);
}

.menucard-content .menu-button:hover {
  background-color: white;
  color: var(--black-color);
}

/*--------------------------------------------------------------
# Anreise & Kontakt
--------------------------------------------------------------*/

/* .entry-header {
  padding: 225px 30px 100px 30px;
} */

.entry-header {
  padding: 225px 30px 145px 30px;
}

.entry-header-head {
  width: 100%;
  text-align: center;
  padding-bottom: 50px;
}

.entry-header-head h1 {
  font-family: "Aether-Italic";
	font-style: italic;
}

.page-id-97 .entry-header-head h1,
.page-id-12 .entry-header-head h1 {
  font-size: var(--text-lg);
}

.entry-header-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.entry-header-content div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.entry-header-content div div {
  width: 100%;
  max-width: 470px;
}

.entry-header-content h3 {
  font-family: "Host-Variable", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-entry-content {
  width: 100%;
  padding: 0 30px 0px 30px;
}

.map-entry-content > svg {
  width: 100%;
  height: auto;
  display: block;
  padding: 0px 105px 0 80px;
}

.map-card-header svg {
	cursor: pointer;
}

.map-card-header svg:hover circle {
	fill: var(--black-color);
	color: var(--ice-color);
}


.map-card-header svg:hover path {
	fill: var(--ice-color);
}

.inner-map-entry-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.map-card {
  text-align: center;
}

.map-card .map-card-header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-card .map-card-content {
  width: 100%;
  height: auto;
  display: flex;
  padding-top: 20px;
  gap: 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-card-content h3 {
  font-family: "Host-Variable", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.map-card-content p {
  text-transform: uppercase;
  line-height: 1.1;
}

.map-entry-content h2 {
  font-family: "Aether-Regular";
  font-size: var(--text-xl);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.marker {
  color: var(--ice-color);
  stroke: var(--black-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.marker + path {
  fill: var(--black-color);
  cursor: pointer;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.marker.active + path,
.marker:hover + path {
  fill: var(--ice-color);
}

.marker.active,
.marker:hover {
  color: var(--black-color);
  stroke: var(--ice-color);
}

.map-card circle {
  color: var(--ice-color);
  transition: all 0.3s ease-in-out;
}

.map-card.active circle {
  color: var(--black-color);
}

.map-card path {
  transition: all 0.3s ease-in-out;
}

.map-card.active path {
  fill: var(--ice-color);
}

/*--------------------------------------------------------------
# Karriere
--------------------------------------------------------------*/
.page-id-93 .entry-header-head h1,
.page-id-14 .entry-header-head h1 {
  font-family: "Aether-Regular";
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 25px;
}

.page-id-93 .entry-header,
.page-id-14 .entry-header {
  padding: 225px 30px 55px 30px;
}

.page-id-93 .entry-header-head h2,
.page-id-14 .entry-header-head h2 {
  font-family: "Aether-Italic";
	font-style: italic;
}

.stellen-ausschreibungen {
  width: 100%;
  padding: 0 30px;
}

.inner-stellen-ausschreibungen {
  width: 100%;
  border-top: 1px solid var(--black-color);
  text-align: center;
  padding: 10px 0px 70px 0px;
}

.inner-stellen-ausschreibungen h2 {
  font-family: "Host-Variable", sans-serif;
  font-weight: 500;
  font-size: var(--text-base);
  text-transform: uppercase;
}

.offene-stellen-liste {
  width: 100%;
  padding: 50px 0px 25px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.offene-stellen-liste h3 {
  font-family: "Host-Variable", sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  text-transform: uppercase;
}

.stellen-ausschreibung-beschreibung a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.initiativbewerbung h2 {
  margin-bottom: 25px;
}

.cta-section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
}

.cta-section .menu-button {
  width: 230px;
  color: var(--black-color);
  border-color: var(--black-color);
  display: inline-block;
  margin: 0 auto;
}

.initiativbewerbung {
  padding-bottom: 50px;
}

.social-media-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 30px 25px 30px;
}

.social-media-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media-inner-w {
  width: 100%;
  padding: 15px 120px;
  background-color: var(--sand-color);
  position: relative;
}

.page-id-97 .social-media-w,
.page-id-12 .social-media-w {
  margin-bottom: 100px;
}

.prev-nav,
.next-nav {
  width: 35px;
  height: 35px;
  top: calc(50% - 17.5px);
  position: absolute;
  color: var(--sand-color);
  transition: color 0.3s ease;
  cursor: pointer;
}

.prev-nav:hover,
.next-nav:hover {
  color: var(--black-color);
}

.prev-nav path,
.next-nav path {
  transition: all 0.3s ease;
}

.prev-nav:hover path,
.next-nav:hover path {
  fill: var(--sand-color);
}

.prev-nav {
  left: 30px;
}

.next-nav {
  right: 30px;
}

#sb_instagram #sbi_images {
  display: flex !important;
  gap: 0 !important;
  padding: 0 !important;
}

.sb_instagram_header {
  display: none;
}

.swiper-slide {
  aspect-ratio: 228 / 274;
}

#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_photo_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#sb_instagram .sbi_photo {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100% !important;
}

#sb_instagram #sbi_load {
  display: none;
}

#sb_instagram {
  width: calc(100%);
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px !important;
  overflow: hidden !important;
}

#sb_instagram #sbi_images {
  gap: 20px !important;
}

.page-id-102 .entry-header,
.page-id-102 .entry-content,
.page-id-3 .entry-header,
.page-id-3 .entry-content {
  text-align: center;
}

.page-id-102 .entry-header,
.page-id-3 .entry-header {
  padding: 225px 30px 60px 30px;
}

.page-id-102 .entry-content,
.page-id-3 .entry-content {
  margin: 0 auto;
  max-width: 860px;
  padding: 0 30px;
  padding-bottom: 160px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-id-102 strong,
.page-id-3 strong {
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 2100px) {
  p {
    font-size: 20px;
    font-weight: 600;
  }

  .menu-footer p,
  .site-footer p {
    font-weight: 600;
    line-height: 1.1;
    font-size: 16px;
  }

  .info-section {
    gap: 2vw;
    padding: 80px 5vw;
  }

  .wrapper.small {
    max-width: 1080px;
  }

  .quote-content > div:first-child svg {
    width: 50vw;
    height: auto;
    display: block;
  }

  .quote-content > div:nth-child(2) svg {
    width: 25vw;
    height: auto;
    display: block;
  }

  .map-entry-content > svg {
    padding: 0px 15vw;
  }
}

/* 2XL → große Desktops */
@media (max-width: 1535px) {
  .site-footer .contact-info,
  .site-footer .legal-info,
  .menu-footer .contact-info,
  .menu-footer .legal-info {
    gap: 7vw;
  }
}

/* XL → Laptops */
@media (max-width: 1300px) {
  .map-entry-content > svg {
    padding: 0px 40px 0 40px;
  }

  .site-footer .contact-info,
  .site-footer .legal-info,
  .menu-footer .contact-info,
  .menu-footer .legal-info {
    gap: 5vw;
  }

  .quote-content svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .quote-content > div:nth-child(2) {
    transform: translateY(14px);
  }
}

/* LG → Tablets / kleine Laptops */
@media (max-width: 1023px) {
  .home .entry-header-content p {
    width: 100%;
    max-width: 510px;
  }

  .map-entry-content > svg {
    padding: 0px;
  }

  .quote-content > div:first-child {
    transform: translateY(-20px);
  }

  .quote-content > div:nth-child(2) {
    transform: translateY(12px);
  }

  .site-footer .contact-info,
  .site-footer .legal-info,
  .menu-footer .contact-info,
  .menu-footer .legal-info {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .lang-toggle {
    transform: translateY(5px);
  }

  .site-voucher a,
  .menu-toggle {
    font-size: 18px;
  }

  .map-entry-content > svg {
    padding: 0px 20px 0 20px;
  }

  h2,
	.page-id-97 .entry-header-head h1,
  .page-id-12 .entry-header-head h1,
  .grid-text h3 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .map-entry-content h2,
  .fullscreen-menu-list a,
  .impressions-section h2,
  .partner-section .section-header h2 {
    font-size: 34px;
  }

  .fullscreen-menu-list {
    gap: 20px;
  }

  .book-table-button {
    width: 100px;
    height: 100px;
  }

  h1,
  .home .entry-header-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .offene-stellen-liste h3,
  .home .entry-header-content p {
    font-size: 18px;
  }
  .entry-header-content div {
    width: 100%;
  }

  .map-card-header svg {
    width: 50px;
    height: 50px;
  }

	.page-id-97 .entry-header-content,
  .page-id-12 .entry-header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .inner-map-entry-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .map-card .map-card-content {
    gap: 12px;
  }
}

/* MD → Smartphones / kleine Tablets */
@media (max-width: 767px) {
  .site-header,
  .menu-header {
    padding: 20px;
  }

  .site-voucher a,
  .menu-toggle {
    font-size: 16px;
  }

  .close-button {
    width: 50px;
    height: 50px;
  }

  .map-entry-content h2,
  .fullscreen-menu-list a,
  .impressions-section h2,
  .partner-section .section-header h2 {
    font-size: 26px;
  }

  h1,
  .home .entry-header-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  h2,
	.page-id-97 .entry-header-head h1,
  .page-id-12 .entry-header-head h1,
  .grid-text h3 {
    font-size: 21px;
  }

  h3 {
    font-size: 17px;
  }

  .offene-stellen-liste h3,
  .home .entry-header-content p {
    font-size: 16px;
  }

  .fullscreen-menu-list {
    gap: 15px;
  }

  .menu-footer-logo svg {
    width: 40px;
    height: auto;
    display: block;
  }

  .site-footer .menu-footer-logo,
  .menu-footer-logo {
    order: -1;
  }

  .menu-footer,
  .site-footer {
    gap: 15px;
  }

  .lang-toggle {
    transform: translateY(5px);
    margin-top: -6px;
  }

  .menu-footer,
  .site-footer {
    padding: 20px;
  }

  .menu-footer-logo-alt {
    width: 25vw;
    right: 4vw;
    bottom: 240px;
  }

  .home .entry-header {
    padding: 20px 20px 30px 20px;
  }

  .book-table-button {
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }

  .info-section {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 0px;
    padding: 40px 20px;
  }

  .wrapper.small {
    width: 100%;
    max-width: 100%;
  }

  .info-section p:first-of-type {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .info-section > div:last-child {
    padding: 0px 25vw 30px 25vw;
  }

  .menucard-banner {
    height: 50svh;
    min-height: unset;
  }

  .menucard-content {
    padding: 40px 20px;
  }

  .partner-section .section-header {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
  }

  .partner-section {
    width: 100%;
    padding: 0px 20px;
  }

  .partner-section .section-header {
    width: 100%;
    max-width: 100%;
    padding: 40px 0px;
  }

  .grid-content {
    display: block;
  }

  .grid-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .padding-right {
    padding-right: 0;
  }

  .reverse .grid-image {
    padding-left: 0;
    padding-top: 20px;
  }

  .social-media-header {
    padding: 40px 20px 15px 20px;
  }

  .social-media-inner-w {
    padding: 15px 70px;
  }

  .prev-nav {
    left: 20px;
  }

  .next-nav {
    right: 20px;
  }

  .impressions-section {
    padding: 40px 20px 0px 20px;
  }

  .impressions-section h2 {
    margin-bottom: 20px;
  }

  .impressions-swiper .swiper-slide {
    aspect-ratio: 4 / 2.5;
  }

  .quote-content > div:nth-child(2) {
    transform: translateY(0px);
    order: -1;
    padding: 0px 20vw 20px 20vw;
  }

  .quote-content > div:first-child {
    transform: translateY(0);
  }

  .quote-section .menu-button {
    position: relative;
    margin-top: 20px;
  }

  .quote-section .quote-content {
    display: grid;
  }

  .quote-section {
    padding: 40px 20px;
  }

  #sb_instagram #sbi_images {
    gap: 10px !important;
  }

  .entry-header-content h3 {
    margin-bottom: 8px;
  }

  .entry-header-head {
    padding-bottom: 30px;
  }

	.page-id-93 .entry-header,
  .page-id-14 .entry-header,
  .entry-header {
    padding: 140px 20px 60px 20px;
  }

  .map-entry-content h2 {
    margin-bottom: 30px;
  }

  .map-entry-content {
    width: 100%;
    padding: 0 20px;
  }

  .social-media-header svg {
    width: 50px;
    height: auto;
    display: block;
  }

  .social-media-header > div:first-child {
    gap: 6px;
  }

  .map-entry-content > svg {
    padding: 0;
  }

  .map-card-header svg {
    width: 40px;
    height: 40px;
  }

  .map-card .map-card-content {
    padding-top: 12px;
    gap: 18px;
  }

  .inner-map-entry-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 40px;
  }

	.page-id-97 .social-media-w,
  .page-id-12 .social-media-w {
    margin-bottom: 40px;
  }

	.page-id-93 .entry-header-head,
  .page-id-14 .entry-header-head {
    padding-bottom: 0;
  }

  .offene-stellen-liste {
    padding: 40px 0px 25px 0px;
    gap: 15px;
  }

  .inner-stellen-ausschreibungen {
    padding: 10px 0px 40px 0px;
  }

  .cta-section {
    margin-bottom: 40px;
  }

  .site-branding svg {
    width: 60px;
    height: auto;
    display: block;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-15px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-toggle span:nth-child(4) {
    transform: translateY(16px);
  }

  .home .entry-header-content p {
    width: 100%;
    max-width: 250px;
  }
	
	.fullscreen-menu-list {
    margin-top: -60px;
}
}

/* SM → sehr kleine Geräte */
@media (max-width: 639px) {
}
