:root {
    --primary_color: #1E0353;
    --secondary_color: #9c95dc;
    --thirdly_color: #2b609b;
    --fourthly_color: #ca1551;
    --fiftly_color: #f3f0ed;
    background-color: black;
    --font-xs: clamp(12px, 0.72rem + 0.2vw, 14px);
    --font-sm: clamp(14px, 0.82rem + 0.6vw, 18px);
    --font-md: clamp(18px, 1rem + 1.0vw, 24px);
    --font-lg: clamp(26px, 1.2rem + 2.2vw, 40px);
}

a.custom-link:link {
    color: var(--fourthly_color);
}

a.custom-link:visited {
    color: var(--primary_color);
}

h1, h2, h3, h4 {
    font-weight: bold;
    color: var(--secondary_color);
    margin-bottom: 20px;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
  
h1 { font-size: var(--font-lg); color: var(--secondary_color)}
h2 { font-size: var(--font-md); color: var(--secondary_color)}
h3 { font-size: var(--font-sm); color: var(--secondary_color)}
h4 { font-size: var(--font-xs); color: var(--secondary_color)}
  
p {
    font-size: var(--font-sm);
    line-height: 1.6;
    color: var(--fiftly_color);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

button, .btn {
    margin: 10px 20px;
    padding: 10px 20px;
    background-color: var(--fourthly_color);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    animation: slideInFromBelow 2s ease-out;
}

#cta-contact {
    box-shadow: 0 2px 15px rgba(51, 51, 111, 0.8);
}

button:hover, .cta-button:hover {
    box-shadow: 0 0 15px rgba(156, 149, 220, 0.4);
    transform: scale(105%);
}

.button, .btn { /* Pakete Buttons*/
    display: inline-block;
    background: var(--fourthly_color);
    color: var(--fiftly_color);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}
  
.button:hover { /* Pakete Buttons*/
      box-shadow: 0 0 15px rgba(156, 149, 220, 0.4);
      transform: scale(105%);
      opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.5s ease;
  }
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}








* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
  }  

header {
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 5%;
    z-index: 1000;
}

header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(from var(--primary_color) r g b / 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo_main {
  display: block;
  height: auto;
  cursor: pointer;
}

.logo_main:first-child {
margin-right: 10px;
}

nav {
    list-style: none;
    display: inline-block;
    padding: 0px 20px;
    z-index: 100;
}

nav a {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .5s;
    color: var(--fourthly_color);
    text-decoration: none;
    padding: 6px 20px;
}

nav a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-bottom: 2px solid var(--fourthly_color);
    border-radius: 10px;
    transform: scale(0) translateY(50px);
    opacity: 0;
    transition: .5s;
}

nav a:not(:last-child):hover span {
    transform: scale(1) translateY(0px);
    opacity: 1;
}

nav a.active:not(:last-child) span {
    transform: scale(1) translateY(0px);
    opacity: 1;
    transition: all 0.3s ease;
}

nav a:last-child {
    margin-left: 50px;
    padding: 8px 23px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    background: rgb(from var(--fourthly_color) r g b / 1);
    text-align: center;
    color: #cfcfcf;
    transition: 0.3s;
}

nav a:last-child:hover {
    background: rgb(from var(--secondary_color) r g b / 0.8);
}

#check-menu {
    display: none;
}

.icons {
    position: absolute;
    font-size: 2.8rem;
    color: rgb(from var(--fourthly_color) r g b);
    cursor: pointer;
    display: none;
}


/* Footer */

.footer_body {
    display: flex;
    justify-content: center;
    gap: clamp(5rem, calc(7% + 1rem), 10rem);
    background-image: url(/images/header_footer/footer_background.webp);
    background-size: 1900px;
    background-position: top center;
    background-repeat: repeat-x;
    margin-top: -150px;
}

#footer_second h2, #footer_fourth h2 {
    color: var(--thirdly_color);
    font-size: clamp(22px, 4vw, 28px);
    text-align: center;
    margin-bottom: 30px;
}

#footer_first, #footer_second, #footer_fourth {
    margin-top: 350px;
}

#footer_first {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer_first img {
    position: relative;
    z-index: 2;
}

#footer_first h2 {
    color: var(--thirdly_color);
    font-size: clamp(14px, 2vw, 16px);
    margin-top: auto;
    margin-bottom: 0;    
}

#footer_first h3 {
    color: var(--thirdly_color);
    margin-top: 10px;
    font-size: clamp(12px, 1.5vw, 14px);
}

.footer_body h3 {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--fourthly_color);
    transition: 0.1s;
}

.footer_body h3:hover {
    color: var(--secondary_color);
}

.footer_body a {
    text-decoration: none;
    color: var(--fourthly_color);
    text-align: center;
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer_body a:hover {
    text-decoration: none;
    color: var(--secondary_color);
}

#footer_fourth {
    flex-direction: row;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links h3 {
    margin-bottom: 0;
}

.footer-links a {
    width: fit-content;
}


.footer-links a:hover h3 {
  color: var(--secondary_color);
}










/* Breakpoints */

@media only screen and (max-width: 1100px) and (min-width: 601px) {
    .icons {
        display: inline-flex;
        right: 5%;
    }

    #check-menu:checked~.icons #menu-icon{
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check-menu:checked~.icons #close-icon{
        display: block;
    }

    nav { /* oberen Header, immer ersichtlich */
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 100%;
        left: 0;
        height: 0;
        width: 100%;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check-menu:checked~nav{ /* pop up menü, nur ersichtlich beim klicken des menü icons */
        height: 26rem;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    nav a {
        display: block;
        margin: 15px 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check-menu:checked~nav a {
        transform: translateY(0px);
        opacity: 1;
        transition-delay: calc(.10s * var(--i));
    }
    
    nav a:hover span {
    display: none;;
    }

    nav a:last-child {
        margin: 0 150px;
    }



}

@media only screen and (max-width: 860px) {
    .footer_body {
        flex-flow: column-reverse;
        gap: 50px;
        background-image: 
            url(/images/header_footer/footer_background.webp),
            linear-gradient(to bottom, transparent 0%, black 50%);
    }

    #footer_first img{
        padding-bottom: 100px;
    }

    #footer_first, #footer_second {
        margin: 0;
    }

    #footer_fourth {
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 350px;
    }

    #footer_fourth h2 {
        margin-bottom: 40px;
    }

    .footer-links {
        display: flex;
        justify-content: space-around;
        width: 70%;
    }

    #footer_fourth a {
        flex: 1 1 45%;
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    header {
        padding: 15px 10%;
    }
    .icons {
        display: inline-flex;
        right: 10%;
    }

    #check-menu:checked~.icons #menu-icon{
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check-menu:checked~.icons #close-icon{
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        height: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.21);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }
    
    #check-menu:checked~nav{
        height: 28rem;
        background: rgba(0, 0, 0, 0.51);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    nav a {
        display: block;
        margin: 25px 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
        font-size: 24px;
        font-weight: 600;
    }

    #check-menu:checked~nav a {
        transform: translateY(0px);
        opacity: 1;
        transition-delay: calc(.10s * var(--i));
    }
    
    nav a:hover span {
        display: none;
    }

    nav a:last-child {
        margin: 0 auto;
        width: fit-content;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}








  
body {
    margin: 0 ;
    position: relative;
    background: linear-gradient(to bottom, rgb(35, 35, 38), rgb(35, 35, 38) 20%, var(--primary_color) 60%, var(--thirdly_color) 65%, var(--thirdly_color) 90%, black 98%);
}

#Hero {
    height: 100vh;
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
    z-index: 1;
}

#hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

#hero-infos {
    padding-left: clamp(10px, 5%, 80px);
    margin-top: 230px;
    text-align: left;
    width: 40%;
}

#group-hero {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 5px;
}

#Hero h1 {
    color: var(--fiftly_color);
    text-shadow: 
    0 0 10px var(--fourthly_color),  /* Subtiler weisser Schimmer */
    0 0 15px rgba(255, 255, 255, 0.3);
    margin: 0; 
    font-size: 35px;
    letter-spacing: 5px;
}

#Hero h2 {
    color: var(--secondary_color);
    margin-top: 10px; 
    margin-bottom: 30px;
}

#hero-infos a {
    text-decoration: none;
}

#more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#page {
    padding: 80px 5%;
    max-width: 1500px;
    margin: 0 auto;
}

#about {
    display: flex;
    justify-content: center;
    background: none;
  }
  
.about-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
  
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
  
.about-text {
    flex: 1;
    text-align: center;
}

/* ==== dein Grid bleibt ==== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: clamp(10px, 5vw, 50px);
  width: 100%;
  max-width: 800px;
  margin: 60px auto;
}

.info-cards .bg-italian {
  grid-column: 1 / -1;
}

/* ==== Basis-Karte ==== */
.info-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

/* ==== Flip wie im Beispiel ==== */
.info-card.flip {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: visible;
}

/* Vorder- und Rückseite */
.info-card.flip > .card-front,
.info-card.flip > .card-back {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: transform .8s cubic-bezier(.175, .885, .32, 1.275), opacity .8s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

/* FRONT */
.info-card.flip > .card-front {
  transform: rotateY(0deg);
  z-index: 2;
}

/* BACK */
.info-card.flip > .card-back {
  transform: rotateY(-180deg);
  opacity: 0;
  background: rgba(5, 5, 18, 0.95);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1rem 1.2rem;
  color: #fff;
}

/* Hover -> flippen wie im Beispiel */
.info-card.flip:hover > .card-front {
  transform: rotateY(180deg);
}

.info-card.flip:hover > .card-back {
  transform: rotateY(0deg);
  opacity: 1;
}

/* ==== dein Overlay auf der Front ==== */
.info-card.flip .card-front .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 35%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  color: #fff;
  z-index: 3;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ==== Bilder je Karte auf FRONT legen ==== */
.info-card.flip.bg-club > .card-front {
  background-image: url('/images/index/basic-dj.webp');
}
.info-card.flip.bg-school > .card-front {
  background-image: url('/images/index/school.webp');
}
.info-card.flip.bg-firma > .card-front {
  background-image: url('/images/index/leazza6.webp');
}
.info-card.flip.bg-private > .card-front {
  background-image: url('/images/index/leazza2.webp');
}
.info-card.flip.bg-italian > .card-front {
  background-image: url('/images/music/italian-cover.webp');
}

/* ===== Rückseite Content ===== */
.info-card.flip .card-back h4 {
  font-size: 1.05rem;
  margin: 0;
}

.info-card.flip .card-back p {
  font-size: .9rem;
  line-height: 1.35;
}

.info-card.flip .card-back .card-link {
  margin-top: auto;
  align-self: flex-start;
  background: rgba(255,255,255,.12);
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: .8rem;
}

.testimonials {
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    max-width: 2000px;
    height: fit-content;
    z-index: 1;
}

#testimonial-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

#testimonial1, #testimonial2 {
    flex: 1;
    width: 40%;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

#testimonial1:hover, #testimonial2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(85, 31, 135, 0.37);
    transition: 0.2s;
}

#quote1, #quote2 {
font-size: clamp(16px, 2vw, 18px);
line-height: 1.6;
margin-bottom: 15px;
font-style: italic;
color: #fff;
border-bottom: 1px solid rgb(from var(--fourthly_color) r g b / 0.5);
padding-bottom: 20px;
}

#event-type1, #event-type2 {
font-size: clamp(18px, 2vw, 20px);
color: #ddd;
display: block;
padding-left: 10px;
border-left: 3px solid rgb(from var(--fourthly_color) r g b / 0.5);
}


.pricing-simple {
    color: white;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    height: fit-content;
    z-index: 1;
}

.pricing-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}

.pricing-card {
    display: flex;
    justify-content: flex-start;
    max-width: clamp(300px, 20vw, 360px);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease-in-out;
  }
  
  .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-content .price {
    font-size: clamp(18px, 2.2vw, 20px);
    font-weight: bold;
    color: var(--fourthly_color);
    text-align: center;
    margin: 10px 0;
  }
  
  .card-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
  }

.pricing-card-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeInTag 0.7s ease forwards;
    animation-delay: 0.1s;
    width: 200px;
}

@keyframes fadeInTag {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(-30px) scale(80%);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(100%);
    }
  }

.pricing-card.highlight {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    animation: glowPulse 3s ease-in-out infinite;
  }

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.4),
                    0 0 20px rgba(255, 0, 255, 0.3),
                    0 0 30px rgba(255, 0, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8),
                    0 0 40px rgba(255, 0, 255, 0.6),
                    0 0 60px rgba(255, 0, 255, 0.4);
    }
}

.footnotes {
    margin-top: 30px;
}



.carousel-nav.prev { display: none}
.carousel-nav.next { display: none}

.carousel-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 200ms ease;
}


/* ===== Vollbild‐Container ===== */
.container {
  width: 100vw;                     
  padding: 0;
  box-sizing: border-box;
}

/* ===== Haupt‐Slider ===== */
.gallery-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ===== Bilder‐Track (Slick) ===== */
.gallery-slider__images {
  position: relative;       /* hier beziehen sich die absoluten Pfeile drauf */
  margin-bottom: 20px;
}

.gallery-slider__images .item {
  flex: 0 0 100vw;          /* jede Slide = volle Viewport-Breite */
  box-sizing: border-box;
  display: flex !important; /* zentriert den Inhalt */
  justify-content: center;
  align-items: center;
  height: calc(100vw * 9 / 16); /* fixe 16:9-Höhe */
  max-height: calc(1500px * 9 / 16);
  background-color: #000000bd;
}

.gallery-slider__images .img-fill {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slider__images .img-fill img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* füllt Container komplett */
  display: block;
}

/* Portrait-Bilder bleiben proportional und zentriert */
.gallery-slider__images .img-fill img.portrait {
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* ===== Pfeile ===== */
.slick-arrow {
  position: absolute;
  top: 50%;                 /* exakt mittig in der Bildbox */
  transform: translateY(-50%);
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  z-index: 10;
  opacity: 1 !important;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-slider__images .prev-arrow { left: 10px; }
.gallery-slider__images .next-arrow { right: 10px; }

.slick-arrow:hover {
  transform: translateY(-50%) scale(1.2);
}

/* ===== Slick‐Defaults zurücksetzen ===== */
.slick-slider { margin: 0; }
.slick-slide  {outline: none}

/* Punkte unter Bild*/
.slick-dots {
    position: absolute;
    bottom: -35px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
/* Entfernt Font-Icon und nutzt CSS-Kreise */
.slick-dots li {
    display: inline-block;
    margin: 0 -20px;
    padding: 0;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 48px;           /* Klickfläche */
    height: 48px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    position: relative;
}

.slick-dots li button::before {
    content: "";
    display: block;
    width: 6px;           /* Kreisgröße */
    height: 6px;
    margin: auto;
    background-color: black;
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slick-dots li.slick-active button::before {
    opacity: 0.75;
    transform: scale(1.2);
}

.slick-dots li button:hover::before {
    opacity: 0.5;
}

.slick-dots button:hover {
    box-shadow: none;
    transform: none;
}

#bodyfooter {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin: 0 auto;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

#caller {
    font-size: clamp(24px, 3vw, 35px);
    color: var(--secondary_color);
    text-align: center;
}

#caller::after {
    content: "";
    border-bottom: 2px solid rgb(from var(--secondary_color) r g b / 1);
    width: 80%;
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
}

.cta-button {
    font-size: 1.8rem;
    border-radius: 15px;
    font-weight: 550;
    display: inline-block;
    padding: 12px 20px;
    background: var(--fourthly_color);
    color: white;
    text-decoration: none;
    min-width: 48px;
    min-height: 48px;
    transition: 0.3s;
  }
  
@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1150px) and (min-width: 601px) {

    #hero-infos {
        width: 50%;
    }

    .info-card:hover {
        transform: none;
    }

    .testimonials {
        height: fit-content;
    }
}

@media only screen and (max-width: 1100px) {
  /* Viewport */
  .carousel-container {
    position: relative;
    touch-action: pan-y;
  }

  /* Track: horizontaler Streifen, der geschoben wird */
  .pricing-wrapper {
    display: flex;
    flex-wrap: nowrap;    /* wichtig: kein Wrap */
    gap: 0;               /* kein Gap zwischen Slides, sonst ruckelt die Breite */
    transform: translateX(0);                /* JS schiebt hier */
    transition: transform 420ms ease;        /* smooth Slide */
    will-change: transform;
    height: 650px;
    overflow: visible;
    pointer-events: auto;
    touch-action: pan-y;
  }

  /* Slides: genau 100% Viewportbreite */
  .pricing-wrapper .slide {
    position: relative;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    opacity: 0.9;                           /* leichter Opacity Effekt */
    transition: opacity 260ms ease;
  }
  .pricing-wrapper .slide.active {
    opacity: 1;
  }

  /* Karten zentriert halten */
  .slide .pricing-card,
  .slide .pricing-card.highlight {
    width: 90%;
  }

  /* Pfeile einblenden */
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    text-decoration: none;
    z-index: 5;
    padding: 0 12px;
    user-select: none;
  }
  .carousel-nav.prev { display: block; left: 0; }
  .carousel-nav.next { display: block; right: 0; }

  /* Tag Position im Mobile */
  .popular-tag { 
    top: -10px;
 }
}


/* Breakpoints Phone */
@media only screen and (max-width: 600px) {
    body {
        margin: 0;
        position: relative;
    }

    #hero-infos {
        width: 100%;
        margin-right: 100px;
    }

    .info-card:hover {
        transform: none;
    }

    .testimonials {
        height: fit-content;
    }

    #testimonial-container {
        flex-direction: column;
        padding: 0;
        align-items: center;
        gap: 40px;
    }

    #testimonial1,     #testimonial2 {
        width: 90%;
    }

    .gallery-slider__images .item {
        height: 70vh;       /* nutzt 80% der Viewport-Höhe */
        max-height: none;   /* keine Begrenzung von oben */
        touch-action: pan-y;
        overscroll-behavior: contain;
    }

    .gallery-slider__images .img-fill img {
        object-fit: contain; /* Bild bleibt komplett sichtbar */
        height: 100%;
        width: auto;         /* Breite anpassen, damit Portraits nicht gestreckt werden */
    }

    .pfeil {
        margin-left: 20px;
        margin-right: 20px;
    }

    #bodyfooter {
        width: 90vw;
    }
}