/* WILHELM B. 1832 – STYLE (Optimiert & Finalisiert) */

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: #272727;
  background: rgba(182, 146, 46, 0.1);
  line-height: 1.6;
}

/* Elegante Serif-Schrift für alle Überschriften */
h1, h2, h3, h4, h5, h6 {
  font-family: "Markazi Text", serif;
  font-weight: 500;
}

/* Erzwinge Scroll zum Seitenanfang beim Laden */
html:target, body:target {
  scroll-behavior: auto;
}

/* ==================== HILFSKLASSEN ==================== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.btn {
  background: #b6922e;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn:hover { 
  background: #fff;
  color: #b6922e;
  outline: 2px solid #b6922e;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #b6922e; color:#fff; }

/* ==================== DESKTOP-HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: block;
}
.header-wrapper {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-left a {
  color: #272727;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}
.nav-left a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(182, 146, 46, 0.4);
}
.nav-left a:hover { color: #b6922e; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dotted #b6922e;
  margin-top: 45px;
  z-index: 2;
  transition: all 0.3s ease;
}
.logo-badge img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.site-header.scrolled .logo-badge img {
  width: 80px;
  height: 80px;
}

/* ==================== MOBILE-HEADER ==================== */
.header-mobile {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.header-mobile .icon-round {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b6922e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.header-mobile .icon-round:hover { background: #a07b26; }
.header-mobile .icon-round i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  display: block;
}
.header-mobile .logo-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border: 3px dotted #b6922e;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile .logo-badge img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
/* ==================== NEUES HAMBURGER-MENÜ (Einspalt) ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: rgba(182, 146, 46, 0.08);
}

.menu-title {
  font-family: "Markazi Text", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #b6922e;
  letter-spacing: 0.5px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #272727;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.menu-close:hover {
  background: rgba(182, 146, 46, 0.15);
}

.mobile-menu-content-single {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Google Rating oben */
.menu-rating {
  text-align: center;
  padding: 12px;
  background: rgba(182, 146, 46, 0.05);
  border-radius: 10px;
}

.google-rating-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  color: #fbbf24;
}

.rating-text {
  font-size: 0.85rem;
  color: #666;
}

/* Navigation */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #272727;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.menu-nav a i {
  font-size: 22px;
  color: #999;
  transition: color 0.2s ease;
}

.menu-nav a:hover {
  background: rgba(182, 146, 46, 0.08);
}

.menu-nav a:hover i {
  color: #b6922e;
}

.menu-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: rgba(182, 146, 46, 0.7);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.menu-nav a:hover::after {
  opacity: 1;
}

/* Action Icons (3 nebeneinander) */
.menu-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.action-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b6922e;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-icon:hover {
  background: #a07b26;
  transform: scale(1.05);
}

.action-icon i {
  font-size: 28px;
  line-height: 1;
}

/* Social Icons (2 nebeneinander, größer) */
.menu-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
}

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(182, 146, 46, 0.1);
  color: #b6922e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #b6922e;
  color: #fff;
  transform: scale(1.05);
}

.social-icon i {
  font-size: 32px;
  line-height: 1;
}

/* Öffnungszeiten */
.menu-hours {
  padding: 20px;
  background: rgba(182, 146, 46, 0.05);
  border-radius: 10px;
}

.hours-title {
  font-weight: 700;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hours-title i {
  font-size: 16px;
}

.opening-hours {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #272727;
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.opening-hours .day {
  font-weight: 500;
}

.opening-hours .time {
  color: #666;
  text-align: right;
}

.opening-hours .today {
  font-weight: 700;
  color: #b6922e;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.status-badge i {
  font-size: 18px;
}

/* Google Rating Desktop */
.google-rating-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-right: 12px;
}

.google-rating-desktop .rating-stars {
  font-size: 16px;
}

.google-rating-desktop .rating-text {
  font-size: 0.75rem;
  color: #666;
  text-align: right;
}

/* Info-Link Button in About */
.fancy-link {
  color: #b6922e;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dotted rgba(182, 146, 46, 0.6);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fancy-link:hover {
  color: #a07b26;
  border-bottom-color: #a07b26;
}

.fancy-link i {
  font-size: 1em;
  vertical-align: middle;
}

.info-link {
  background: none;
  border: none;
  color: #b6922e;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 2px 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-link:hover {
  background: rgba(182, 146, 46, 0.15);
  transform: scale(1.1);
}

.info-link i {
  line-height: 1;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 86vh;
  overflow: hidden;
  background: #000;
}
.hero-track { 
  display: flex; 
  height: 100%; 
  transition: transform 0.8s ease; 
}
.hero-slide { 
  min-width: 100%; 
  height: 100%; 
  position: relative; 
  overflow: hidden; 
}
.hero-slide img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center;
  position: absolute; 
  left: 0; 
  top: 0;
  animation: kenburnsIn 10s ease-in-out forwards;
}
@keyframes kenburnsIn { 
  0%{transform:scale(1);}
  100%{transform:scale(1.18);} 
}
.hero-overlay {
  position: absolute;
  left: 0; 
  right: 0; 
  bottom: 0;
  padding: 26px 24px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  color: #fff;
}
.hero-title, .hero-desc, .price-badge { 
  opacity: 0; 
  transform: translateY(10px); 
}
.hero-slide.active .hero-title{animation:fadeUp 0.6s 0.5s both;}
.hero-slide.active .hero-desc{animation:fadeUp 0.6s 1s both;}
.hero-slide.active .price-badge{animation:fadeUp 0.6s 1.5s both;}
@keyframes fadeUp { to {opacity:1;transform:none;} }
.hero-title{
  font-size:2.6rem;
  font-weight:500;
  font-family: "Markazi Text", serif;
  letter-spacing: 0.3px;
}
.hero-desc{
  font-size:1.05rem;
  margin-top:6px;
}
.price-badge{
  display:inline-block;
  margin-top:12px;
  padding:6px 14px;
  border-radius:28px;
  background:#b6922e;
  color:#fff;
  font-weight:700;
}
.action-badge {
  position: relative;
  display: inline-block;
  background: #d33;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  animation: pulseGlow 2.5s infinite;
}
.action-badge.flip { 
  animation: rotateYfade 0.6s ease; 
}
@keyframes rotateYfade { 
  0%{transform:rotateY(0);opacity:1;} 
  40%{transform:rotateY(90deg);opacity:.3;} 
  60%{transform:rotateY(90deg);opacity:.3;} 
  100%{transform:rotateY(180deg);opacity:1;} 
}
@keyframes pulseGlow { 
  0%{box-shadow:0 0 0 0 rgba(211,51,51,.6);} 
  70%{box-shadow:0 0 10px 6px rgba(211,51,51,.2);} 
  100%{box-shadow:0 0 0 0 rgba(211,51,51,0);} 
}
#hero-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
#hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 2px solid #b6922e;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
#hero-dots button[aria-current="true"] { 
  background: #b6922e; 
  transform: scale(1.15); 
}
#hero-dots button:hover { background: #b6922e; }

/* ==================== SECTIONS ==================== */
.section{
  padding: 40px 0 48px;
}
.section + .section { 
  padding-top: 40px; 
}
.section-alt{
  background: rgba(182, 146, 46, 0.15);
}

/* H1-Überschriften außerhalb Cards mit zentriertem Unterstrich */
.section h1{
  text-align:center;
  margin-bottom:28px;
  font-size:2.4rem;
  font-weight:500;
  color:#272727;
  position:relative;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.section h1::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  border-radius:2px;
  background:#b6922e;
  margin:10px auto 0;
}

/* H2-Überschriften innerhalb Cards OHNE Unterstrich */
.card h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: #272727;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.card{
  background:#fff;
  border-radius:10px;
  padding:26px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

/* ==================== ÜBER UNS ==================== */
.about-card {
  max-width: 1200px;
  margin: 0 auto;
}

/* Panorama-Bild volle Breite */
.about-panorama {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.about-panorama img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Text-Bereich */
.about-text {
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #272727;
}

/* Slider-Container */
.about-slider-container {
  position: relative;
  margin-top: 24px;
}

.about-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.about-slider::-webkit-scrollbar {
  display: none;
}

.about-slider a {
  flex: 0 0 auto;
  width: calc(25% - 10.5px);
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-slider a:hover {
  transform: scale(1.03);
}

.about-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Slider-Pfeile (nur Desktop) */
.about-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(182, 146, 46, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.about-slider-arrow:hover {
  background: #b6922e;
  transform: translateY(-50%) scale(1.1);
}

.about-prev {
  left: -20px;
}

.about-next {
  right: -20px;
}

/* Mobile: Pfeile ausblenden, mehr Bilder sichtbar */
@media (max-width: 768px) {
  .about-slider-arrow {
    display: none;
  }
  
  .about-slider a {
    width: calc(33.333% - 9.33px);
  }
  
  .about-panorama {
    margin-bottom: 18px;
  }
  
  .about-text {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .about-slider a {
    width: calc(50% - 7px);
  }
}

/* ==================== AKTION ==================== */
#aktion .container { 
  max-width: 1200px; 
}
#aktion h1 { 
  margin-bottom: 24px; 
}
#aktion .aktion-content {
  background:#fff;
  border-radius:10px;
  padding:26px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  max-width:1200px;
  margin:0 auto;
  overflow: visible;
}

/* Layout: 1/3 Bild (Hochformat) – 2/3 Text */
#aktion .aktion-card { 
  padding: 0; 
  display: grid; 
  grid-template-columns: minmax(280px, 1fr) minmax(400px, 2fr); 
  gap: 28px; 
  align-items: start; 
}

/* Aktions-Slider: Hochformat optimiert (900×1200 bzw. 3:4) */
.aktion-slider { 
  position: relative; 
  overflow: hidden; 
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  max-height: 600px;
  width: 100%;
}

.aktion-slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity .45s ease; 
}
.aktion-slide.active { 
  position: relative; 
  opacity: 1; 
}
.aktion-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center;
  display: block; 
  border-radius: 12px;
  cursor: pointer;
}

.aktion-dots { 
  display: flex; 
  justify-content: center; 
  gap: 6px; 
  margin-top: 10px; 
}
.aktion-dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: #ddd; 
  cursor: pointer;
  transition: background .25s ease; 
}
.aktion-dot.active { 
  background: #b6922e; 
}

/* Card-Überschrift H2 innerhalb Aktion - enger Zeilenabstand */
#aktion .aktion-text h2 {
  line-height: 1.2;
}

#aktion .aktion-text p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Reserve-Button unter der Aktion - gleiche Größe wie alle anderen Buttons */
#aktion .reserve-btn{
  display:inline-flex;
  margin-top:1rem;
}

/* ==================== GALERIE ==================== */
.gallery-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-card {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== GUTSCHEINE ==================== */
.gutschein-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  /* GESPIEGELT: Text links (2/3), Bild rechts (1/3) */
  grid-template-columns: minmax(400px, 2fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
}

.gutschein-text {
  padding: 26px;
}

/* H2 in Gutschein ist linksbündig (durch .card h2 gestylt, nicht zentriert) */

.gutschein-text p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #272727;
}

.gutschein-text .btn {
  margin-top: 18px;
}

.gutschein-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  max-height: 600px;
  width: 100%;
}

.gutschein-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .gutschein-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }
  
  .gutschein-text {
    padding: 0;
  }
  
  .gutschein-image {
    max-height: 480px;
  }
}

.gallery-grid{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(5,1fr);
}
.gallery-grid a{
  display:block;
  position:relative;
  border-radius:10px;
  overflow:hidden;
  aspect-ratio:1/1;
  background:#eaeaea;
}
.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.25s ease;
}
.gallery-grid a:hover img{
  transform:scale(1.03);
}

/* ==================== PAGINATION ==================== */
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:28px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.pagination .btn{
  padding:8px 16px;
  font-weight:600;
}
#page-info{
  font-weight:600;
  color:#272727;
}

/* Zahlen-Pagination (zentriert) */
.page-numbers{
  display:flex;
  gap:6px;
  align-items:center;
  justify-content:center;
}
.page-numbers button{
  background:none;
  border:none;
  font:inherit;
  color:#272727;
  padding:6px 10px;
  cursor:pointer;
  border-radius:4px;
  transition:background .2s,color .2s;
}
.page-numbers button.active{
  color:#b6922e;
  text-decoration:underline;
  font-weight:700;
}
.page-numbers button:hover{
  color:#b6922e;
}
.gallery-filler{
  visibility:hidden;
  border-radius:10px;
  aspect-ratio:1/1;
}

/* ==================== KONTAKT ==================== */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:flex-start;
}
.contact-form .grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form input,.contact-form textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  font:inherit;
  background:#fff;
}
.contact-form textarea{
  resize:vertical; 
  margin-top:8px;
  grid-column: 1 / -1;
}

/* ==================== IMPRESSUM + KONTAKT BLOCK ==================== */
#contact { 
  padding: 40px 0 60px; 
  background: rgba(182, 146, 46, 0.1); 
}
.impressum-wrap { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 22px; 
  max-width: 1200px; 
  margin: 0 auto; 
}
.impressum-card, .kontakt-card { 
  background: #fff; 
  border-radius: 10px; 
  padding: 24px 28px; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); 
}
#contact h2 { 
  color: #b6922e; 
  font-size: 1.5rem; 
  margin-bottom: 16px; 
  position: relative;
}
/* Entferne den ::after Unterstrich für diese speziellen h2 */
#contact h2::after {
  display: none;
}
#contact p { 
  margin-bottom: 12px; 
  color: #272727; 
  line-height: 1.6; 
}

/* Kein Umbruch für bestimmte Texte */
.nowrap {
  white-space: nowrap;
}

/* Links im Impressum: KEINE Unterstreichung */
#contact a { 
  color: #272727;
  text-decoration: none; 
}
#contact a:hover { 
  color: #b6922e;
}

/* ==================== FOOTER ==================== */
.site-footer{
  background:#111;
  color:#fff;
  padding:22px 0;
  text-align:center;
}
.footer-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.footer-flex a{
  color:#b6922e;
  text-decoration:none;
}
.footer-flex a:hover{
  text-decoration:underline;
}

/* ==================== MODALS ==================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
  padding-top: 50px;
}
.modal[aria-hidden="false"] {
  opacity:1;
  visibility:visible;
}
.modal__dialog {
  position: relative;
  background:#fff;
  border-radius:10px;
  padding:20px 20px 0;
  max-width:460px;
  width:92%;
  height:calc(100vh - 80px);
  max-height:92vh;
  overflow:hidden;
  transform:translateY(-20px);
  transition:transform 0.3s ease;
  box-shadow:0 5px 25px rgba(0,0,0,0.3);
}
.modal[aria-hidden="false"] .modal__dialog {
  transform:translateY(0);
}

/* Speisekarte-Modal: Schmale Desktop-Ansicht */
.modal--menu {
  max-width: 480px;
  width: 75%;
  height: min(92vh, 900px);
  max-height: 92vh;
  padding: 20px 20px 0;
}

/* Reservierungs-Modal: Etwas breiter */
.modal--reserve {
  max-width: 650px;
  width: 80%;
  height: min(92vh, 900px);
  max-height: 92vh;
  padding: 20px 20px 0;
}

/* iFrame für Reservierung */
.reserve-frame {
  display: block;
  width: calc(100% + 20px);
  height: calc(92vh - 60px);
  border: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
  z-index: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: -20px;
  padding-right: 20px;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
}
.reserve-frame::-webkit-scrollbar { 
  display: none !important; /* Chrome/Safari */
  width: 0 !important;
  height: 0 !important;
}

/* Verstecke Scrollbar auch im iFrame-Inhalt */
.reserve-frame * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.reserve-frame *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.modal__close {
  position:absolute;
  top:10px;
  right:14px;
  background: rgba(0,0,0,0.65);
  border:none;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  color:#fff;
  cursor:pointer;
  line-height:1;
  font-size: 20px;
  z-index: 5;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.modal__close:hover {
  transform:scale(1.06); 
  background: rgba(0,0,0,0.75);
}

/* iFrame: Scrollbar durch Überlappen verstecken */
.menu-frame {
  display: block;
  width: calc(100% + 20px);
  height: calc(92vh - 60px);
  border: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
  z-index: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: -20px;
  padding-right: 20px;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
}
.menu-frame::-webkit-scrollbar { 
  display: none !important; /* Chrome/Safari */
  width: 0 !important;
  height: 0 !important;
}

/* Verstecke Scrollbar auch im iFrame-Inhalt */
.menu-frame * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.menu-frame *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .site-header { 
    display: none !important; 
  }
  .header-mobile { 
    display: flex !important; 
  }
}

@media (max-width: 768px) {
  .section { 
    padding: 36px 0 40px; 
  }
  .section + .section { 
    padding-top: 36px; 
  }
  .section h2 {
    font-size: 2rem;
    font-weight: 500;
  }
  
  /* Aktion: Single Column auf Mobile */
  #aktion .aktion-card { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .aktion-slider {
    max-height: 480px;
  }
  #aktion .aktion-text h1 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
  }
  #aktion .aktion-text h2 {
    line-height: 1.2;
  }
  #aktion .aktion-content { 
    padding: 18px 20px; 
  }
  
  /* Hero Mobile Höhe */
  .hero {
    height: 81vh;
  }
  
  .hero-title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .hero-desc {
    font-weight: 500;
  }
  
  .price-badge {
    font-weight: 600;
  }
  
  .contact-wrap { 
    grid-template-columns: 1fr; 
    gap: 18px; 
  }
  .contact-form .grid { 
    grid-template-columns: 1fr; 
    gap: 14px; 
  }
  .impressum-wrap { 
    grid-template-columns: 1fr; 
    gap: 18px; 
  }
  .modal__dialog, .modal--menu, .modal--reserve { 
    width: 96%; 
    max-width: 96%; 
    max-height: 92vh; 
  }
  
  /* Galerie mobil: 4 Spalten */
  .gallery-grid { 
    grid-template-columns: repeat(4, 1fr); 
  }
  
  /* Footer auf Mobile zentrieren */
  .footer-flex {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* Modal näher am oberen Bildschirmrand */
  .modal {
    padding-top: 20px;
  }
  
  .modal__dialog { 
    width: 96%; 
    max-width: 96%; 
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
  }
  
  /* Speisekarte-Modal: volle Höhe, endet am unteren Bildschirmrand */
  .modal--menu { 
    width: 96%;
    max-width: 96%;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
  }
  
  /* Reservierungs-Modal: volle Höhe */
  .modal--reserve { 
    width: 96%;
    max-width: 96%;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
  }
  
  .menu-frame {
    height: calc(100vh - 100px);
  }
  
  .reserve-frame {
    height: calc(100vh - 100px);
  }
  
  .modal__close { 
    top: 8px; 
    right: 10px; 
  }
}
/* ==================== AKKORDEON ÖFFNUNGSZEITEN ==================== */
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  text-align: left;
}

.accordion-trigger:hover {
  color: #b6922e;
}

.accordion-trigger span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.accordion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-trigger.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.accordion-content.open {
  max-height: 400px;
  margin-top: 10px;
}
/* ==================== HAMBURGER-MENÜ NEU (Einspaltig, Clean) ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: rgba(182, 146, 46, 0.08);
}

.menu-title {
  font-family: "Markazi Text", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #b6922e;
  letter-spacing: 0.5px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #272727;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.menu-close:hover {
  background: rgba(182, 146, 46, 0.15);
}

.mobile-menu-content {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  overflow: hidden;
}

/* Navigation */
.menu-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  flex: 1;
}

/* Google Bewertung kompakt ganz oben */
.menu-rating-compact {
  padding: 10px 14px;
  background: rgba(182, 146, 46, 0.05);
  border-radius: 8px;
  margin-bottom: 14px;
}

.menu-rating-compact .google-rating-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
}

.google-logo {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.menu-rating-compact .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #fbbf24;
}

.menu-rating-compact .rating-stars span {
  color: #272727;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 4px;
}

.menu-rating-compact .rating-text {
  font-size: 0.7rem;
  color: #666;
  margin-left: 4px;
}

/* Menu Items (Navigation + Öffnungszeiten) */
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #272727;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(182, 146, 46, 0.2);
}

.menu-item i {
  font-size: 22px;
  color: #999;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.menu-item:hover {
  background: rgba(182, 146, 46, 0.08);
}

.menu-item:hover i {
  color: #b6922e;
}

/* Akkordeon */
.accordion-trigger {
  justify-content: space-between;
}

.accordion-trigger .accordion-icon {
  font-size: 20px;
  color: #999;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.accordion-trigger.active .accordion-icon {
  transform: rotate(180deg);
  color: #b6922e;
}

.status-badge-inline {
  display: none;
  margin: 8px 14px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  align-items: center;
  gap: 6px;
}

.status-badge-inline.open {
  display: inline-flex;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #272727;
  padding: 0 14px;
}

.accordion-content.open {
  max-height: 1000px;
  padding: 12px 14px 20px;
}

.accordion-content div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.accordion-content .day {
  font-weight: 500;
}

.accordion-content .time {
  color: #666;
  font-size: 0.85rem;
}

.accordion-content .today {
  font-weight: 700;
  color: #b6922e;
}

/* Action Buttons (alle 5 einheitlich: viereckig mit runden Ecken, Gold) */
.menu-actions {
  display: flex;
  gap: 10px;
  padding: 16px 14px;
  justify-content: flex-start;
  border-top: 1px solid rgba(182, 146, 46, 0.2);
  border-bottom: 1px solid rgba(182, 146, 46, 0.2);
  margin-top: 12px;
  flex-wrap: wrap;
}

.icon-btn-square {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b6922e 0%, #a07b26 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(182, 146, 46, 0.2);
}

.icon-btn-square:hover {
  background: linear-gradient(135deg, #a07b26 0%, #8d6920 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(182, 146, 46, 0.4);
}

.icon-btn-square:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(182, 146, 46, 0.3);
}

.icon-btn-square i {
  font-size: 24px;
  color: #fff !important;
}

/* Social Icons (gleicher Style wie Action Buttons) */
.menu-social {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  justify-content: flex-start;
}

.menu-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.menu-social a:hover {
  background: #b6922e;
  transform: scale(1.05);
}

.menu-social a i {
  font-size: 24px;
  color: #fff !important;
}

/* Rechte Spalte leer */
.menu-info {
  display: none;
}

/* Google Rating Desktop */
.google-rating-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-right: 12px;
}

.google-rating-desktop .rating-stars {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fbbf24;
}

.google-rating-desktop .rating-text {
  font-size: 0.75rem;
  color: #666;
  text-align: right;
}

/* ==================== DESKTOP ICON-BUTTONS + ÖFFNUNGSZEITEN ==================== */
.icon-btn-desktop {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b6922e;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-btn-desktop:hover {
  background: #a07b26;
  transform: scale(1.08);
}

.icon-btn-desktop i {
  font-size: 20px;
  color: #fff;
}

.icon-btn-desktop.btn-primary {
  background: #b6922e;
}

/* Öffnungszeiten Dropdown Desktop */
.hours-dropdown-wrapper {
  position: relative;
}

.hours-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 16px 18px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.hours-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.status-badge-desktop {
  display: none;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.status-badge-desktop.open {
  display: inline-flex;
}

.opening-hours-desktop {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #272727;
}

.opening-hours-desktop div {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  gap: 20px;
}

.opening-hours-desktop .day {
  font-weight: 500;
}

.opening-hours-desktop .time {
  color: #666;
  text-align: right;
}

.opening-hours-desktop .today {
  font-weight: 700;
  color: #b6922e;
}
/* ==================== ZWEISPALTIGES MOBILES MENÜ (FINAL) ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-content-split {
  display: grid;
  grid-template-columns: 1fr 1px 120px;
  flex: 1;
  overflow: hidden;
}

/* Linke Spalte */
.menu-left {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertikale Trennlinie */
.menu-divider {
  background: rgba(182, 146, 46, 0.3);
}

/* Rechte Spalte */
.menu-right {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  overflow-y: auto;
  background: rgba(182, 146, 46, 0.03);
}

/* Buttons rechts (untereinander) */
.icon-btn-menu {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b6922e 0%, #a07b26 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(182, 146, 46, 0.2);
  flex-shrink: 0;
}

.icon-btn-menu:hover {
  background: linear-gradient(135deg, #a07b26 0%, #8d6920 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(182, 146, 46, 0.4);
}

.icon-btn-menu i {
  font-size: 26px;
  color: #fff !important;
}

/* Öffnungszeiten kompakt unten */
.hours-compact {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(182, 146, 46, 0.2);
  width: 100%;
}

.hours-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #b6922e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hours-title i {
  font-size: 14px;
}

.hours-list {
  font-size: 0.7rem;
  line-height: 1.6;
  color: #272727;
}

.hours-list div {
  margin-bottom: 4px;
  text-align: center;
}

.hours-list .day {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.hours-list .time {
  color: #666;
  font-size: 0.65rem;
  display: block;
}

.hours-list .today .day {
  color: #b6922e;
}

/* Status Badge */
.status-badge-inline {
  display: none;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.status-badge-inline.open {
  display: inline-flex;
}

.status-badge-inline i {
  font-size: 12px;
}

/* Google Bewertung linksbündig mit Logo */
.menu-rating-compact {
  padding: 10px 14px;
  background: rgba(182, 146, 46, 0.05);
  border-radius: 8px;
  margin-bottom: 14px;
}

.menu-rating-compact .google-rating-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
}

.google-logo {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.menu-rating-compact .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #fbbf24;
}

.menu-rating-compact .rating-stars span {
  color: #272727;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 4px;
}

.menu-rating-compact .rating-text {
  font-size: 0.7rem;
  color: #666;
  margin-left: 4px;
}

/* ==================== ÖFFNUNGSZEITEN LINKS ==================== */
.hours-compact-left {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(182, 146, 46, 0.2);
  width: 100%;
}

.hours-compact-left .hours-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b6922e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hours-compact-left .hours-title i {
  font-size: 16px;
}

.hours-list-left {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #272727;
}

.hours-list-left div {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}

.hours-list-left .day {
  font-weight: 500;
}

.hours-list-left .time {
  color: #666;
  text-align: right;
}

.hours-list-left .today {
  font-weight: 700;
  color: #b6922e;
}

/* ==================== DESKTOP GOOGLE-RATING HORIZONTAL ==================== */
.google-rating-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}

.google-rating-desktop .google-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-rating-desktop .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: #fbbf24;
}

.google-rating-desktop .rating-stars span {
  color: #272727;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 4px;
}

.google-rating-desktop .rating-text {
  font-size: 0.7rem;
  color: #666;
}

/* ==================== GOOGLE MAPS CARD ==================== */
.maps-card {
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
}

.maps-card h2 {
  padding: 25px 30px;
  margin: 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.maps-card h2 i {
  color: #b6922e;
  font-size: 1.6rem;
}

/* VOLLE BREITE */
.maps-wrapper-full {
  width: 100%;
  min-height: 500px;
}

.google-map-full {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #f5f5f5;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .maps-wrapper-full,
  .google-map-full {
    min-height: 400px;
  }
}

/* Google Maps Embed (ohne API) */
.google-map-embed {
  width: 100%;
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.google-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==================== NAVIGATION BUTTONS (AUTO + FUSSGÄNGER) ==================== */
.nav-buttons-divider {
  width: 100%;
  height: 1px;
  background: rgba(182, 146, 46, 0.3);
  margin: 8px 0;
}

.icon-btn-nav {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%) !important;
}

.icon-btn-nav:hover {
  background: linear-gradient(135deg, #357abd 0%, #2868a8 100%) !important;
}

.icon-btn-nav i {
  font-size: 28px !important;
}
/* ==================== DATENSCHUTZ-MODAL ==================== */
.modal--datenschutz {
  max-width: 900px;
  width: 90%;
  height: min(92vh, 900px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.datenschutz-content {
  padding: 20px;
  line-height: 1.7;
  color: #272727;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  /* Scrollbar verstecken aber funktionsfähig lassen */
  scrollbar-width: thin;
  scrollbar-color: rgba(182, 146, 46, 0.3) transparent;
}

.datenschutz-content::-webkit-scrollbar {
  width: 8px;
}

.datenschutz-content::-webkit-scrollbar-track {
  background: transparent;
}

.datenschutz-content::-webkit-scrollbar-thumb {
  background: rgba(182, 146, 46, 0.3);
  border-radius: 4px;
}

.datenschutz-content::-webkit-scrollbar-thumb:hover {
  background: rgba(182, 146, 46, 0.5);
}

.datenschutz-content h1 {
  font-family: 'Markazi Text', serif;
  font-size: 2.5rem;
  color: #b6922e;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.datenschutz-content h2 {
  font-family: 'Markazi Text', serif;
  font-size: 1.8rem;
  color: #b6922e;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.datenschutz-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.datenschutz-content p {
  margin-bottom: 1rem;
}

.datenschutz-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.datenschutz-content li {
  margin-bottom: 0.5rem;
}

.datenschutz-content strong {
  font-weight: 600;
  color: #272727;
}

.datenschutz-content a {
  color: #b6922e;
  text-decoration: none;
  font-weight: 500;
}

.datenschutz-content a:hover {
  text-decoration: underline;
}

.datenschutz-content .info-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #b6922e;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .modal--datenschutz {
    width: 96%;
    max-width: 96%;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
  }
  
  .datenschutz-content {
    padding: 15px;
    /* Wichtig für Mobile: Touch-Scrolling aktivieren */
    -webkit-overflow-scrolling: touch;
  }
  
  .datenschutz-content h1 {
    font-size: 2rem;
  }
  
  .datenschutz-content h2 {
    font-size: 1.5rem;
  }
  
  .datenschutz-content .info-box {
    padding: 1rem;
  }
}

/* ==================== TEXT-LINKS IN ABOUT-SECTION ==================== */
.about-text .text-link {
  color: #b6922e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #b6922e;
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

.about-text .text-link:hover {
  color: #d4a73a;
  border-bottom-color: #d4a73a;
}

.about-text .info-link-bracket {
  color: #666;
  text-decoration: none;
  font-size: 0.95em;
  font-style: italic;
  transition: color 0.2s ease;
}

.about-text .info-link-bracket:hover {
  color: #b6922e;
  text-decoration: underline;
}

/* Altes Icon-Button entfernen (falls noch da) */
.about-text .info-link {
  display: none;
}