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

:root {
  --main: #1F3B2B;
  --gold: #c9a961;
  --dark: #0a0a0a;
  --light: #f5f5f5;
  --text: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-weight: 300;
  line-height: 1.6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', 'Source Sans 3', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.1;
}

.container{
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Header Banner */
.header-banner {
  position: static;
  width: 100%;
  background: var(--light);
  color: var(--main);
  padding: 12px 0;
  z-index: 1001;
  overflow: hidden;
}

.banner-wrapper {
  display: flex;
  width: fit-content;
  will-change: transform;
}

.banner-content {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  padding-right: 60px;
}

.banner-text {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--main);
  opacity: 0.8;
}

.banner-separator {
  width: 1px;
  height: 12px;
  background: var(--main);
  opacity: 0.3;
}

/* Navigation */
nav {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 2001; /* höher als overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

nav.nav-fixed {
  position: fixed;
  top: 0;
  gap: 20px;
}


.logo {
  position: relative;
  width: 200px;
  transform-origin: center bottom;
  margin: 0 40px;
  transition: all 0.3s ease;
  z-index: 1; 
  background: rgba(255, 255, 255, 0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border-radius: 100%;
padding: 6px;/* über den Bar-Pseudo-Elementen */
}

nav.nav-scrolled .logo {
  width: 100px;
  margin: 0 20px;
}


.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links li{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-links a {
  color: var(--main);
  display: inline-block;
  padding: 6px 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

nav.nav-scrolled .nav-links a {
  color: var(--main);
}

.nav-links a:hover {
  opacity: 0.6;
}

.hero .container{
  max-width: 1800px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Hero Section */
.hero {
  height: auto;
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('../img/cafe_room.webp')
    center/cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(255, 255, 255, 0.0) 65%
  );
}

.flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.hero-content {
  text-align: left;
  color: var(--white);
  max-width: 900px;
  padding: 0px;
}

.hero-intro {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0.8;
  font-weight: 300;
}

.hero-title {
  font-size: clamp(28px, 8vw, 60px);
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  margin-bottom: 50px;
  line-height: 1.4;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  border: 1px solid var(--main);
  color: var(--main);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-weight: 300;
  margin-top: 30px;
}

.btn:hover {
  color: var(--dark);
}

/* Section Styles */
section {
  position: relative;
  padding: 100px 40px;
  display: flex;
  align-items: center;
}

.section-number {
  position: absolute;
  top: 120px;
  left: 40px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 300;
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Intro Section */
.intro {
  background: var(--white);
}

.intro-text {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.6;
  max-width: 800px;
  font-weight: 400;
  color: var(--text);
}

/* Value Sections */
.value {
  position: relative;
  overflow: hidden;
  max-width: 1800px;
  margin: auto;
}

.bg_grey {
  background: var(--light) !important;
}

.value-content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.value-content2{
  align-items: flex-start;
}

.mt_200{
  margin-top: 200px;
}

.value-content > * {
  flex: 0 0 calc(50% - 40px);
}

.value-text {
  z-index: 2;
}

.value-number {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.value-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--text);
}

.value-description {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

/* Listen mit eigenem Aufzählungsbild (img/li.webp) */
ul.list-custom {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.list-custom li {
  position: relative;
  padding-left: 1.75em;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}
ul.list-custom li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.25em;
  height: 1.25em;
  background: url('../img/li.webp') no-repeat center;
  background-size: contain;
}

.value-image {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.value-image img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  display: block;
}

.value-content2 .value-image{
  margin-bottom: 40px;
}

/* Fullwidth Parallax Image */
.fullwidth-parallax {
  position: relative;
  width: 100%;
  height: 50vh; /* oder nach Wunsch anpassen, z.B. 400px */
  min-height: 300px;
  overflow: hidden;
}

.fullwidth-parallax-image {
  position: absolute;
  top: -20%; /* Etwas mehr Headroom für den Parallax-Effekt */
  left: 0;
  width: 100%;
  height: 140%; /* Bild ist größer als Container */
}

.fullwidth-parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  display: block;
}

/* About Section */
.about {
  background: var(--light);
}

.about-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.2;
}

.about-description {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.fullwidth-parallax {
  height: 600px; /* Or min-height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fullwidth-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta-content {
  color: var(--white);
  max-width: 880px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.1;
}

.cta-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.9;
}

.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--dark);
}

/* Chef Section */
.chef {
  background: var(--white);
}

.chef-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.chef-image {
  position: relative;
  height: 700px;
  overflow: hidden;
  border-radius: 4px;
}

.chef-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.chef-info h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 30px;
  font-weight: 300;
}

.chef-info p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 300;
}

.chef-signature {
  margin-top: 40px;
  font-family: 'Quicksand', 'Source Sans 3', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 24px;
  color: var(--text);
  font-style: italic;
}

/* Menu Section */
.menu {
  background: var(--light);
}

.menu-header {
  text-align: center;
  margin-bottom: 80px;
}

.menu-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
}

.menu-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-light);
  font-weight: 300;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.menu-tab {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 300;
}

.menu-tab.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.menu-items-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--light);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--text);
}

.menu-item-info p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

.menu-item-price {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text);
  font-weight: 300;
  white-space: nowrap;
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

/* Events Section */
.events {
  background: var(--light);
}

.events-header {
  text-align: center;
  margin-bottom: 80px;
}

.events-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  padding: 50px;
  border-radius: 4px;
}

.event-date {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.event-title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  font-weight: 300;
}

.event-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

/* Values Section */
.values {
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.value-card-icon {
  font-size: 48px;
  margin-bottom: 30px;
}

.value-card-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  margin-bottom: 15px;
}

.value-card-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* Reviews Section */
.reviews {
  background: var(--light);
}

.reviews-header {
  text-align: center;
  margin-bottom: 80px;
}

.reviews-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 300;
}

.review-author {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.review-role {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}

.imp_data h1, .imp_data h2, .imp_data h3, .imp_data h4, .imp_data h5, .imp_data h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0px;
}

.imp_data p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 300;
}

.imp_data ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  font-weight: 300;
}


/* Contact Section */
.contact {
  background: var(--white);
  min-height: 80vh;
}

.contact-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-details p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 300;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.6;
}

.opening-hours {
  margin-top: 40px;
}

.opening-hours h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 300;
}

.opening-hours p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 300;
}

.google-maps {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.google-maps iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Kontaktformular */
.contact-form-intro {
  margin-bottom: 24px;
}

.contact-form-type {
  border: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  gap: 24px;
}

.contact-form-type legend.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-light);
  font-weight: 300;
}

.contact-radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--main);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-form-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text);
  font-weight: 300;
}

.contact-form-fields label span {
  color: var(--text-light);
}

.contact-form-fields input,
.contact-form-fields textarea {
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: var(--main);
}

.contact-form-fields textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form-vorbestellung {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-form-vorbestellung.is-visible {
  display: flex;
}

.contact-form-fields .contact-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  font-size: 14px !important;
  color: var(--text-light) !important;
  line-height: 1.5 !important;
  cursor: pointer;
}

.contact-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--main);
  flex-shrink: 0;
}

.contact-checkbox a {
  color: var(--main);
  text-decoration: underline;
}

.contact-form-submit {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  border: 1px solid var(--main);
  color: var(--main);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  border-radius: 0;
}
.pb_0{
  padding-bottom: 0 !important;
}
.contact-form-submit:hover {
  color: var(--dark);
}

/* Honeypot: für Bots sichtbar im DOM, für Nutzer ausgeblendet */
.contact-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
footer {
  background: var(--main);
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.4;
  font-weight: 300;
}

/* Mobile Menu (Hidden on Desktop) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 2000;
  padding: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--main);
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-nav-links a {
  color: var(--main);
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1060px) {
  .nav-links {
    gap: 20px;
  }
  .logo {
    width: 130px;
    margin: 0 20px;
  }
}

@media (max-width: 1024px) {

  .value-content,
  .chef-content {
    gap: 60px;
  }

  .chef-content {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .events-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 890px) {
  .nav-links {
    display: none; /* Desktop-Links ausblenden */
  }
  
  nav {
    justify-content: space-between;
    padding: 0 30px;
  }
  
  .logo {
    margin: 0;
    width: 120px;
  }
  
  nav.nav-scrolled::before,
  nav.nav-scrolled::after {
    display: none; /* Das umhüllende Balken-Design auf Mobile deaktivieren oder anpassen */
  }
  
  nav.nav-scrolled .logo {
    top: 0;
    margin: 0;
    width: 90px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .mt_200{
    margin-top: 0px !important;
  }
  .hero{
    min-height: 100vh;
  }
  .value-content > * {
    flex: 0 0 100%;
  }

  /* Patisserie & Torten Bild und Text tauschen auf Mobile */
  #torten .value-content {
    flex-direction: column-reverse;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}