/* -----------------------------
   SPECIAL – #inhalt2spalten35
------------------------------ */
#inhalt2spalten35{
  --col1: 2.6;
  --col2: 1.35;

  --content-width: 92%;
  --gap: clamp(5rem, 4vw, 15rem);

  /* Bildgrößen */
  --img-min: 200px;
  --img-max: 260px;

  /* Desktop-Shift */
--img-shift-x: clamp(25px, 6vw, 60px);
  --img-shift-y: clamp(0px, 4vw, 40px); /* jetzt sichtbar */

  padding-block: clamp(200px, 7vw, 350px);

  /* Mobile Bild */
  --img-mobile-max: 450px;
  --img-mobile-width: 90%;

}

/* Basis: Bild immer rechts in der Spalte ausrichten */
#inhalt2spalten35 .spalte2{
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
#inhalt2spalten35 .spalte2 img{
  display: block;

  height: auto;
}
@media (max-width: 1000px){

.inhalt2spalten#inhalt2spalten35{
padding-top:6rem;

}
	.hero .startHintergrund {
background-position: 90% 10%;
background-size:cover;
}
}
@media (min-width: 1351px){
  #inhalt2spalten35 .spalte2 img{
    transform: translateX(var(--img-shift-x));
  }
}

/* =========================================================
   MOBILE – #inhalt2spalten35
   Bild rotiert (90°) + leicht nach RECHTS schieben
   Shift wird ab 700px deaktiviert
========================================================= */

@media (max-width: 1000px){

  #inhalt2spalten35 > .container{
    gap: 0;
    transform: none !important;
  }

  #inhalt2spalten35{
    padding-top: clamp(150px, 8vw, 200px);
        padding-top: 5rem;
    padding-bottom: 2rem;
    overflow-x: hidden;
  }

  #inhalt2spalten35 .spalte2{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* wichtig: Shift nicht wegschneiden */
  }

  /* Safe-Box */
  #inhalt2spalten35 .spalte2 p.rot-img{
    margin: 0;
    width: 100%;
    max-width: 100vw;

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

    line-height: 0;
    font-size: 0;
  }

  /* Bild */
  #inhalt2spalten35 .spalte2 p.rot-img > img{
    --shift-r: clamp(30px, 15vw, 150px); /* Stärke */

    width: min(100%, clamp(100px, 40vw, 260px)) !important;

    min-width: 0 !important;
    max-width: 100% !important;

    height: auto;
    display: block;
    margin: 0;

    /* ✅ VISUELL nach rechts: nach rotate(90deg) => translateY */
    transform: rotate(90deg) translateY(calc(var(--shift-r) * -1));
    transform-origin: center;

    object-fit: contain;
  }
}

/* ✅ Shift unter 700px deaktivieren */
@media (max-width: 700px){
  #inhalt2spalten35 .spalte2 p.rot-img > img{
    --shift-r: 0px;
    transform: rotate(90deg);
  }
}



@media (max-width: 700px){
  #inhalt2spalten35 .spalte2 p.rot-img{
    --shift-r: 0px;
    transform: none;
  }
}












@media (min-width: 900px){
.gridtemplate-1col.slideshow#slideshow56 {
padding-top:100px;

}
}

.gridtemplate-1col.slideshow#slideshow56 .bildspalten {
--gap: 3rem;
--col1: 69%;
--col2: 31%;
display: grid;
grid-template-columns: minmax(0, var(--col1)) minmax(0, var(--col2));
gap: var(--gap);
align-items: start;
width: 100%;
}

.gridtemplate-1col.slideshow#slideshow56 .bildspalten {
  --gap: 3rem;
  --col1: 69%;
  --col2: 31%;

  display: grid;
  grid-template-columns: minmax(0, var(--col1)) minmax(0, var(--col2));
  gap: var(--gap);
  align-items: stretch; /* 🔑 wichtig */
  width: 100%;
}
.gridtemplate-1col.slideshow#slideshow56 .bildspalte .bild{
  height: clamp(360px, 40vw, 620px); /* 👈 gemeinsame Höhe */
  overflow: hidden;
}
.gridtemplate-1col.slideshow#slideshow56 .bildspalte img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 👈 gleich hoch, sauber beschnitten */
  display: block;
}


/* =========================================================
   SPECIAL 3 – Trinken / Weinkarte
   Block: #inhalt2spalten58
========================================================= */

#inhalt2spalten58{
  /* Luft wie im Screenshot */
  padding-block: clamp(140px, 10vw, 260px);

  /* Steuer-Variablen (falls du schnell anpassen willst) */
  --col1: 1.15;                 /* links (Foto+Button) */
  --col2: 0.85;                 /* rechts (Illustration) */
  --gap: clamp(3rem, 6vw, 7rem);

  --img1-max: 560px;            /* Foto links */
  --img2-max: 820px;            /* Illustration rechts */
  --img2-shift-x: clamp(0px, 4vw, 90px); /* Illustration leicht nach rechts */
  --img2-shift-y: clamp(-10px, -1vw, -40px);

  --btn-pad-y: 14px;
  --btn-pad-x: 34px;
  --btn-border: rgba(150, 105, 70, 0.55);
  --btn-color: rgba(150, 105, 70, 0.95);
  --btn-hover-bg: rgba(150, 105, 70, 0.08);
}

/* Grid / 2 Spalten */
#inhalt2spalten58 .container{
  display: grid;
  grid-template-columns: minmax(0, var(--col1)) minmax(0, var(--col2));
  gap: var(--gap);
  align-items: center;
}

/* Spalten: default keine Überraschungen */
#inhalt2spalten58 .spalte{
  min-width: 0;
}
#inhalt2spalten58 .innerspalte{
  min-width: 0;
}

/* =========================================
   SPECIAL 3 – #inhalt2spalten58
   nur Spalten-Layout
========================================= */

#inhalt2spalten58{
  padding-block: clamp(140px, 9vw, 240px);
  padding-top:250px;
}

/* 2 Spalten erzwingen */
#inhalt2spalten58 .container{
  display: grid;
  grid-template-columns: 1fr 1fr; /* nebeneinander */
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Sicherheitsnetz */
#inhalt2spalten58 .spalte{
  min-width: 0;
}

/* ---------------------------------
   Linke Spalte
---------------------------------- */
#inhalt2spalten58 .spalte1{
  display: flex;
  justify-content: right;
}

#inhalt2spalten58 .spalte1 img{
  max-width: 560px;
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width:900px) {
	#inhalt2spalten58 .spalte1 img{
  max-width: 560px;
  width: 80%;
  height: auto;
  display: block;
  left:28.4%;
  position:relative;
}

}
#inhalt2spalten58 .spalte1 .innerspalte {
	text-align:right;
}

/* ---------------------------------
   Rechte Spalte (Illustration)
---------------------------------- */
#inhalt2spalten58 .spalte2{
  display: flex;
  justify-content: flex-end;
  	text-align:right;
}
@media (min-width:900px) {
#inhalt2spalten58 .spalte2 .innerspalte {

width: 80%;

top:-10vh;
position:relative;
} 

}

#inhalt2spalten58 .spalte2 img{
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
}

#inhalt2spalten58 a.button {
margin-top:30px;

}


/* ---------------------------------
   Mobile: untereinander
---------------------------------- */
@media (max-width: 1000px){
  #inhalt2spalten58 .container{
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
  }

.gridtemplate-1col.slideshow#slideshow56 .bildspalten {
--gap: 1em;
--col1: 69%;
--col2: 31%;
display: grid;
grid-template-columns: minmax(0, var(--col1)) minmax(0, var(--col2));
gap: var(--gap);
align-items: stretch;
width: 100%;
height:20vh;
}

#inhalt2spalten58 {
padding-block: clamp(140px, 9vw, 240px);
padding-top: 100px;
padding-bottom: 1rem;
}

.gridtemplate-1col.slideshow#slideshow56 .bildspalte img {
width: 100%;
height: auto;
/* object-fit: cover; */
display: block;
}

.inhalt2spalten#inhalt2spalten58 .innerspalte {
width: 100%;
justify-content: center;
}

#inhalt2spalten58 .spalte1 .innerspalte {
text-align: right;
}

#inhalt2spalten58 .spalte1 {
display: flex;
justify-content: center;
}
  #inhalt2spalten58 .spalte2{
    justify-content: center;
    padding-top:2rem;
  }
  
  #inhalt2spalten58 .spalte2 .innerspalte {

width: 80%;

text-align:right;
position:relative;
} 

#inhalt2spalten58 .spalte2 {
width:100%;
justify-content: flex-end;
}
#inhalt2spalten58 .spalte2 .innerspalte {

}

  #inhalt2spalten58 .spalte2 .innerspalte img {
  width:80%;
  
  }

}


