/* CSS Document */


#content .themes-container {
    margin-bottom: 40px;
}


/* theme 1 und theme2 */

/* Container für Theme1 */
#content .theme1-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
}

/* Container für Theme2 */
#content .theme2-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Theme-Abschnitt */
#content .theme {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

/* Theme1 - Flexible Größe */
#content .theme1 {
    flex: 1 1 580px;
    max-width: 580px;
}

/* Theme2 - Immer volle Breite über 1200px */
#content .theme2 {
    width: 1200px;
    max-width: 100%;
}

/* Header mit Bild */
#content .theme-header {
    position: relative;
    width: 100%;
    height: 200px;
}

#content .theme-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#content .theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#content .theme-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

#content .theme-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

#content .theme-text p {
    font-size: 14px;
}

/* Untersektionen Container */
#content .subsections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    /*padding: 20px;*/
    width: 100%;
}

/* Karten-Stil für Untersektionen */
#content .subsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    width: calc(100% - 20px);
    padding: 10px;
}

#content .subsection a {
	width: 100%; 
}
/* Bilder füllen die ganze Breite */
#content .subsection img {
    width: calc(100% - 2px); /* Volle Breite mit minimalem Abstand */
    height: 120px; /* Angemessene Höhe für ein schönes Seitenverhältnis */
    object-fit: cover;
    display: block;
}

/* Text unter dem Bild */
#content .subsection-text {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* RESPONSIVE DESIGN */

/* Mobile (bis 999px) → Themes untereinander */
@media (max-width: 999px) {
    #content .theme1-container {
        flex-direction: column;
        align-items: center;
    }

    #content .theme1 {
        max-width: 100%;
		display: block; /* wichtig, falls flex/inline-block/float aktiv war */
		width: 100%;
		overflow: visible; /* nicht hidden! */
    }

    #content .theme2 {
		display: block; /* wichtig, falls flex/inline-block/float aktiv war */
		width: 100%;
		overflow: visible; /* nicht hidden! */
    }
}

/* Mittlere Bildschirme (1000px - 1199px) → Themes passen sich dynamisch an */
@media (min-width: 1000px) and (max-width: 1199px) {
    #content .theme1 {
        flex: 1 1 48%; /* Themes stehen nebeneinander, nehmen je 48% Platz */
        max-width: 48%;
    }
}

/* Desktop (ab 1200px) */
@media (min-width: 1200px) {
    #content .theme2-container {
        max-width: 1200px;
    }
}









/* product theme */


/* Container für das Produkt-Theme */
#content .product-theme-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
}

/* Theme-Abschnitt für Produkte */
#content .product-theme {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

/* Produkt-Untersektionen */
#content .product-subsections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    width: 100%;
    justify-content: center;
}

/* Titel als eigenes "Produkt", aber ohne Bild */
#content .product-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff6b6b;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    min-height: 120px; /* Gleiche Höhe wie die Produktboxen */
}

/* Produkt-Boxen */
#content .product-subsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
	color: black; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	align-items: stretch;
}

/* Bilder füllen die Boxen */
#content .product-subsection img {
    width: calc(100% - 2px);
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

/* Text unter dem Bild */
#content .product-subsection-text {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* RESPONSIVE DESIGN */

/* Mobile (bis 767px) → Produkte untereinander */
@media (max-width: 767px) {
    #content .product-subsections {
        grid-template-columns: 1fr;
    }
}

/* Tablets (768px - 1024px) → Produkte in zwei Reihen */
@media (min-width: 768px) and (max-width: 1024px) {
    #content .product-subsections {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (ab 1025px) → Produkte nebeneinander */
@media (min-width: 1025px) {
    #content .product-subsections {
        grid-template-columns: repeat(4, 1fr);
    }
}







/* start tomorrow-tours */

.highlight-card {
    background-color: #d1eaf9 !important;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    min-height: 120px;
    border-radius: 10px;
    padding: 10px;
}

.highlight-card .tour-title {
    color: white;
    font-size: 1.2em;
    margin: 0;
}

.tomorrow-tours {
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.tour-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth; /* schönes sanftes Scrollen */
}

.tour-card {
    flex: 0 0 auto;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.tour-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.tour-title {
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Hover-Effekt für normale Touren (NICHT für Highlight-Card) */
.tour-card:not(.highlight-card):hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive Anpassungen */

/* Mobile (bis 599px) */
@media (max-width: 599px) {
    .tour-card {
        width: 140px;
    }
    .tour-title {
        font-size: 12px;
    }
    .highlight-card {
        font-size: 1em;
    }
}

/* Tablet (600px - 1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    .tour-card {
        width: 160px;
    }
    .tour-title {
        font-size: 13px;
    }
    .highlight-card {
        font-size: 1.1em;
    }
}

/* Desktop (ab 1024px) */
@media (min-width: 1024px) {
    .tour-card {
        width: 180px;
    }
    .tour-title {
        font-size: 14px;
    }
    .highlight-card {
        font-size: 1.2em;
    }
}

/* tomorrow-tours finish */


/* start news-section */

.news-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.news-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.news-card {
    flex: 0 0 auto;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.news-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.news-title {
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Hover-Effekt für normale News */
.news-card:not(.highlight-card):hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Highlight-Karte für News */
.news-card.highlight-card {
    background-color: #d1eaf9 !important;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    min-height: 120px;
    border-radius: 10px;
    padding: 10px;
}

.news-card.highlight-card .news-title {
    color: white;
    font-size: 1.2em;
    margin: 0;
}

/* Responsive Anpassungen für News */

/* Mobile (bis 599px) */
@media (max-width: 599px) {
    .news-card {
        width: 140px;
    }
    .news-title {
        font-size: 12px;
    }
}

/* Tablet (600px - 1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    .news-card {
        width: 160px;
    }
    .news-title {
        font-size: 13px;
    }
}

/* Desktop (ab 1024px) */
@media (min-width: 1024px) {
    .news-card {
        width: 180px;
    }
    .news-title {
        font-size: 14px;
    }
}

/* end news-section */


/* start video-section */

.video-section {
    padding: 30px 20px;
    background-color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.video-main-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.video-main {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    /* padding-bottom: 32.25%; */
    height: 320px;
}

.video-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-thumbnail {
    width: 160px;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.video-thumbnail-title {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-product-link {
    text-decoration: none;
    color: #007BFF;
}

.video-product-link:hover {
    text-decoration: underline;
}


/* end video-section */




.testimonial-section {
    padding: 40px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.testimonial-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
}

.testimonial-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial-name {
    font-size: 14px;
    color: #666;
}

.feedback-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
    margin-bottom: 40px;
}

.feedback-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.feedback-row {
    display: flex;
    flex-wrap: nowrap; /* wichtig */
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}


.feedback-card {
    flex: 0 0 auto;
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.feedback-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feedback-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.feedback-info {
    padding: 10px;
}

.feedback-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #222;
}

.feedback-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.feedback-rating {
    font-size: 14px;
    color: #f39c12;
    font-weight: bold;
}

.feedback-toggle {
    padding: 10px;
    font-size: 14px;
    color: #444;
    background: #f6f6f6;
    border-top: 1px solid #ddd;
    display: none;
    border-radius: 0 0 10px 10px;
}

/* Optional: Button-Style Feedback öffnen */
.feedback-card.open .feedback-toggle {
    display: block;
}

/* Responsiv (mobile < 768px) */
@media (max-width: 767px) {
    .feedback-row {
        gap: 10px;
    }

    .feedback-card {
        width: 200px;
    }
}

