/* Basis-Styles */
:root {
    /* Diese Variablen werden dynamisch durch PHP überschrieben */
    --primary: #4f46e5;
    --primary-light: rgba(79, 70, 229, 0.1);
    --primary-dark: #3730a3;
    --accent: #f59e0b;
    --success: #059669;
    --danger: #dc2626;
    --purple: #6b46c1;
    
    /* Zusätzliche Variablen, die konstant bleiben */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --white: #ffffff;
    --background-light: #fafafa;
    --background-tint: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */
.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.4rem;
    color: var(--primary);
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.15);
    }
    25% {
        transform: scale(1.05);
    }
    35% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand:hover i {
    animation-duration: 1s;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.navbar-brand:hover i {
    filter: drop-shadow(0 0 8px var(--primary-light));
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(
        to right,
        rgba(79, 70, 229, 0.85),
        rgba(129, 140, 248, 0.75)
    ), url('https://i.imgur.com/lP1aPSN.png') no-repeat center;
    background-size: cover;
    margin-top: -80px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    padding: 0 1rem;
    max-width: 800px;
    margin-bottom: 6rem;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Filter-Bereich */
.filter-container {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-top: -4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-light);
}

.form-label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.form-select, .form-control {
    border: 1px solid var(--border-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: #fafafa;
    transition: all 0.2s;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-primary {
    background: var(--success) !important;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #047857 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* Kurs-Karten */
.courses-wrapper {
    padding: 4rem 0;
}

/* Kompaktere, anklickbare Kurskarten */
.card {
    width: 100%;  /* Wichtig für gleichmäßige Breite */
    display: flex;
    flex-direction: column;
    height: auto;  /* Änderung von 100% zu auto */
    min-height: 250px;  /* Minimalhöhe für Konsistenz */
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.card-header {
    flex: 0 0 auto;  /* Header nicht flexibel */
    background: none;
    border: none;
    padding: 1.25rem 1.25rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* Kompaktere Info-Zeilen */
.course-info {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 1.25rem;
}

.course-info i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Modernerer Footer mit Preis */
.card-footer {
    flex: 0 0 auto;  /* Footer nicht flexibel */
    background: none;
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    margin-top: auto;  /* Drückt Footer nach unten */
}

.price-info {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-book {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
}

.btn-book:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Status-Badges */
.badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
}

.bg-success { background: var(--success) !important; }
.bg-danger { background: var(--danger) !important; }
.bg-purple { background: var(--purple) !important; }

/* Modernere Anreise-Seite */
.location-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.location-card:hover {
    transform: translateY(-3px);
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 1.5rem;
}

.location-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Feature-Grid für Standorte */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    height: 100%;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    line-height: 1.4;
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Farbige Akzente */
.accent-1 { color: #2563eb; }
.accent-2 { color: #7c3aed; }
.accent-3 { color: #059669; }
.accent-4 { color: #dc2626; }

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
    }
    
    .badge {
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    
    .location-card {
        margin: 1rem;
    }
}

/* Footer */
.footer {
    flex-shrink: 0;
    background: var(--text-primary);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-links i,
.footer-contact i {
    color: #fff;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Wrapper für den gesamten Content */
.page-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-content {
    flex: 1 0 auto;
    padding-bottom: 3rem; /* Mehr Abstand zum Footer */
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 4rem;
    }

    .filter-container {
        margin: -3rem 1rem 0;
        padding: 1.5rem;
    }

    .courses-wrapper {
        padding: 2rem 0;
    }

    .card {
        margin: 0 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Reset und Basis-Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1a1a1a;
}

/* Content-Bereich */
.content {
    flex: 1 0 auto;
    padding-top: 70px; /* Navbar-Höhe */
}

.footer-copyright {
    color: #fff; /* Hellerer Copyright-Text */
}

/* Modernerer Header */
.navbar-nav {
    margin-left: 1rem;
}

.navbar-nav .nav-link.active {
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    margin-top: -70px; /* Navbar-Höhe ausgleichen */
    background: linear-gradient(to right,
        rgba(79, 70, 229, 0.85) 0%,
        rgba(129, 140, 248, 0.7) 100%),
        url('https://i.imgur.com/lP1aPSN.png') no-repeat center;
    background-size: cover;
}

.hero-text {
    max-width: 800px;
    padding: 0 1rem;
    color: #fff;
    margin-top: 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Filter-Container */
.filter-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: -5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 0.5rem;
}

.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: #333;
    background-color: #fafafa;
    transition: all 0.2s;
}

.form-select:focus {
    background-color: #fff;
    border-color: #000;
    box-shadow: none;
}

/* Buttons */
.btn-primary {
    background: #000 !important;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

/* Monat-Überschrift */
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1.5rem;
}

/* Abstände */
.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

label {
    margin-bottom: 0.5rem;
    display: block;
}

/* Icons in Kurs-Karten */
.bi {
    display: inline-block;
    vertical-align: -0.125em;
}

/* Kurslisten-Container */
.courses-wrapper {
    padding-top: 2rem;
    min-height: 400px;
}

/* Mobile Anpassungen */
@media (max-width: 576px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Container Anpassungen */
.container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Kurs-Karten */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card-title {
    color: #111;
    font-weight: 600;
    font-size: 1.2rem;
}

.card-body {
    padding: 1.25rem;
}

/* Abstände */
.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

label {
    margin-bottom: 0.5rem;
    display: block;
}

/* Badges */
/* .bg-success { background: #00a67e !important; } */
/* .bg-danger { background: #dc3545 !important; } */
/* .bg-purple { background: #6b46c1 !important; } */

/* Kurs-Karten Anpassung */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0;
    background: none;
    border: none;
}

.card-title-wrapper {
    flex: 1;
}

.card-availability {
    text-align: right;
    margin-left: 1rem;
}

.card-availability .badge {
    font-size: 1rem;
    padding: 0.5em 1em;
}

/* Filter Inputs */
.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: #333;
    background-color: #fafafa;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: #fff;
    border-color: #000;
    box-shadow: none;
}

/* Preis-Info */
.price-info {
    font-weight: 500;
}

.price-info .fs-5 {
    margin: 0;
    line-height: 1;
}

/* Alert für "Keine Kurse" */
.alert-info {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

/* Beschreibung und Buttons entfernen */
.card-description,
.btn-info {
    display: none;
}

/* Container für die Karten */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col-md-6, .col-lg-4 {
    padding: 0.5rem;
    display: flex;
    height: 100%;
}

/* Innere Struktur der Karte */
.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.course-info-container {
    flex: 1 0 auto;  /* Flexibler Bereich */
    padding: 0.5rem 0;
}

.course-info {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 1.25rem;
}

.card-footer {
    flex: 0 0 auto;  /* Footer nicht flexibel */
    background: none;
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    margin-top: auto;  /* Drückt Footer nach unten */
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    padding: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-body {
    padding: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-category {
    margin-bottom: 2rem;
}

/* FAQ Accordion Styles anpassen */
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: rotate(-180deg);
}

/* Kontaktbereich in der Anreise-Seite */
.contact-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.contact-info i {
    font-size: 1.1rem;
    color: var(--primary);
}

.contact-info:last-child {
    margin-bottom: 0;
}

/* Lokale Fonts */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
         url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
         url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Info-Section Styles */
.info-section {
    margin-top: 2rem;
}

.info-section .row {
    min-height: 450px;
}

.map-card, .info-card {
    height: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.map-card {
    position: relative;
    overflow: hidden;
    display: flex;
}

.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Sicherstellen, dass das Bild zentriert ist */
}

.info-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.info-card .info-header {
    flex: 1;
    margin-bottom: 1.5rem;
}

.info-card .lead {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--primary);
    min-width: 1.25rem;
}

/* Travel Section Styles */
.travel-section .row {
    display: flex;
    flex-wrap: wrap;
}

.travel-section .col-md-4 {
    display: flex;
    margin-bottom: 1.5rem;
}

.travel-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.travel-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.travel-card-body p {
    margin-bottom: 1rem;
}

.travel-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Info Section Styles */
.info-section .row {
    min-height: 450px;
}

.map-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card .lead {
    margin-bottom: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Modal für Bildvergrößerung */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    cursor: zoom-out;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

/* FAQ-Seite anpassen */
.faq-section {
    margin-bottom: 4rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* Eine Spalte auf mobil */
    }
    
    .map-card img {
        height: 200px;
    }
}

/* Travel Section neu gestalten */
.travel-section .row {
    margin-bottom: 2rem;
}

.travel-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.travel-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.travel-card-body p {
    margin-bottom: 1rem;
}

.travel-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Gleiche Höhe für die Travel Cards */
.travel-section .row {
    display: flex;
    flex-wrap: wrap;
}

.travel-section .col-md-6 {
    display: flex;
}

.travel-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-light);
}

.travel-card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.travel-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.travel-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.travel-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Inhouse Page Styles */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s;
    width: 100%; /* Sicherstellen, dass die Breite nicht überschritten wird */
    box-sizing: border-box; /* Damit Padding und Border in der Breite enthalten sind */
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-options .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-options .btn-primary {
    background: var(--primary) !important;
    border: none;
}

.contact-options .btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.contact-options .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.contact-options .btn-outline-primary:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.contact-options i {
    font-size: 1.2rem;
}

.contact-options .btn-primary i {
    color: white; /* Weißes Icon im Primary Button */
}

.contact-options .btn-outline-primary i {
    color: var(--primary); /* Lila Icon im Outline Button */
}

@media (max-width: 576px) {
    .contact-options {
        flex-direction: column;
    }
    
    .contact-options .btn {
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }
}

/* 404 Page Styles */
.error-page {
    padding: 4rem 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content i {
    color: var(--primary);
}

.error-actions {
    margin-top: 2rem;
}

.error-actions .btn {
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
        margin-top: 0.5rem;
    }
}

/* Footer Styles */
.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--primary);
}

/* Telefon-Links generell */
a[href^="tel"] {
    color: inherit !important;
    text-decoration: none;
}

a[href^="tel"]:hover {
    color: var(--primary) !important;
}

/* Buchungsbestätigung */
.booking-success {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.booking-success-header {
    background: var(--success);
    margin: -2rem -2rem 2rem;
    padding: 1rem 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-success-header h1 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0;
}

.booking-success-header i {
    color: #fff;
    font-size: 1.5rem;
}

.booking-number {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.booking-number strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.booking-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.booking-info-item i {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.booking-info-item span {
    color: var(--text-primary);
}

.booking-notice {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.booking-actions .btn {
    min-width: 160px;
    padding: 0.75rem 1.5rem;
}

.btn-outline-secondary {
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.btn-outline-secondary:hover {
    background: #f8fafc;
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

@media (max-width: 768px) {
    .booking-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .booking-actions .btn {
        width: 100%;
    }
}

/* Inhouse Schulungen Grid */
.inhouse-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inhouse-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.inhouse-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.inhouse-box h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inhouse-box h3 i {
    color: var(--primary);
}

.inhouse-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .inhouse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil-Anpassungen für Benefits-Grid */
@media (max-width: 767.98px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Eine Spalte auf Mobilgeräten */
        width: 100%;
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        margin: 0;
    }
    
    .benefit-item i {
        font-size: 1.5rem; /* Icons auf Mobilgeräten etwas kleiner */
    }
}

@media (max-width: 767.98px) {
    .content-card {
        padding: 1.5rem; /* Weniger Padding auf Mobilgeräten */
    }
    
    /* Container-Anpassungen für mobile Geräte */
    .page-wrapper .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Bei kleineren Displays Text kleiner und Abstände verringern */
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .lead {
        font-size: 1rem;
    }
} 