* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fff;
}

/* Links global */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 100%;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.header-links {
    display: flex;
    gap: 1rem;
}

.header-links a {
    color: #999;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #0066cc;
}

.header-links a.active {
    color: #0066cc;
    font-weight: 600;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.service-label {
    color: #666;
    font-weight: 500;
}

.service-number {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    padding: 2.25rem 1.5rem;
    background: url('/assets/img/hero-kreuzfahrt.webp') center center no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
}

.hero.hero-compact {
    padding: 1.75rem 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero.hero-compact h1 {
    font-size: 2.3rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.hero-cta-group {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.1s ease;
    text-decoration: none;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
}

.btn-primary:hover {
    background: #0052a3;
    box-shadow: 0 8px 20px rgba(0, 82, 163, 0.4);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

/* Page Header (Unterseiten) */
.page-header {
    margin-top: 80px;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #0066cc 100%);
    text-align: center;
    width: 100%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs-section {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: #777;
}

.breadcrumbs a {
    color: #0066cc;
}

.breadcrumbs li span {
    color: #555;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 2rem;
    width: 100%;
}

max-width: none;
margin: 0;
padding: 0.75rem 0.5rem;
border-bottom: 1px solid #e5e5e5;
text-align: center;
}

.disclaimer-content strong {
    color: #333;
}

.disclaimer-content a {
    color: #0066cc;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

/* Iframe Section komplett auf volle Breite ziehen */
.iframe-section {
width: 100%;
margin: 0;
padding: 0;
background: #fff;
border-bottom: 1px solid #e5e5e5;
}

.iframe-container {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
position: relative;
}

#xtibe {
display: block;
width: 100vw;
max-width: 100%;
border: none;
min-height: 800px;
margin: 0;
}

/* Contentbereiche */
.section-wide {
    width: 100%;
    background: #ffffff;
}

.section-alt {
    background: #f8f9fb;
}

.section-wide .content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

.section-wide h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #14213d;
    font-weight: 700;
}

.section-wide h3 {
    font-size: 1.3rem;
    margin: 1.75rem 0 0.75rem;
    color: #1f3b5c;
    font-weight: 600;
}

.section-wide p {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    color: #333;
}

/* Layouts */
.two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

/* Karten */
.card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card p {
    margin-bottom: 0.75rem;
}

/* Listen */
.checklist,
.benefit-list {
    list-style: none;
    margin-top: 0.75rem;
}

.checklist li,
.benefit-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.96rem;
}

.checklist li::before,
.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00a8e8;
}

/* CTA Box */
.cta-box {
    margin-top: 2.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 104, 204, 0.08), rgba(0, 168, 232, 0.08));
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* HowTo Liste */
.howto-list {
    list-style: none;
    margin-top: 1.5rem;
    counter-reset: step;
}

.howto-list li {
    position: relative;
    padding-left: 2.3rem;
    margin-bottom: 1.5rem;
}

.howto-list li h3 {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.howto-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* FAQ Akkordeon */
.faq {
    margin-top: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e4ea;
    background: #ffffff;
    overflow: hidden;
}

.faq-item {
    border-top: 1px solid #e0e4ea;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 1.25rem;
    color: #0066cc;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Content Section Unterseiten */
.content-section {
    width: 100%;
    background: #fff;
    min-height: calc(100vh - 280px);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Iframes Unterseiten */
#agb-iframe,
#datenschutz-iframe,
#buchungsinfos-iframe {
    display: block;
    width: 100%;
    border: none;
    min-height: 10000px;
    height: auto;
}

/* Impressum */
.content-section.impressum {
    padding: 4rem 2rem;
}

.content-container.impressum {
    max-width: 900px;
}

.imprint-intro {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.imprint-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.imprint-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
}

.imprint-label {
    font-weight: 600;
    color: #666;
}

.imprint-value {
    color: #333;
}

.imprint-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}

.imprint-footer {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
}

.imprint-footer a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.imprint-footer a:hover {
    color: #004999;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1.5rem;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00a8e8;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a8e8 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-links {
        display: none;
    }

    .header-right {
        gap: 0.25rem;
    }

    .logo-image {
        height: 40px;
    }

    .hero {
        padding: 1.75rem 1.25rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .service-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }

    .service-label {
        font-size: 0.75rem;
    }

    .service-number {
        font-size: 0.95rem;
    }

    .disclaimer-content {
        font-size: 0.75rem;
        text-align: left;
    }

    .iframe-section {
        padding: 1.25rem 0 1.75rem;
    }

    .iframe-container {
        padding: 0 1.25rem;
    }

    .section-wide .content-container {
        padding: 2.25rem 1.5rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .imprint-content {
        padding: 2rem 1.5rem;
    }

    .imprint-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.cookie-banner {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
background: rgba(15, 23, 42, 0.96);
color: #ffffff;
padding: 0.9rem 1.5rem;
box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
}

.cookie-banner-inner {
max-width: 1600px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 1rem;
}

.cookie-banner-text a {
color: #00a8e8;
text-decoration: none;
}

.cookie-accept-btn {
border: none;
cursor: pointer;
padding: 0.5rem 1.3rem;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 600;
background: #00a8e8;
color: #ffffff;
}

@media (max-width: 768px) {
.iframe-section {
padding: 0;
}
.iframe-section .disclaimer-content {
padding: 0.75rem 0.5rem;
}
.iframe-container {
padding: 0;
}
#xtibe {
width: 100vw;
}
}



/* Zusatzstyles für edlere Content-Optik (append am Ende von styles.css) */
.section-wide { width: 100%; background: #fff; padding: 3.5rem 2rem; }
.section-wide.section-alt { background: #f8f9fa; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; }
.content-container { max-width: 1100px; margin: 0 auto; }
.lead { font-size: 1.1rem; color: #222; max-width: 900px; margin: 0 auto 1.5rem; }
.kicker { font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 0.75rem; }
.hero-compact { padding: 2.25rem 2rem; }
.hero-compact .hero-subtitle { max-width: 900px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid #e5e5e5; border-radius: 14px; padding: 1.35rem 1.35rem 1.15rem; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: #333; }

.info-tiles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin: 1.5rem 0 0; }
@media (max-width: 900px) { .info-tiles { grid-template-columns: 1fr; } }
.tile { background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.55); border-radius: 14px; padding: 1.1rem 1.1rem 0.95rem; text-align: left; box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.tile-title { font-weight: 800; color: #0b2b55; margin-bottom: 0.35rem; }
.tile-meta { font-size: 0.92rem; color: #2b2b2b; }
.badge { display: inline-block; font-size: 0.78rem; font-weight: 700; padding: 0.25rem 0.55rem; border-radius: 999px; background: rgba(0,102,204,0.10); color: #0b2b55; border: 1px solid rgba(0,102,204,0.18); margin-bottom: 0.6rem; }

.cta-box { background: #f0f7ff; border-left: 4px solid #0066cc; padding: 1.35rem 1.35rem 1.15rem; border-radius: 10px; margin: 2rem 0; }
.cta-box h3 { margin-bottom: 0.35rem; }
.cta-box p { margin-bottom: 0.85rem; color: #333; }

.btn-primary, .btn-secondary { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 10px; padding: 0.85rem 1.05rem; }
.btn-primary { background: #0066cc; color: #fff; }
.btn-secondary { background: rgba(0,102,204,0.10); color: #0b2b55; border: 1px solid rgba(0,102,204,0.22); }
.hero-cta-group { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }

.breadcrumbs-section { padding: 0.9rem 2rem; background: #fff; border-bottom: 1px solid #e5e5e5; }
.breadcrumbs { max-width: 1600px; margin: 0 auto; }
.breadcrumbs ol { list-style: none; display: flex; gap: 0.5rem; flex-wrap: wrap; color: #666; font-size: 0.9rem; }
.breadcrumbs a { color: #0066cc; text-decoration: none; }
.breadcrumbs li::after { content: "/"; margin-left: 0.5rem; color: #bbb; }
.breadcrumbs li:last-child::after { content: ""; margin: 0; }

.faq { margin-top: 1.25rem; }
.faq-item { border: 1px solid #e5e5e5; border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 0.75rem; box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: #fff; border: 0; cursor: pointer; text-align: left; }
.faq-question h3 { font-size: 1.02rem; margin: 0; }
.faq-icon { color: #0066cc; font-weight: 800; }
.faq-answer { display: none; padding: 0 1.1rem 1.1rem; color: #333; }
.faq-item.open .faq-answer { display: block; }





@media (max-width: 768px) {
.section-wide .content-container {
max-width: 100%;
padding: 0;
}
}