/* --- CSS Reset & Variablen --- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--bg-color: #000000;
	--accent-color: #1abc9c; /* Das Oceanic-Türkis */
	--text-color: #ffffff;
	--dropdown-bg: #000000;
	--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	--transition-speed: 0.25s;
}
body {
	font-family: var(--font-family);
	background-color: #000000; /* Dunkelgrauer Test-Hintergrund */
}
.clear{
	clear:both;
}
h1{
	font-size:38px;
	padding-top:150px;
	color:#fff;
}
h2{
	font-size:28px;
	padding:30px 0 10px 0;
	color:#fff;
}
h3{
	font-size:24px;
	padding:20px 0 8px 0;
	color:#fff;
}
.mainContainer{
	margin:0 auto;
	width:90%;
	max-width:1200px;
}
.paddingTop150{padding-top:150px !important;}
.color-rare{color:#b24848 !important;}
.color-less{color:#b4851f !important;}
.color-closed{color:#333 !important;}
/* --- Basis-Header --- */
.site-header {
	background-color: var(--bg-color);
	width: 100%;
	margin: 0 auto;
	position: fixed;
	z-index: 1000;
}
.section-heading{
	width:100%;
	height:120px;
}
.section-heading  h3{
	color: #fff;
	font-size:38px;
	text-align:center;
}
/* =========================================
   DESKTOP STYLES (Gilt nur für Bildschirme AB 769px)
   =========================================
*/
.active {
  background-color: #05594a; 
  color:#000 !important;
}
@media (min-width: 769px) {
	.nav-container {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center;
		padding: 0 30px;
		height: 90px;
	}
	.brand-logo {
		display: flex;
		align-items: center;
	}
	.brand-logo img {
		height: 55px;
		width: auto;
		display: block;
	}
	.menu-toggle {
		display: none !important; /* Auf Desktop strikt ausblenden */
	}
	.main-nav {
		height: 100%;
	}
	.nav-menu {
		list-style: none;
		display: flex !important;
		height: 100%;
	}
	.nav-item {
		position: relative;
		height: 100%;
	}
	.nav-link {
		display: flex;
		align-items: center;
		height: 100%;
		color: var(--text-color);
		text-decoration: none;
		text-transform: uppercase;
		font-size: 0.9rem;
		font-weight: 600;
		letter-spacing: 1px;
		padding: 0 25px;
		transition: background-color var(--transition-speed), color var(--transition-speed);
	}
	/* Hover-Effekt: Türkis mit schwarzer Schrift */
	.nav-link:hover, 
	.nav-link:focus,
	.nav-item:hover > .nav-link,
	.nav-item:focus-within > .nav-link {
		background-color: var(--accent-color) !important;
		color: #000000 !important;
		outline: none;
	}
	/* Desktop Dropdown */
	.dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 320px;
		background-color: var(--dropdown-bg);
		list-style: none;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
		box-shadow: 0 10px 20px rgba(0,0,0,0.5);
		border-top: 2px solid var(--accent-color);
	}
	.dropdown-link {
		display: block;
		width: 100%;
		color: var(--text-color);
		text-decoration: none;
		text-transform: uppercase;
		font-size: 0.85rem;
		font-weight: 500;
		letter-spacing: 1px;
		padding: 18px 20px;
		border-bottom: 1px solid #151515;
		transition: background-color var(--transition-speed), color var(--transition-speed);
	}
	.dropdown-link:hover, 
	.dropdown-link:focus {
		background-color: var(--accent-color);
		color: #000000;
		outline: none;
	}
	.nav-item:hover .dropdown-menu,
	.nav-item:focus-within .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}
/* =========================================
   MOBILE STYLES (Gilt nur für Bildschirme BIS 768px)
   =========================================
*/
@media (max-width: 768px) {
	.nav-container {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important; /* Logo ganz links, Burger ganz rechts */
		align-items: center !important;
		padding: 0 20px;
		height: 70px;
		width: 100%;
	}
	.brand-logo {
		display: flex;
		align-items: center;
	}
	.brand-logo img {
		height: 45px;
		width: auto;
		display: block;
	}
	/* Hamburger Button wird erzwungen rechts platziert */
	.menu-toggle {
		display: flex !important;
		background: none;
		border: none;
		cursor: pointer;
		height: 40px;
		width: 40px;
		position: relative;
		justify-content: center;
		align-items: center;
		margin-left: auto; /* Schiebt den Button nach rechts, falls flex mal zickt */
	}
	.hamburger-icon {
		display: block;
		width: 30px;
		height: 3px;
		background-color: var(--accent-color);
		position: relative;
		transition: background-color var(--transition-speed);
	}
	.hamburger-icon::before,
	.hamburger-icon::after {
		content: '';
		position: absolute;
		width: 30px;
		height: 3px;
		background-color: var(--accent-color);
		left: 0;
		transition: transform var(--transition-speed), top var(--transition-speed);
	}
	.hamburger-icon::before { top: -8px; }
	.hamburger-icon::after { top: 8px; }

	/* X-Animation */
	.menu-toggle[aria-expanded="true"] .hamburger-icon {
		background-color: transparent;
	}
	.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
		top: 0;
		transform: rotate(45deg);
	}
	.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
		top: 0;
		transform: rotate(-45deg);
	}
	/* Aufklappbares mobiles Menü */
	.nav-menu {
		display: none; /* Standardmäßig zu */
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: auto;
		background-color: var(--bg-color);
		list-style: none;
		box-shadow: 0 8px 15px rgba(0,0,0,0.5);
	}
	.nav-menu.is-active {
		display: flex !important;
	}
	.nav-item {
		width: 100%;
		height: auto;
		border-top: 1px solid #151515;
	}
	/* Mobile Links: Volle Breite, Klick oder Hover -> Türkis mit schwarzer Schrift */
	.nav-link {
		display: flex;
		width: 100%;
		padding: 20px;
		color: var(--text-color);
		text-decoration: none;
		text-transform: uppercase;
		font-size: 0.9rem;
		font-weight: 600;
		justify-content: flex-start;
		transition: background-color var(--transition-speed), color var(--transition-speed);
	}
	.nav-link:hover,
	.nav-item.mobile-open > .nav-link {
		background-color: var(--accent-color);
		color: #000000;
	}
	/* Mobiles Untermenü */
	.dropdown-menu {
		display: none;
		position: relative;
		width: 100%;
		background-color: #070707;
		list-style: none;
	}
	.nav-item.mobile-open .dropdown-menu {
		display: block;
	}
	.dropdown-link {
		display: block;
		width: 100%;
		color: var(--text-color);
		text-decoration: none;
		text-transform: uppercase;
		font-size: 0.85rem;
		padding: 15px 20px 15px 40px; /* Eingerückt */
		border-bottom: 1px solid #151515;
	}
	.dropdown-link:hover {
		background-color: var(--accent-color);
		color: #000000;
	}
}
/* ===================================================== */
/* Section 1 video container */
/* ===================================================== */
.section-1{
	position:relative;
	width:100%;
	height:720px;
	margin:0 auto;
	padding:0;
}
.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.background-video-content {
    position: relative;
    z-index: 1;
}

video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.logo{
	position:relative;
	padding:100px 0 0 0;
	margin:0 auto;
	width:100%;
	text-align:center;
}
.logo img{
	width:100%;
	max-width:500px;
}
/* ===================================================== */
/* ===================================================== */
/* --- Allgemeine Section-Stile --- */
.about-section {
    background-color: #000000; /* Tiefschwarzer Hintergrund wie im Screenshot */
    color: #ffffff;
    padding: 80px 20px; /* Großzügiger Abstand nach oben und unten */
    width: 100%;
	min-height:600px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    
    /* Desktop-Layout über CSS-Grid */
    display: grid;
    grid-template-columns: 1fr 2fr; /* Asymmetrische Aufteilung (Überschrift schmaler als Text) */
    gap: 40px; /* Abstand zwischen Überschrift und Text */
    align-items: first baseline; /* Richtet Textoberkanten sauber aneinander aus */
}

/* --- Typografie & Details --- */
.about-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.5rem; /* Große, markante Überschrift */
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.about-content-box {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Abstand zwischen den einzelnen Absätzen */
}

.about-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e0e0e0; /* Leicht abgemildertes Weiß für bessere Lesbarkeit auf Schwarz */
    font-weight: 400;
}

/* =========================================
   RESPONSIVE LOGIK (Breakpoints)
   =========================================
*/
@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px; /* Etwas kompakterer Abstand auf Smartphones */
    }

    .about-container {
        /* Bricht das zweispaltige Raster auf und stapelt die Boxen untereinander */
        grid-template-columns: 1fr; 
        gap: 24px;
    }

    .about-title {
        font-size: 2.5rem; /* Passt die Schriftgröße an kleinere Bildschirme an */
		text-align:center;
    }
}
/* ======================================== */
/* CATALOG WITH TRIPS */
.trips-catalog-section{
	width:100%;
	height:auto;
	min-height:500px;
}
.catalog-container{
	position:relative;
	width:90%;
	margin:0 auto;
	padding:0;
}
.catalog-card{
	background:#fff;
	width:100%;
	max-width:1000px;
	margin:0 auto 25px;
	overflow:auto;
	border-radius:4px;
	padding:15px;
}
.date-box{
	width:200px;
	float:left;
}
.date-day{
	font-size:34px;
	float:left;
	margin-right:5px;
	width:40px;
}
.date-details{
	float:left;
	width:30px;
}
.date-month{
	font-size:14px;
	font-weight:bold;
	padding-top:7px;
}
.date-year{
	font-size:11px;
}
.date-box-till-minus{
	font-size:28px;
	color:#333;
	margin: 0 5px;
	width:15px;
	float:left;
}
.yacht-box{
	width:120px;
	float:left;
	border-radius:3px;
	overflow:hidden;
}
.yacht-box img{
	width:90px;
}
.trip-route{
	float:left;
	width:300px;
}
.trip-route-titel{
	font-size:20px;
	font-weight:bold;
}
.trip-route-yacht{
	font-size: 12px;
	color:#333;
	line-height:1.6;
}
.trip-route-harbor{
	font-size: 12px;
	color:#333;
	line-height:1.6;
}
.trip-price-box{
	float:right;
}
.trip-price-box-price div{
	margin:0;
}
.trip-price-box-price a{
	text-decoration:none;
}
.price-details{
	float:left;
	width:30px;
}
.price-from{
	font-size:11px;
	padding-top:10px;
	line-height:1;
}
.price-currency{
	font-size:14px;
	font-weight:bold;
	line-height:1;
}
.trip-price{
	color:#1abc9c;
	font-size:30px;
	font-weight:bold;
	margin-bottom:15px;
	float:left;
	margin-left:10px;
}
.space-left{
	color:#1e796b;
	font-size:13px;
	float:right;
}
.btn-primary{
	background:#1abc9c;
	color:#fff;
	font-size:14px;
	padding:8px 10px;
	border:0;
	border-radius:4px;
}
.btn-secondary{
	background:#000;
	color:#fff;
	font-size:14px;
	padding:8px 10px;
	border:0;
	border-radius:4px;
}

button:hover{
	cursor:pointer;
	box-shadow: 0 0 11px rgba(33,33,33,.2); 
	background:#3b8075;
}
@media only screen 
and (min-width: 880px) 
and (max-width: 1024px) {
    .date-box{
		width:90px;
	}
	.trip-route{
		width:250px;
	}
	.date-box-till-minus{
		margin: 0 0 0 0;
		width:100%;
		text-align:center;
		float:left;
	}
}
@media only screen 
and (min-width: 680px) 
and (max-width: 880px) {
    .date-box{
		width:200px;
	}
	.trip-route{
		width:250px;
	}
	.trip-price-box{
		float:left;
		border-top:1px solid #ccc;
		margin-top:15px;
		width:100%;
		padding-top:15px;
	}
}
@media only screen 
and (min-width: 300px) 
and (max-width: 680px) {
    .date-box{
		width:90px;
	}
	.date-box-till-minus{
		margin: 0 0 0 0;
		width:100%;
		text-align:center;
		float:left;
		line-height:0.5;
	}
	.trip-route{
		float:left;
		border-top:1px solid #ccc;
		margin-top:15px;
		width:100%;
		padding-top:15px;
	}
	.trip-price-box{
		float:left;
		border-top:1px solid #ccc;
		margin-top:15px;
		width:100%;
		padding-top:15px;
	}
	.yacht-box{
		width:150px;
	}
	.yacht-box img{
		width:100%;
		position:relative;
	}
}
@media only screen 
and (min-width: 300px) 
and (max-width: 500px) {
	.yacht-box{
		width:65%;
	}
	.yacht-box img{
		width:100%;
		position:relative;
	}
	.btn-primary{
		padding:20px 10px;
		margin:10px 0;
		width:100%;
	}
	.btn-secondary{
		padding:20px 10px;
		margin:10px 0;
		width:100%;
	}
}




/* ======================================== */
/* --- Slider Section Basis --- */
.trips-slider-section {
    background-color: #000000;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Platz für die Pfeile links und rechts */
}

/* Der Track nutzt CSS Grid und Scroll Snap für nativer Swiping */
.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%; /* Jeder Slide nimmt standardmäßig die volle Breite ein */
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    /* Versteckt die Standard-Scrollbar in allen Browsern */
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;  /* Firefox */
}
.slider-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* --- Einzelner Slide --- */
.slide-item {
    scroll-snap-align: start;
    height: 550px; /* Strukturierte Höhe für den Slider */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: flex-end; /* Schiebt den Text nach unten */
    padding: 40px;
    position: relative;
}

/* Dynamische Textgrößen im Content-Block */
.slide-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.slide-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    margin-bottom: 15px;
    border-radius: 3px;
}

.slide-title {
    color: #ffffff;
    font-size: 2.8rem; /* Große dynamische Überschrift */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-desc {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* --- Navigations-Pfeile --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s, border-color 0.2s;
}

.slider-arrow:hover {
    background-color: var(--accent-color);
    color: #000000;
    border-color: var(--accent-color);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   =========================================
*/
@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 20px; /* Weniger Abstand am Rand auf Mobilgeräten */
    }

    .slider-arrow {
        display: none; /* Pfeile ausblenden, da Touch-Swipe auf Mobile intuitiver ist */
    }

    .slide-item {
        height: 450px; /* Kompakter auf dem Smartphone */
        padding: 25px;
    }

    .slide-title {
        font-size: 1.8rem; /* Kleinere Schriftgröße für kleine Bildschirme */
    }

    .slide-desc {
        font-size: 0.95rem;
    }
}
/* --- Allgemeine Section Stile --- */
.summaries-section {
    background-color: #000000; /* Tiefschwarz */
    padding: 80px 20px;
    width: 100%;
    overflow: hidden;
}

.summaries-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Abstand zwischen den Sprechblasen */
}
.more-link{
	width:100%;
	text-align:center;
	margin-top:30px;
}
.more-link a{
	font-size:24px;
	text-decoration:none;
	color:#ffffff;
}
.more-link a:hover{
	font-size:24px;
	text-decoration:underline;
	color:#ffffff;
}

/* --- Die Trip Card SUMMARIES (Sprechblase) --- */
.trip-card {
    background-color: #f0f5f5; /* Sehr helles Mint-Weiß für den Content */
    color: #111111; /* Dunkler Text für perfekten Kontrast */
    border-radius: 18px;
    padding: 35px;
    width: 75%; /* Nimmt drei Viertel der Breite ein */
    max-width: 800px;
    align-self: flex-start; /* Standardmäßig links */
    position: relative;
    
    /* Der neon-türkise Glow-Effekt aus deinem Screenshot */
    box-shadow: 0 0 25px rgba(26, 188, 156, 0.35); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* MESSENGER EFFECT: Jede zweite Card wird nach rechts geschoben */
.trip-card:nth-child(even) {
    align-self: flex-end;
}

/* --- Header-Bereich der Card --- */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.card-body a{
	color:#000;
	text-decoration:underline;
}
.card-body a:hover{
	cursor:pointer;
	text-decoration:none;
}

/* Anordnung für die rechte Box (Avatar und Datum nach rechts spiegeln) */
.trip-card:nth-child(even) .card-header {
    flex-direction: row-reverse;
    text-align: right;
}

.trip-card:nth-child(even) .author-area {
    flex-direction: row-reverse;
}

/* Das große Anführungszeichen */
.quote-icon {
    font-size: 3.5rem;
    color: var(--accent-color); /* Nutzt das Oceanic-Türkis */
    line-height: 1;
    font-family: Georgia, serif;
}

.header-meta {
    flex-1: 1;
}

.trip-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

/* Autor & Datum Box */
.author-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ccc; /* Fallback falls Bild fehlt */
}

.trip-date {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
}

/* --- Text-Inhalt --- */
.card-body {
    font-size: 1.05rem;
    line-height: 1.55;
}

.card-body p {
    margin-bottom: 15px;
}

.card-body p:last-child {
    margin-bottom: 0;
}

/* Hover-Effekt: Box hebt sich leicht an und leuchtet stärker */
.trip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(26, 188, 156, 0.55);
}

/* =========================================
   RESPONSIVE DESIGN (Mobile Ansicht)
   =========================================
*/
@media (max-width: 768px) {
    .summaries-container {
        gap: 30px;
    }

    .trip-card {
        width: 100%; /* Auf Mobile nutzen alle Cards die volle Breite */
        padding: 25px;
        border-radius: 14px;
    }
    
    /* Setzt die Ausrichtung zurück, damit mobil alles einheitlich links startet */
    .trip-card:nth-child(even) {
        align-self: flex-start;
    }

    .trip-card:nth-child(even) .card-header {
        flex-direction: row;
        text-align: left;
    }

    .trip-card:nth-child(even) .author-area {
        flex-direction: row;
    }

    .trip-title {
        font-size: 1.3rem;
    }
    
    .card-body {
        font-size: 0.95rem;
    }
}
/* --- Allgemeine Section Stile --- */
.contact-section {
    background-color: #000000; /* Tiefschwarz */
    color: #ffffff;
    padding: 80px 20px;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Gleichmäßige Aufteilung links/rechts */
    gap: 60px; /* Großzügiger Abstand zwischen Bild und Text */
    align-items: center;
}

/* --- Linke Spalte (Bild) --- */
.contact-image-box {
    width: 100%;
}

.contact-main-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px; /* Minimal abgerundet für einen edlen Look */
}

/* --- Rechte Spalte (Text & Content) --- */
.contact-content-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.company-name {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color); /* Nutzt dein Türkis */
    margin-bottom: 15px;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.communication {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--transition-speed);
}

.contact-link:hover {
    color: var(--accent-color);
}

/* --- QR-Codes Bereich --- */
.qr-codes-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 10px;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 140px; /* Feste Breite für Symmetrie */
}

.qr-img {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
    padding: 5px; /* Weißer Rand um den Google QR-Code */
    border-radius: 4px;
}

/* Spezifisches Styling für das grüne Tripadvisor-Schild */
.tripadvisor-badge {
    background-color: #00e676; /* Knalliges Tripadvisor-Grün */
    padding: 15px 10px;
    border-radius: 25px; /* Stark abgerundete Ecken wie im Entwurf */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

.qr-img-ta {
    width: 85%;
    height: auto;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
}

.qr-label {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.qr-item a.qr-label:hover {
    color: var(--accent-color);
}

/* =========================================
   RESPONSIVE DESIGN (Mobile Ansicht)
   =========================================
*/
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stapelt das Layout einspaltig */
        gap: 40px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-main-img {
        max-height: 350px; /* Verhindert ein zu langes Bild auf Smartphones */
    }

    .qr-codes-wrapper {
        justify-content: center; /* Zentriert die QR-Codes mobil */
        gap: 20px;
    }
    
    .qr-item {
        width: 130px;
    }
}
/* Start Footer section */
.footer{
	min-height:250px;
	background:#000;
	color:#fff;
	padding-top:20px;
	font-size:16px;
	text-align:center;
}
.social-bar{
	font-size:48px;
	margin:0 auto;
	text-align:center;
}
.social-bar img{
	max-width:50px;
}
.social-bar a{
	color:#000 !important;
}
/* End Footer section */
/* /////////////////////////////*/
.accordion {
	position:relative;
	background-color: #000000;
	border:1px solid #05594a;
	color: #fff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	max-width:1200px;
	border-radius:4px;
	text-align: left;
	outline: none;
	font-size: 24px;
	transition: 0.4s;
	margin:10px auto; 
}

.active1, .accordion:hover {
	background-color: #05594a; 
	color:#000;
}

.panel {
	padding: 0;
	margin-top:20px;
	display: none;
	background-color: #000000;
	overflow: hidden;
	text-align:left;
}
.disabled {
	background:#5a5b5b !important;
}

.bottom-subnav{
	position:fixed;
	margin:0 auto;
	bottom:10px;
	background:#3b8075;
	left: 50%; 
    transform: translateX(-50%);      
    width: auto;
    max-width: 90%; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;    
    display: flex;
	justify-content: space-around;
    align-items: center;
}
/* Styling für die Links in der Navbar */
.bottom-subnav a {
	color: #fff;
	padding:10px 19px;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s ease;
	text-align:center;
}

.bottom-subnav a:hover {
	color: #00adb5; /* Farbeffekt beim Drüberfahren */
}
.bottom-subnav img{
	width:20px;
}
.trips-outter{
	width:90%;
	max-width:1200px;
	margin:0 auto;
}
.trips-outter h1{
	font-size:38px;
	padding-top:150px;
	color:#fff;
}
.catalog-container2{
	position:relative;
	width:100%;
	margin:0 auto;
	padding:0;
}

@media (max-width: 400px) {
	.bottom-subnav{
		bottom:0;    
		width: 100%;
		max-width:100%;
	}
	/* Styling für die Links in der Navbar */
	.bottom-subnav a {
		padding:8px 19px;
		font-size: 10px;
	}
}
.error-container {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.error-container h1 {
	font-size: 72px;
	margin: 0;
	color: #3b8075; 
}
.error-container h2 {
	font-size: 24px;
	margin-top: 10px;
	color: #2c3e50;
}
.error-container p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin: 20px 0 30px 0;
}
.error-container .btn {
	display: inline-block;
	text-decoration: none;
	background-color: #3b8075;
	color: #ffffff;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.error-container  .btn:hover {
	background-color: #004466;
}
@media (max-width: 600px) {
	.error-container {
	max-width: 90%;
	}
}

.body-content{
	width:900px;
	min-height: 800px;
	margin: 0 auto;
	text-align: center;
}
.itinerary{
	width: 450px;
	height: auto;
	float: left;
	overflow: hidden;
}
.itinerary img{
	width: 350px;
	height: 250px;
}
.itinerary-link{
	color: #ffffff;
	border: none;
}
.subline-txt{
	font-size:18px;
	line-height: 1.2;
	margin:20px 0 35px 0;
}
.box-container{
	width:100%;
}
.box-container p{
	color:#fff;
	line-height:1.2;
}
.attraction-container{
	width:100%;
}
.box-container-img{
	width:25%;
	overflow: hidden;
	float: left;
}
.box-container-img img{
	width:100%;
}

.turquoise{
	color:#00aa94;
	font-size:20px;
	margin-bottom:15px;
	margin-top:25px;
}

.attractions{
	width: 70%;
	float: left;
	margin-left:20px;
}
.attractions_icons img{
	width:200px;
	height:30px;
	float: left;
	margin:10px 20px 10px 0;
}
.attractions_icons span{
	min-width: 250px;
	float: left;
	margin:14px 0 10px 0;
	color:#fff;
}


@media only screen 
and (min-width: 700px) 
and (max-width: 900px) {
	.box-container-img{
		width: 250px;
	}
	.attractions{
		width: 350px;
	}
	.attractions_icons img{
		width:200px;
		height:30px;
		margin:0;
	}
	.attractions_icons span{
		margin:0 0 15px 0;
	}	
}
@media only screen 
and (min-width: 300px) 
and (max-width: 700px) {
	.box-container-img{
		width: 100%;
	}
	.attractions{
		width: 100%;
		margin-left:0;
	}
	.attractions_icons img{
		width:250px;
		height:40px;
		margin:0;
		float: none;
	}
	.attractions_icons span{
		margin:0 0 15px 0;
		float: none;
		display: block;
	}	
	.price-details-container div{
	width:100%;
	margin-right:0px;
	float: none;
	text-align:left;
	margin-bottom:25px;
}
}
.dahab{
	background: url(../img/trip/trip-details/dahab/dahab-header.jpg) 50% 0 no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.yoga{
	background: url(../img/trip/trip-details/yoga/yoga.jpg) 50% 50% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.rocky{
	background: url(../img/trip/trip-details/rocky/rocky-header.jpg) 50% 100% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.bde3{
	background: url(../img/trip/trip-details/bde/bde-header4.jpg) 50% 100% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.bde2{
	background:  url(../img/trip/trip-details/bde/bde-header3.jpg) 50% 100% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.bde{
	background: url(../img/trip/trip-details/bde/bde-header2.jpg) 50% 100% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.north{
	background: url(../img/trip/trip-details/north/north-header.jpg) 50% 100% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
.mal{
	background: url(../img/trip/trip-details/maldives/maldives-header.jpg) 50% 50% no-repeat;
	background-size:cover;
	height:auto;
	min-height:350px;
	overflow:auto;
}
/* NORTH, DAHAB */
.header-trip{
	color:#fff;
	margin:0 auto;
}
.header-trip h1{
	font-size:48px;
	margin:0;
	color:#fff;
	padding: 120px 20px 0px 40px;
	text-align:left;
}
.header-trip p{
	font-size:18px;
	color:#fff;
	width:70%;
	padding: 5px 20px 30px 40px;
	text-align:justify;
}
@media (max-width: 800px) {
	.header-trip h1{
		font-size:32px;
		padding: 120px 20px 0px 40px;
	}
	.header-trip p{
		width:95%;
		padding: 5px 20px 30px 40px;
	}
}
/* /////////////////////////////*/
.breadcrumb{
	font-size:14px;
	color:#fff;
	width:90%;
	margin:15px auto;
}
.breadcrumb a{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	font-size:14px;
	color:#fff !important;
}
.trip-detail-container{
	width:900px;
	margin:0;
}
.long-description{
	line-height:1.5;
	text-align:justify;
}
.trip-info{
	width:300px;
	float:left;
	color:#fff;
	margin-bottom:25px;
}
.trip-image{
	width:600px;
	float:left;
}
.trip-image img{
	width:290px;
	margin:0 5px 5px 0;
	border-radius:4px;
}
.day-nr{
	width:15%;
	min-height:200px;
	background:url(../img/trip/trip-details/day-schedule-bg.png) repeat-y;
	float:left;
}
.day-info{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	font-size:16px;
	color:#fff;
	float:left;
	width:70%;
	text-align:justify;
}
.day-info h4{
	font-size:24px;
	margin:0;
	font-weight:bold;
}
.mainbutton-wrapper{
	width:500px;
	text-align:center;
	margin: 20px auto;
}
.primary{
	padding:10px 20px;
	border:1px solid #056657;
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	font-size:18px;
	color:#fff;
	text-align:center;
	border-radius:4px;
	margin:0 5px;
	background:#05594a;
}
.secondary{
	padding:10px 20px;
	border:1px solid #056657;
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	font-size:18px;
	color:#05594a;
	text-align:center;
	border-radius:4px;
	margin:0 5px;
	background:#fff;
	float:left;
}
.trip-info-content{
	color:#fff;
}
.trip-info-content p{
	margin:15px 0 10px 0;
}
.coral-bg{
	background: url(../img/trips-bg.jpg) 50% 100% fixed;
	background-size:cover;
}

@media (max-width: 950px) {
	.trip-detail-container{
		width:100%;
		margin:0;
	}
	.trip-image{
		width:100%;
		float:left;
	}
	.mainbutton-wrapper {
        width: 100%;
        text-align: center;
        margin: 20px auto;
    }
	.mainbutton-wrapper button {
        width: 100%;
        margin: 20px 0;
    }
	.day-nr{width:25%;min-height:310px;}
}


@media (max-width: 450px) {
	.day-nr img{
		width:50px;
		margin-left:24px;
	}
}
.price-details-large{
	width:100%;
	border: 2px solid #fff;
	border-radius:8px;
	padding:20px;
	height:auto;
	overflow:auto;
}
.price-details-large h2{
	font-size: 28px;
	color:#fff;
}
.price-details-container{
	width:100%;
}
.price-details-container div{
	width:30%;
	margin-right:15px;
	float: left;
	text-align:left;
	color:#fff;
	font-size:14px;
	margin-bottom:25px;
}
@media (max-width: 700px) {
.price-details-container div{
	width:100%;
	margin-right:0px;
	float: none;
	text-align:left;
	margin-bottom:25px;
}
}
/* Form Styling */
.form-container{
	width:550px;
	margin:0 auto;
	background:#fff;
	border:2px solid #28d4c9;
	padding:16px;
	overflow:auto;
	position:relative;
	top:120px;
	border-radius:10px;
	min-height:500px;
}
.close-x{
	position:absolute;
	right:20px;
	top:20px;
	font-size:24px;
}
.form-table h2{
	margin:0;
	color:#000;
}
.form-table p{
	margin:0;
	color:#000;
}
.form-table label{
	margin:5px 0;
	font-size:14px;
	font-weight:bold;
	line-height:2;
	color:#000;
}
label{
	color:#000;
}
input{
	width:100%;
	font-size:14px;
	padding:6px;
	margin-bottom:15px;
}
select{
	font-size:14px;
	padding:6px;
	width:100%;
	margin-bottom:15px;
}
textarea{
	 width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 14px;
  resize: none;
}
.submit-inquiry{
	line-height:2;
	background:#1d8780;
	color:#fff;
	font-size:16px;
	border-radius:4px;
	padding:13px 35px;
	border:0;
}

@media (max-width: 600px) {
.form-container{
	width:90%;
}
}