/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Firefox */
html {
    scrollbar-width: none; /* verbirgt Balken */
}

/* 100% nötig: verhindert Safari-Bug */
body {
    -ms-overflow-style: none; /* IE & alte Edge */
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* NEU */
}


body {
    padding-top: 70px !important;
    overflow-x: hidden;
    font-family: Montserrat, sans-serif;
}


/* ------------------------------------------ */
/* NAVIGATION (immer oben, nichts darüber)    */
/* ------------------------------------------ */

nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;

    height: 70px;
    padding: 0 16px;

    background: rgb(9, 54, 40, 0.75);
    backdrop-filter: blur(10px);

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

    z-index: 999999999 !important;

    pointer-events: auto !important;
}

header,
section,
.slider-wrapper,
.portrait-slider {
    position: relative;
    z-index: 1 !important;
}
.slick-slider {
    z-index: 1 !important;
}
.slick-list, .slick-track {
    z-index: 1 !important;
}

.simple-header {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.simple-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.simple-header p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .simple-header {
        padding: 40px 20px 20px;
    }

    .simple-header h2 {
        font-size: 1.8rem;
    }

    .simple-header p {
        font-size: 1.05rem;
    }
}

section:nth-of-type(odd) {
    background: #ffffff;
}

section:nth-of-type(even) {
    background: #f4f4f4;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 30px 10px 10px;
}

/* Icon-Container */
.feature-icon {
    width: 100%;
    height: 150px;                 /* Höhe der Icon-Zone */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;              /* verhindert hinaus ragen */
    padding: 20px;                 /* macht Icons kleiner */
}

/* Icon selbst */
.feature-icon img,
.feature-icon svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;           /* verzerrt nie, passt sauber rein */
}

.portrait-slider .slick-slide {
    height: 400px !important;   /* genau deine gewünschte Höhe */
}

.portrait-slider img {
    height: 100%;
    width: auto;
    object-fit: cover; /* oder contain */
}


/* MOBILE: Feature-Cards sollen FULL-WIDTH sein */
@media (max-width: 768px) {

    /* Jede Feature-Box volle Breite */
    .feature-box {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Wenn du ein Grid verwendest → umstellen auf 1 Spalte */
    .feature-grid,
    .features-wrapper,
    .features-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px; /* schöner Abstand */
    }

    /* Ganz wichtig: Elterncontainer darf kein padding haben */
    .features-section,
    .feature-wrapper,
    .feature-row {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.icon-box {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.icon-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.icon-more {
    display: none; 
    font-size: 14px;
    color: #555;
    margin-top: 6px;
}



.nav-left {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    opacity: 0.9;
}

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

/* Hamburger nur mobil */
.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Mobile-Menü (Dropdown) */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 999; /* unter nav, über allem anderen */
}

.mobile-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    border-top: 1px solid #eee;
}

/* ------------------------------------------ */
/* HEADER                                     */
/* ------------------------------------------ */

header {
    height: 60vh;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)),
        url('../images/1.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-inner p {
    font-size: 18px;
}

/* ------------------------------------------ */
/* SECTIONS                                   */
/* ------------------------------------------ */

section {
    padding: 60px 16px;
}

section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

/* ------------------------------------------ */
/* SLIDER                                     */
/* ------------------------------------------ */

/* Containerbreite: Option B (max 1100) */
.slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Abstand zw. Slides */
.portrait-slider .slick-slide {
    padding: 0 8px;
}

/* Desktop: Bilder füllen Slide-Breite, fix hohe Portrait-Optik */
.portrait-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* Pfeile */
.slick-prev:before,
.slick-next:before {
    color: #444;
    font-size: 30px;
}

/* ------------------------------------------ */
/* RESPONSIVE NAV + HEADER + SLIDER           */
/* ------------------------------------------ */

@media (max-width: 900px) {

    /* Desktop-Links ausblenden, Hamburger zeigen */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Header etwas kleiner, Text nicht zu groß */
    header {
        height: 45vh;
    }

    .hero-inner h1 {
        font-size: 28px;
    }

    .hero-inner p {
        font-size: 16px;
    }

    /* Slider: Bild breit genug, ohne weiße Ränder */
    .portrait-slider img {
        height: auto;
        max-height: 80vh;
        width: 90vw;
        margin: 0 auto;
    }

    .portrait-slider .slick-slide {
        padding: 0;
    }
}

/* SECTION BREITE */
.section-inner {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* TITEL */
.section-inner h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

/* UNTERTITEL */
.section-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 260px); /* STARKE LÖSUNG */
    justify-content: center;                        /* ⭐ Zentriert alles */
    gap: 10px;                                      /* immer gleicher Abstand */
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 10px;

    align-items: start; /* verhindert Hochziehen anderer Boxen */
}

.feature-box {
    background: white;
    border-radius: 14px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: transform .15s ease;    
    max-width: 240px;
}

/* Pfeil runter (▼) nur anzeigen, wenn NICHT offen */
.feature-box.open .feature-arrow-down {
    display: none;
}

/* Pfeil hoch (▲) nur anzeigen, wenn offen */
.feature-arrow-up {
    display: none;
}
.feature-box.open .feature-arrow-up {
    display: block;
}

.feature-box:hover {
    transform: translateY(-3px);
}

/* Rest bleibt wie zuvor */
.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.feature-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 6px;
}
.feature-text-preview {
    font-size: 14px;
    color: #444;
}
.feature-arrow-down {
    margin-top: 12px;
    font-size: 18px;
    color: #bbb;
}
.feature-text-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.feature-box.open .feature-text-full {
    max-height: 600px; /* groß genug wählen */
}

.feature-arrow-up {
    margin-top: 12px;
    font-size: 18px;
    color: #bbb;
}

.header-video video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: rgb(9, 54, 40);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin-bottom: 40px;
}

.anchor-offset {
    position: relative;
    top: -80px; /* Höhe des fixen Menüs */
    visibility: hidden;
}

/* alte language-dropdown kannst du später aufräumen, wird jetzt von lang-switcher ersetzt */
.language-dropdown select {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #aaa;
    cursor: pointer;
}

@media (max-width: 768px) {
    .language-dropdown select {
        font-size: 18px; /* Flaggen sind größer schön */
        padding: 6px 8px;
    }
}


/* Wrapper zentriert die Vorschau */
.map-preview-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    margin: 20px 0;           /* etwas Abstand oben/unten */
}

/* kleine Vorschau */
.map-preview {
    max-width: 450px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-preview:hover {
    transform: scale(1.04);
}

/* Modal */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    z-index: 99999;
}

/* große Karte */
.map-modal-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(255,255,255,0.5);
}

.simple-footer {
    background: rgb(9, 54, 40);
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Logo */
.footer-logo img {
    max-width: 200px;
}

/* Contact */
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin: 6px 0;
}

/* Social icons */
.footer-icons a {
    margin-right: 12px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

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

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    margin-top: 120px;
}

.contact{
    color:#f4f4f4;
}

/* Promo-Footer (CTA) – deine bisherige Variante */
#promo-footer {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);

    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);

    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-contact a {
    font-size: 24px;
    text-decoration: none;
    color: #333;
    transition: transform 0.15s ease;
}

.promo-contact a:hover {
    transform: scale(1.2);
}

#book-now {
    background: linear-gradient(90deg, rgb(9, 54, 40), rgb(9, 54, 40,0.8));
    color: white;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(9, 54, 40,0.2);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none; /* wichtig! */
    display: inline-block;
}

#book-now:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 25px rgba(9, 54, 40,1);
}


/* Desktop: mobiler Sprachswitcher ausblenden */
.lang-switcher-mobile {
    display: none;
}

/* Desktop-Sprachwahl */
.lang-switcher select,
.lang-switcher-mobile select {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #aaa;
    cursor: pointer;
}

@media (max-width: 900px) {

    /* Desktop-Navigation ausblenden */
    .nav-links {
        display: none;
    }

    /* Desktop-Sprachswitcher ausblenden */
    .lang-switcher {
        display: none;
    }

    /* Mobiler Sprachswitcher aktiv */
    .lang-switcher-mobile {
        display: block;
    }

    /* Nav-Leiste kompakter machen UND nicht breiter als der Screen */
    nav {
        padding: 0 8px;
        max-width: 100vw;    /* <<< NEU */
        overflow: hidden;    /* <<< NEU – verhindert Überstand */
    }

    /* Burger links */
    .hamburger {
        display: block;
        order: 1;
        margin-right: 8px;
        flex: 0 0 auto;
    }

    /* Logo in die Mitte, darf auch schrumpfen */
    .nav-left {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;        /* <<< NEU – verhindert, dass es das Layout sprengt */
        text-align: center;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Sprachwahl rechts */
    .lang-switcher-mobile {
        order: 3;
        margin-left: 8px;
        flex: 0 0 auto;
    }

    /* Select nicht zu breit werden lassen */
    .lang-switcher-mobile select {
        font-size: 14px;
        padding: 4px 6px;
        max-width: 70px;
    }
    #promo-footer {
        bottom: 0;
        left: 0;
        right: 0;          /* NEU: statt width:100% */
        width: auto;       /* NEU: Browser berechnet Breite passend */
        transform: none;
        border-radius: 0;
        padding: 10px 12px;
        gap: 10px;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
    }

    #promo-footer .book-cta {
        flex: 1;
        text-align: center;
        font-size: 14px;
        padding: 10px 8px;
        white-space: normal; /* Text darf umbrechen */
    }

    .promo-contact a {
        font-size: 20px;
    }

    .label-desktop {
        display: none;
    }
    .label-mobile {
        display: inline;
    }
}


/* Kleine schwebende Karte rechts */
.floating-map {
    position: fixed;
    right: 1.5rem;
    top: 1rem;                 /* Startposition, wird per JS verändert */
    width: 160px;
    max-width: 35vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    cursor: pointer;
    z-index: 1000;
    transition: top 0.15s ease-out;   /* für ein weiches Nachlaufen */
}

.floating-map img {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile ggf. ausblenden */
@media (max-width: 768px) {
    .floating-map {
        width: 60px;
        right: 0.75rem;
        border-radius: 8px;
        /* weiterhin sichtbar! */
    }
}


/* Vollbild-Modal */
.map-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.map-modal.open {
    display: flex;
}

.map-modal-img {
    max-width: min(90vw, 900px);
    max-height: 90vh;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 12px;
}
.mini-reviews {
    max-width: 950px;
    margin: 50px auto;
    padding: 10px;
}

.mini-reviews-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.mini-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mini-slider {
    overflow: hidden;
    display: flex;
    gap: 16px;
    scroll-behavior: smooth;
}

.mini-review-card {
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.07);
    position: relative;
}

.mini-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dedede;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 10px;
    color: white;
}

.mini-google-icon {
    width: 22px;
    position: absolute;
    top: 14px;
    right: 14px;
}

.mini-review-name {
    font-weight: 600;
    font-size: 15px;
}

.mini-review-date {
    color: #777;
    font-size: 13px;
    margin: 3px 0 8px 0;
}

.mini-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 8px;
}

.mini-review-text {
    font-size: 14px;
    line-height: 1.35;
    max-height: 60px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.mini-review-card.open .mini-review-text {
    max-height: 500px;
}

.mini-readmore {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #1a73e8;
    cursor: pointer;
}

/* Slider Navigation */
.mini-nav {
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

.mini-prev {
    margin-right: 10px;
}

.mini-next {
    margin-left: 10px;
}
.mini-summary {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.mini-summary-left {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mini-stars-big {
    font-size: 26px;
    color: #ffc107;
}

.mini-avg-number {
    font-size: 22px;
    font-weight: bold;
}

.mini-total-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 18px;
}

.mini-total-link:hover {
    text-decoration: underline;
}

.mini-sep {
    opacity: 0.5;
}
@media (max-width: 600px) {

    .mini-summary-left {
        flex-direction: column;      /* <<< Zeilenumbruch */
        text-align: center;
        gap: 4px;
    }

    .mini-summary-top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .mini-summary-bottom a {
        font-size: 16px;
        display: block;
    }

    .mini-sep {
        display: none; /* der Punkt verschwindet */
    }
}
#miniSlider {
    cursor: grab;
}
#miniSlider.dragging {
    cursor: grabbing;
}
