@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Playwrite+CL:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Playwrite+CL:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Playwrite+CL:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Island+Moments&display=swap');

/* General Reset */
:root {
    --primary-color: #01b3a7;
    --secondary-color: #4a90e2;
    --third-color: #2A5C7D;
    --background-dark: #0a0b1e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --dark2: #333333;
    --dark1: #4b4b4b;
    --dark3: #313131;
    --beige-1: rgb(231, 222, 204);
    --beige-2: rgb(210, 200, 182);
    --beige-2-5: #d8c9b1;
    --beige-3: rgb(211, 171, 102);
    --gold-1: rgb(154, 131, 37);
    --gold-2: rgb(204, 176, 47);
    --gold-3: rgb(66, 58, 3);
    --brown-2: rgb(133, 82, 2);
    --brown-4: rgb(49, 32, 0);
    --beige-5: rgb(51, 32, 0);

    --linear1: linear-gradient(to bottom, transparent 0%, var(--beige-1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Julius Sans One", serif;
    font-style: normal;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 1.25;
    overflow-x: hidden;
    max-width: 100dvw;
    scroll-behavior: smooth;
}

.font-0 {
    font-family: "Julius Sans One", serif;
}
.font-1 {
    font-family: "Montserrat", sans-serif, Arial, sans-serif;
}
/*peru font*/
.font-2 {
    font-family: "Corinthia", cursive;
}
/*handwrite font*/
.font-3 {
    font-family: "Playwrite CL", cursive;
}
.font-4 {
        font-family: "Island Moments", serif;
        font-weight: 400;
        font-style: normal;
}
.fs-0 {
    font-size: 1.24rem;
    font-weight: 200;
}
.fs-1 {
    font-size: 1.6rem;
    font-weight: 200;
}
.fs-2 {
    font-size: 2rem;
    font-weight: 200;
}
.fs-25 {
    font-size: 2.48rem;
    font-weight: 200;
}
.fs-3 {
    font-size: 3rem;
    font-weight: 200;
}
.fs-4 {
    font-size: 6rem;
    font-weight: 200;
}
.fs-5 {
    font-size: 6rem;
    font-weight: 200;
}
.fs-lang-mobil {
    font-size: 2rem;
    font-weight: 300;
}
.pt-custom1 {
    padding-top: 2rem;
}
.pt-custom2 {
    padding-top: 4rem;
}
.pt-custom3 {
    padding: 8rem .8rem 0;
}
.pl3-m0 {
    padding-left: 3rem;
}
.pth {
    padding-top: 10rem;
}
.p0408 {
    padding: .4rem .8rem;
}
.color-dark {
    color: #282828;
}
.color-white {
    color: #efefef;
    text-decoration: none;
    transition: all .2s ease;
}
.color-white:hover, .color-white:hover {
    color: #ffffff;
}
.color-light {
    color: #adadad;
    text-decoration: none;
    transition: all .2s ease;
}
.color-light:hover, .color-light:hover {
    color: #e1e1e1;
}
.simple-button {
    padding: 1.2rem 2rem;
    border: solid 1px #1a1a1a;
    background: rgba(0, 0, 0, 0);
    color: #1a1a1a;
    transition: all .2s ease;
}
.simple-button:hover, .simple-button:focus {
    padding: 1.2rem 2rem;
    background: #1a1a1a;
    color: #ececec;
    border: solid 1px #1a1a1a;
}
.mobile-hidden {
    display: block;
}
.mw100 {
    max-width: 128%;
}
.ptmobile {
    padding-top: 3.2rem;
}
.bor {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--third-color);
    transition: all .2s;
}
.bor:hover, .bor:focus {
    transform: scale(1.2);
}

/*****************************************************************************************************************************************/
/* Grundposition im Slider */
#flamingo-container{
    position:absolute;              /* bleibt im Slide verankert … */
    left:9%; bottom:15%;
    cursor:pointer;
    transition:transform .4s ease, top .4s ease, left .4s ease;
    z-index:50;                     /* über Slide-Bild legen */
}
#flamingo-container img{ width:100%; height:auto; }

 Wird beim Scrollen hinzugefügt → Flamingo „fliegt mit“
.flamingo-fixed{
    position:fixed !important;      /* aus dem Slider lösen  */
    left:2%;
    width:140px; transform:rotate(-3deg) scale(.9);
    pointer-events:auto;
}

/* Sprechblase */
.speech-bubble{
    display:none;
    position:absolute; left:110%; top:-50px;
    max-width:220px;
    padding:12px 16px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
    font-size:.9rem; color:#333;
    line-height:1.3;
}
#flamingo-container.show-bubble .speech-bubble{
    display:block;
    animation:bubbleIn .25s cubic-bezier(.2,.8,.4,1);
}
@keyframes bubbleIn{
    0%{transform:scale(.5);opacity:0;}
    100%{transform:scale(1);opacity:1;}
}
/* 2) CSS (am besten in dein Haupt-Stylesheet) */
.fixed-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    background-color: var(--third-color);           /* Brand-Farbton anpassen */
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    animation: pulse 3s infinite;
    z-index: 9900;
}

/* sanfte Puls-Animation */
@keyframes pulse {
    0%   { transform: scale(1);   }
    50%  { transform: scale(1.05);}
    100% { transform: scale(1);   }
}

/* Accessibility: Redux für Bewegungs-Empfindliche */
@media (prefers-reduced-motion: reduce) {
    .fixed-button {
        animation: none;
        transition: none;
    }
}

/* Hover/Focus-Effekt */
.fixed-button:hover,
.fixed-button:focus {
    background-color: #fff;           /* Brand-Farbton anpassen */
    color: var(--third-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.hero {
    top: 0;
    height: 100vh; /* Füllt den sichtbaren Bildschirm */
    overflow: hidden; /* Verhindert Inhalte außerhalb der Hero-Section */
    position: relative;
    background: linear-gradient(45deg, rgb(19, 19, 19) 0%, rgb(38, 38, 38) 100%);
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(.9); /* Leichter Start-Zoom */
    transition: all 1.5s ease-in-out; /* Smoothes Morphing */
}
.slide.active {
    opacity: 1;
    transform: scale(1); /* Subtiles Zoom-In */
    z-index: 1;
}
.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Video-Hintergrund */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Damit das Video hinter dem Inhalt liegt */
}
.text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0; /* Start hidden */
    z-index: 2;
    max-width: 40%;
    text-align: left;
}
.text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: left;
}
.text p {
    text-align: left;
    font-size: 1.5rem;
}
.dlb {
    color: dodgerblue;
    transition: all .2s ease;
}
.dlb:hover, .dlb:focus {
    color: #002446;
}
/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.73);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(14, 14, 14, 0.96);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.nav-arrow.left {
    left: 1rem;
}

.nav-arrow.right {
    right: 1rem;
}

/* Paginators */
.paginators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.paginator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paginator:hover {
    transform: scale(1.3); /* Vergrößert beim Hover */
    background-color: rgba(255, 255, 255, 0.8); /* Heller beim Hover */
}

.paginator.active {
    background-color: #fff;
    transform: scale(1.5); /* Größer für aktiven Paginator */
}
/*HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- HERO END --- */
.boxx {
    /*border-radius: 0px;*/
    box-shadow: rgba(0, 0, 0, 0.45) 0px 2px 5px;
    transition: all .2s ease;
}
.boxx:hover, .boxx:focus {
    /*border-radius: 0px;*/
    box-shadow: rgba(0, 0, 0, 0.45) 0px 1px 1px;
}
.blurr {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(8.9px);
    border-radius: 8px;
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
}
.blurr-2 {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.85);
}
.blurr-3 {
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(8.9px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.85);
}
.blurr-4 {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border-radius: 8px;
}

#abschnitt-webseite span {
    /*text-transform: uppercase;*/
}
.button-4 {
    padding: 1rem 2rem;
    background: #2f2f2f;
    color: #01b3a7;
}
.button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    cursor: pointer;
}
/* Shadow layer */
.button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* Edge layer */
.button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
            to left,
            hsl(217, 33%, 16%) 0%,
            hsl(217, 33%, 32%) 8%,
            hsl(217, 33%, 32%) 92%,
            hsl(217, 33%, 16%) 100%
    );
}

/* Front layer */
.button .front {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1.25rem;
    color: white;
    background: hsl(217, 33%, 17%);
    border-radius: 8px;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* Hover and active states */
.button:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

/* Disable text selection */
.button .front span {
    user-select: none;
}

.button-secondary {
    color: #ffffff;
    background-color: #796153;
    border: 1px solid #332822;
    transition: all .2s ease;
    padding: 1rem 2rem;
    border-radius: 8px;
}
.button-secondary:hover, .button-secondary:focus {
    color: #796153;
    background-color: #ffffff;
}
html .group-md > * {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 17px;
    /*margin-left: 17px;*/
}
.flenter {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    /*min-width: 1200px;*/
}
.flexx {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.gap1 {
    gap: 1rem;
}
html .group-middle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.important {
    background-color: var(--beige-1);
    padding: 15px;
    border-left: 4px solid var(--beige-3);
    /*border-left: 4px solid #ffc107;*/
    margin: 20px 0;
}
.important-2 {
    background-color: #ffe8d5;
    padding: 15px;
    border-left: 4px solid var(--beige-3);
    /*border-left: 4px solid #ffc107;*/
    margin: 20px 0;
}
.warning {
    color: #dc3545;
    font-weight: bold;
    background-color: #ffe5e5;
    padding: 15px;
    border-left: 4px solid #ff0707;
    margin: 20px 0;
}

.positive-box {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    padding: 15px;
    margin: 20px 0;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

#svg-container {
    width: 100dvw;
    padding: 0 .6rem;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
/* Grundlegendes Styling */
/*
.map-container {
    position: relative;
    width: 100%;
    max-width: 800px; !* An Bildschirmgröße anpassen *!
    margin: auto;
}
.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    display: none;
    pointer-events: none;
    font-size: 14px;
    z-index: 10;
}
#peru-map {
    width: 100%;
    height: auto;
    max-width: 800px;
}
#peru-map path:hover {
    fill: #00aaff; !* Farbe bei Hover ändern *!
    cursor: pointer;
}
#svg-container svg path {
    fill: #e5e5e5; !* Einheitliche Grundfarbe für die Karte *!
    cursor: pointer;
    transition: fill 0.3s ease;
}
#svg-container svg path:hover {
    fill: #3399FF; !* Hover-Farbe *!
}*/
.reiseschutz {
    display: flex;
}
.service-badge {
    border: 2px solid var(--beige-2);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
}
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20vh;
    margin-bottom: 270px; /* Platz für den Footer */
}

.hidden {
    display: none; /* Versteckt die Wolke nach der Animation */
}

.container-card {
    padding: 40px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100dvw;
}
.title {
    font-size: 24px;
    font-weight: 700;
    color: #5d4037;
    text-align: center;
}
.card-wrap {
    /*padding-left: 2rem;*/
    margin: 10px;
    transform: perspective(800px);
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-wrap:hover .card-info {
    transform: translateY(0);
}

.card-wrap:hover .card-info p {
    opacity: 1;
}

.card-wrap:hover .card-info,
.card-wrap:hover .card-info p {
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-wrap:hover .card-info:after {
    transition: 5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    transform: translateY(0);
}

.card-wrap:hover .card-bg {
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.8;
}

.card-wrap:hover .card {
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 2s cubic-bezier(0.23, 1, 0.32, 1);
    /*box-shadow: rgba(255, 255, 255, 0.2) 0 0 40px 5px, white 0 0 0 1px, rgba(0, 0, 0, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset white 0 0 0 6px;*/
}

.card {
    position: relative;
    flex: 0 0 240px;
    width: 240px;
    height: 320px;
    background-color: #333;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset rgba(255, 255, 255, 0.5) 0 0 0 6px;
    transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.card-bg {
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140%;
    height: 140%;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    pointer-events: none;
}

.card-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    color: #fff;
    transform: translateY(40%);
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-info p {
    opacity: 0;
    text-shadow: black 0 2px 3px;
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-info * {
    position: relative;
    z-index: 1;
}

.card-info:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    background-blend-mode: overlay;
    opacity: 0;
    transform: translateY(100%);
    transition: 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.card-info h1 {
    font-size: 36px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.5) 0 10px 10px;
}
/* Parallax-Hintergrund */
.background-pattern {
    position: fixed;
    top: -6dvh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('./../assets/landing/xxc.png'); /* Ersetze mit deinem SVG/PNG */
    background-size: cover; /* Passe die Größe des Musters an */
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*background: #d8c9b1;*/
    opacity: 0.2; /* Reduziert die Sichtbarkeit für einen dezenten Effekt */
    z-index: -1; /* Stellt sicher, dass es hinter dem Hauptinhalt bleibt */
}
/*GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - GALLERY - */
.section-gallery {
    padding: 4rem 0;
    background-color: var(--beige-1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(342px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 320px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom-Effekt */
}
/* Filter-Buttons Styling */
.country-filter {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2A5C7D;
    background: transparent;
    color: #2A5C7D;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 999;
}
.filter-btn:hover, .filter-btn:focus,
.filter-btn.active {
    background: #2A5C7D;
    color: white;
}
.filter-btn2 {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2A5C7D;
    background: #2A5C7D;
    color: white;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 999;
}
.filter-btn2:hover, .filter-btn2:focus,
.filter-btn2.active {
    color: #2A5C7D;
    background: transparent;
}

/* Gallery Transition */
.gallery-grid {
    transition: opacity 0.3s ease;
}

.gallery-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.text-overlay {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    /*background: rgba(0, 0, 0, 0.5); !* Halbtransparenter Hintergrund *!*/
    padding: 10px 0;
    z-index: 2;
    transition: opacity 0.3s ease; /* Optional: sanftes Ein- und Ausblenden */
}
.text-overlay.top {
    top: 20px; /* Text am oberen Rand */
}

.text-overlay.bottom {
    bottom: 0; /* Text am unteren Rand */
}

.gallery-item:hover .text-overlay {
    opacity: 0; /* Text wird beim Hover ausgeblendet */
}
.divider {
    border: 1px solid white;
    width: 22%;
    margin: 2px auto;"
}
.divider-2 {
    border: 1px solid white;
    width: 36%;
    margin: .6rem auto;
}
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparente Überlagerung */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.daNichtDa {
    opacity: 1;
    transition: all .2s ease;
}
.daNichtDa:hover, .daNichtDa:focus {
    opacity: 0;
}
.parallax-image {
    position: relative;
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    .parallax-image {
        background-attachment: scroll;
    }
}
/* Optionales Styling für die Section auf deiner Seite */
.section-guestbook { padding: 2rem 0; background:#f7f9fb; }
.section-guestbook h2 { text-align:center; margin-bottom:1rem; }
.padding-highlight {
    padding-left: 13rem
}
.fa-circle-check {
    color: #987e32;
    padding-right: .6rem;
}
/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--blue-1), #00a1e0);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(100px);
    z-index: 9100;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: linear-gradient(45deg, var(--beige-2), var(--beige-3));
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
/*footer - foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooter*/
.footer-puffer {
    height: 100dvh;
}
footer {
    background: #333333; /* Hintergrundfarbe */
    color: #fff; /* Standardfarbe für Text */
    width: 100dvw;
    position: fixed; /* Fixiert am unteren Bildschirmrand */
    bottom: 0;
    z-index: 10;
    height: 402px;
    display: flex;
    flex-direction: column; /* Inhalt vertikal anordnen */
    align-items: center;
    justify-content: center;
    opacity: 0; /* Standardmäßig unsichtbar */
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    overflow: hidden; /* Verhindert, dass Inhalte herausragen */
}

footer.visible {
    opacity: 1; /* Sichtbar machen */
    transform: translateY(0); /* In Position schieben */
}

footer .content-2 {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

footer .logo {
    /*background: #444;*/
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 20px auto -30px auto; /* Zentriert und mit Abstand nach unten */
}

footer nav {
    margin: 20px 0;
}

footer nav ul {
    list-style: none; /* Keine Aufzählungszeichen */
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Abstand zwischen den Elementen */
}

footer nav ul li {
    width: 50px;
    height: 10px;
    background: #555;
    border-radius: 0px;
    list-style: none;
}
footer ul li {
    list-style: none;
}

footer .footer-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap; /* Zeilenumbruch bei kleinen Bildschirmen */
    justify-content: center;
    gap: 15px; /* Abstand zwischen Links */
}
footer .footer-links-2 {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap; /* Zeilenumbruch bei kleinen Bildschirmen */
    justify-content: center;
    gap: 15px; /* Abstand zwischen Links */
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: var(--gold-1); /* Hover-Effekt */
}
.icon {
    font-size: 1.5rem;
    color: var(--third-color);
    min-width: 30px;
}
/*footer - foooooooooooooooooooooter END - foooooooooooooooooooooter END - foooooooooooooooooooooter END - foooooooooooooooooooooter END - */
.post-minimal-2-title a {
    color: var(--beige-1);
    transition: all .2s ease;
}
.post-minimal-2-title a:hover, .post-minimal-2-title:focus {
    color: var(--gold-1);
}
.list-custom-2 li a{
    color: var(--beige-1);
    transition: all .2s ease;
}
.list-custom-2 li a:hover, .list-custom-2 li a:focus {
    color: var(--gold-1);
}
.jif {
    color: var(--secondary-color);
    transition: all .2s ease;
}
.jif:hover, .jif:focus {
    color: var(--gold-1);
    transform: scale(1.1);
}

section:last-child {
    margin-bottom: 100px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
.arrow {
    position: fixed;
    bottom: 50px;
    left: 50%;
    cursor: pointer;
    margin-left: -20px;
    width: 20px;
    height: 20px;
    padding: 20px;
    z-index: 99;
    background-color: #333333;
    border-radius: 50em;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
    background-size: 20px 15px;
    background-repeat: no-repeat;
    background-position: center;
}
.wi-100 {
    width: unset;
}
.header-help {
    height: 7.8rem;
}
.header-help2 {
    height: 8.2rem;
}
.header-help3 {
    height: 5.2rem;
}
.hh2 {
    background-size: contain;
    object-fit: contain;
}
.hh3 {
    background-size: cover;
    object-fit: contain;
}
.hover-video {
    display: block;
    object-fit: cover;
    /* Anpassen falls nötig */
    /*max-height: 300px;*/
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #2A5C7D;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9990;
}

.back-to-top:hover {
    background-color: #1E4159;
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    .text {
        left: 5%;
        max-width: 80%;
    }
    .back-to-top {
        padding-bottom: .32rem;
    }
    .mobile-hidden {
        display: none;
    }
    .mw100 {
        max-width: 100%;
    }
    .ptmobile {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .text h1 {
        font-size: 2rem;
    }
    .fs-0 {
        font-size: .92rem;
    }
    .fs-1 {
        font-size: 1rem;
    }
    .fs-2 {
    font-size: 1.28rem;
    }
    .fs-3 {
    font-size: 1.68rem;
    }
    .fs-4 {
    font-size: 2.2rem;
    }
    .fs-5 {
        font-size: 3rem;
        font-weight: 200;
    }
    .fs-lang-mobil {
    font-size: 1.6rem;
    }
    .pl3-m0 {
        padding-left: 0;
    }
    .pth {
        padding-top: 0rem;
        padding: 1rem 0;
    }
    .padding-highlight {
        padding-left: unset;
    }
    .text p {
        font-size: 1rem;
    }
    .wi-100 {
        width: 100%;
    }
    .mf {
    flex-direction: column;
    }
    .nav-arrow {
        top: 70%;
        transform: translateY(-50%);
    }
    .container-card {
        height: unset;
    }
    .hero {
        top: 0px;
    }
    #flamingo-container{
        position:absolute;              /* bleibt im Slide verankert … */
        left:10%; top:15%;
        cursor:pointer;
        transition:transform .4s ease, top .4s ease, left .4s ease;
        z-index:50;                     /* über Slide-Bild legen */
    }
    #flamingo-container img{ width:50%; height:auto; }

    Wird beim Scrollen hinzugefügt → Flamingo „fliegt mit“
    .flamingo-fixed{
        position:fixed !important;      /* aus dem Slider lösen  */
        left:2%;
        width:100px; transform:rotate(-3deg) scale(.9);
        pointer-events:auto;
    }

    html .group-middle {
        justify-content: flex-start;
    }
    .gallery-item {
        width: 99.7%;
    }
    .header-help {
        height: 5.8rem;
    }
    .header-help2 {
        height: 5.6rem;
    }
    .hh2 {
        background-size: cover;
        object-fit: contain;
    }
    .flexx {
        display: flex;
        flex-direction: column;
    }
    footer {
        /*height: 584px;*/
        height: 636px;
    }
    footer .logo {
        margin: 20px auto 10px auto; /* Zentriert und mit Abstand nach unten */
    }
    .footer-puffer {
        height: 140dvh;
    }
    .footer-puffer-2 {
        height: 80dvh;
    }
    .footer-puffer-3 {
        height: 166dvh;
    }
    .list-custom-2 {
        display: none;
    }
    footer .footer-links-2 {
        display: none;
    }
    .oh-desktop {
        display: block;
    }
    .text-overlay {
        font-size: 1rem;
        padding: 8px 0;
    }
}
@media (min-width: 992px) {
    .box-width-lg-470 {
        max-width: 470px;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
    }
}