/* CSS Document */
/* ================================
   UNIFIED CSS WITH VARIABLES
   ================================ */

:root {
    /* Colors */
    --color-accent-soft: #d1eaf9;         /* helle Variante von #136ca2 */
    --color-accent-strong: #136ca2;       /* deine Hauptfarbe */
    --color-background-light: #f0f8fc;    /* sehr helles Hintergrundblau */
    --color-bg-box: #ffffff;              /* Boxen weiterhin weiß */
    --color-font-black: #0c3a56;          /* sehr dunkles Blau für Text */
    --color-font-grey: #5a768a;           /* neutrale Beschriftung */
    --color-font-lb: #a5cfe6;             /* leichtes Blau für Labels */
    --color-font-box: #5a768a;            /* für helle Boxen */
    --color-error: #e65454;               /* Kontrast zu blau für Fehlermeldungen */
    --color-blue-strong: #1d7ebb;         /* intensives Blau für Buttons/Links */

    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 6px 18px rgba(0, 0, 0, 0.12);

    /* Font Sizes */
    --font-xs: 0.85em;
    --font-sm: 0.95em;
    --font-md: 1em;
    --font-lg: 1.2em;
    --font-xl: 1.5em;
    --font-xxl: 2.4em;
}

/* ================================
   TYPOGRAPHY & BASE
   ================================ */

body {
    margin: 0;
    color: var(--color-font-grey);
    font-family: system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-font-black);
    font-weight: 600;
}

.description {
    color: var(--color-font-black);
}




/* ================================
   HEADER
   ================================ */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.header .menu {
    display: flex;
    align-items: center;
}

.burger-menu {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.icons {
    display: flex;
    gap: 10px;
}

.icon-placeholder {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    border-radius: 50%;
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, white 100%);
    z-index: 1;
}

/* ================================
   TITLE, TEASER, LOCATION
   ================================ */

.title {
    font-size: var(--font-xxl);
    font-weight: 500;
    color: var(--color-font-black);
    padding: 20px 30px;
    margin: 20px auto;
    background-color: var(--color-accent-soft);
    box-shadow: var(--shadow-sm);
}

.teaser {
    text-align: center;
    padding: 30px 20px;
    font-size: var(--font-lg);
    color: var(--color-font-grey);
    line-height: 1.6;
    background: #fefefe;
    max-width: 800px;
    margin: 0 auto;
}

.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    font-size: var(--font-md);
    color: var(--color-font-grey);
}

.location-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location .location-icon {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
}

.location .location-details {
    text-align: center;
    margin-top: 10px;
    font-size: var(--font-sm);
    color: #777;
}

/* ================================
   MAP, VIDEO & READ MORE
   ================================ */

.video-container {
    margin: 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-background-light);
}


.map-container {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-description {
    margin: 20px;
    padding: 15px 20px;
    background-color: var(--color-background-light);
    border-left: 4px solid var(--color-accent-soft);
    border-radius: var(--border-radius-sm);
    color: var(--color-font-grey);
    font-size: var(--font-md);
    line-height: 1.6;
    box-shadow: var(--shadow-xs);
}

.map-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px 30px;
}

.map-description li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: var(--font-sm);
    color: var(--color-font-grey);
    line-height: 1.4;
}

.map-description li::before {
    content: '✔';
    color: var(--color-accent-strong);
    font-weight: bold;
    flex-shrink: 0;
}


.read-more {
    background-color: var(--color-blue-strong);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
    cursor: pointer;
}

.read-more-section {
    margin-top: 10px;
    color: var(--color-font-grey);
}

/* ================================
   QA SECTION
   ================================ */

.qa-section {
    background-color: var(--color-background-light);
}

.qa-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qa-item {
    background-color: #fff;
    padding: 15px 20px;
    border-left: 4px solid var(--color-accent-soft);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease;
    cursor: pointer;
}

.qa-item:hover {
    background-color: #f8f8f8;
}

.qa-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-font-grey);
}

.qa-question h3 {
    font-size: var(--font-md);
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.qa-toggle-arrow {
    transition: transform 0.3s ease;
    font-size: var(--font-lg);
    margin-left: 10px;
    flex-shrink: 0;
    color: #666;
}

.qa-item.expanded .qa-toggle-arrow {
    transform: rotate(90deg);
}

.qa-answer {
    margin-top: 12px;
    display: none;
    color: var(--color-font-grey);
    font-size: var(--font-sm);
    line-height: 1.5em;
}

/* ================================
   SERVICE DETAILS (MODAL)
   ================================ */

.service-details {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: none;
    z-index: 1000;
}

.service-details .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: var(--font-lg);
    cursor: pointer;
}

/* ================================
   NOT INCLUDED SECTION
   ================================ */

.not-included {
    background-color: var(--color-background-light);
}

.not-included-item {
    border-left: 4px solid var(--color-error);
    padding-left: 20px;
    position: relative;
    font-size: var(--font-md);
    color: var(--color-font-grey);
    margin: 8px 0;
}

.not-included-item::before {
    content: '✘';
    color: var(--color-error);
    margin-right: 8px;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ================================
   HIGHLIGHTS BOX
   ================================ */

.highlights {
    background-color: var(--color-accent-soft);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

/* ================================
   TIMELINE STYLING
   ================================ */

.timeline-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.timeline-group-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
    border-left: 5px solid #4CAF50;
    padding-left: 10px;
}

.timeline-tabs {
    margin-top: 20px;
}
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.tab-btn {
    background: #eee;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.tab-btn.active {
    background: #136ca2;
    color: white;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.timeline-item {
    border-left: 3px solid #136ca2;
    margin-bottom: 20px;
    padding-left: 15px;
}
.timeline-point {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    top: 5px;
    left: -18px;
}


.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 20px 0;
    padding-left: 33px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33px;
    width: 3px;
    background-color: #136ca2;
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin: 30px 0;
}

.timeline-point {
    width: 15px;
    height: 15px;
    background-color: #136ca2;
    border-radius: 50%;
    position: absolute;
    left: -1px;
    top: 20px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline-content {
    border-radius: var(--border-radius-lg);
    padding: 5px 25px;
    margin-left: 25px;
    text-align: left;
    max-width: 700px;
}

.timeline-content h3 {
    margin: 0 0 10px;
    font-size: var(--font-lg);
    font-weight: bold;
    color: var(--color-font-black);
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-font-grey);
}



/* ================================
   INFO BOXES & LISTS
   ================================ */

.info-box {
    background-color: var(--color-background-light);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.info-box-title {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--color-font-grey);
    margin-bottom: 20px;
    text-align: left;
}

.info-box-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 20px;
}

.info-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box-list li {
    margin: 8px 0;
    font-size: var(--font-md);
    color: var(--color-font-grey);
    padding-left: 20px;
    position: relative;
}

.info-box-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-accent-strong);
}

.info-item {
    background-color: var(--color-bg-box);
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    font-size: var(--font-sm);
    color: var(--color-font-box);
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 4px solid var(--color-accent-soft);
    transition: background 0.2s ease;
    text-align: left;
}

.info-item:hover {
    background-color: #f0f0f0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.info-list li {
    flex: 1 1 300px;
    padding: 12px 18px 12px 34px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 10px solid var(--color-accent-strong);
    position: relative;
    font-size: var(--font-md);
    color: var(--color-font-grey);
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s ease;
}

.info-list li::before {
    content: '✔';
    position: absolute;
    left: 12px;
    color: var(--color-accent-strong);
    font-size: var(--font-sm);
    line-height: 1;
}

.info-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* ================================
   SERVICE ELEMENTE
   ================================ */

.service-item {
    background-color: var(--color-bg-box);
    padding: 15px 18px;
    border: 1px solid #ccc;
    font-size: 0.95em;
    color: var(--color-font-grey, #555);
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #fdfdfd;
}

.service-check {
    color: var(--color-accent-strong);
    font-size: 1.2em;
}

.service-description {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--color-font-box);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item.expanded .service-description {
    display: block;
    opacity: 1;
}

.service-info-display {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--color-background-light);
    border-left: 4px solid var(--color-accent-soft);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    display: none;
    color: var(--color-font-box);
}

.service-info-display h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: var(--color-font-grey);
}

.service-info-display p {
    margin-bottom: 0;
    line-height: 1.5em;
}

.service-info-display ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px 30px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.service-info-display li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.95em;
    color: var(--color-font-box);
    line-height: 1.4;
}

.service-info-display li::before {
    content: '✔';
    color: var(--color-accent-strong);
    font-weight: bold;
    flex-shrink: 0;
}


/* ================================
   SLIDESHOW
   ================================ */

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    width: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 440px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
    max-height: none;
}

.slide .prev,
.slide .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.slideshow-container .prev {
    position: absolute;
    left: 10px;
    top: 209px;
}

.slideshow-container .next {
    position: absolute;
    right: 10px;
    top: 209px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumbnail.selected {
    opacity: 1;
    border: 2px solid var(--color-blue-strong);
    border-radius: 5px;
}

.thumbnail:hover {
    opacity: 1;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
    max-height: none;
}

.image-copyright {
    position: absolute;
    bottom: 36px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    pointer-events: none;
}




/* ================================
   SERVICE PROVIDER BOXEN
   ================================ */

.service-provider-horizontal {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    padding: 0 20px;
}

.sp-horizontal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-background-light);
    padding: 20px 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.sp-horizontal-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.sp-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.sp-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.sp-info {
    font-size: var(--font-md);
    color: var(--color-font-grey);
}

.sp-info strong {
    font-size: var(--font-lg);
    display: block;
    margin-bottom: 5px;
    color: var(--color-font-black);
}

.visit-label {
    font-size: var(--font-sm);
    color: var(--color-blue-strong);
    text-decoration: underline;
}

.sp-discount {
    margin-top: 10px;
    font-size: var(--font-sm);
    color: var(--color-green-strong);
    font-weight: normal;
    text-align: center;
    margin-bottom: 5px;
}

.sp-discount .discount-message {
    display: inline-block;
    background-color: var(--color-green-light);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
}

.sp-discount .discount-code {
	background-color: var(--color-font-lb);
    color: var(--color-font-black);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 5px;
    font-weight: bold;
    font-size: 1.3em;
}


/* ================================
   SIMILAR TOUR ITEMS
   ================================ */

.similar-tour-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.similar-tour-item:hover {
    background: var(--color-background-light);
    transform: scale(1.02);
}

.similar-tour-item img {
    width: 120px;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.similar-tour-details {
    padding: 10px;
    flex: 1;
}

.similar-tour-details h3 {
    margin: 0 0 5px;
    font-size: 1.2em;
    color: var(--color-font-grey);
}

.similar-tour-details p {
    margin: 0;
    font-size: 0.9em;
    color: var(--color-font-grey);
}






.start-distance-output {
    font-style: italic;
    color: #666;
    margin-left: 5px;
}

.product-acc {
    margin-top: 30px;
}

/* Überschrift über den Unterkunftsfeldern */
.product-acc .acc-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #00344d;
}

/* Unterkunftsfelder nebeneinander */
.product-acc .accommodation-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-acc .accommodation-fields .input-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.product-acc .accommodation-fields input,
.product-acc .accommodation-fields select,
.product-acc #accommodationCitySelect{
    width: calc(100% - 20px);
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 10px 0px;
}

/* Manuelle Stadteingabe (sichtbar nach Auswahl) */
.product-acc .accommodation-city-input-group {
    margin-bottom: 20px;
}

.product-acc .accommodation-city-input-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

/* X-Icon zum Löschen */
.product-acc .clear-accommodation {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

/* Sektionen darunter – Startpunkt & Transferpunkt */
.product-acc .acc-info-section {
    margin-top: 24px;
}

/* Unterüberschriften */
.product-acc .acc-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #00344d;
    margin-bottom: 10px;
}

/* Responsives Verhalten */
@media (max-width: 640px) {
    .product-acc .accommodation-fields {
        flex-direction: column;
    }
}



