/* vergleich/brittany-ferries.css – Brittany Ferries Alternativrouten-Seite */

:root {
    --bf-navy:   #00245b;
    --bf-blue:   #0055a5;
    --bf-orange: #e8640c;
    --bf-light:  #e8f0fa;
    --fr-blue:   #002395;
    --fr-red:    #ED2939;
    --gold:      #c8a03a;
    --dark:      #212529;
    --light-bg:  #f8f9fa;
    --border:    #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

/* Navigation */
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--bf-navy);
}
.navbar-brand { color: var(--bf-navy) !important; font-weight: 700; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bf-navy) 0%, var(--bf-blue) 60%, #1a6fc4 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 60px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.page-header .lead { font-size: 1.15rem; opacity: 0.9; }

/* Quick Stats Bar */
.stats-bar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,36,91,0.12);
    padding: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
}
.stat-item { text-align: center; min-width: 100px; }
.stat-value { font-size: 1.6rem; font-weight: 700; color: var(--bf-navy); line-height: 1.1; }
.stat-label { font-size: 0.78rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.05em; }

/* Section Titles */
.section-title {
    color: var(--bf-navy);
    font-weight: 700;
    border-left: 4px solid var(--bf-orange);
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Route Cards */
.route-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}
.route-card:hover {
    border-color: var(--bf-blue);
    box-shadow: 0 4px 16px rgba(0,85,165,0.12);
}
.route-card .route-badge {
    display: inline-block;
    background: var(--bf-navy);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.route-card .route-badge.overnight { background: #4a4a8a; }
.route-card .route-badge.fast      { background: var(--bf-orange); }
.route-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--bf-navy); margin-bottom: 0.25rem; }
.route-card .route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.route-meta-item {
    background: var(--bf-light);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.82rem;
    color: var(--bf-navy);
    font-weight: 500;
}

/* Comparison Table */
.compare-table { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.compare-table thead { background: var(--bf-navy); color: white; }
.compare-table th { font-weight: 600; padding: 0.85rem 1rem; }
.compare-table td { padding: 0.75rem 1rem; vertical-align: middle; }
.compare-table tbody tr:nth-child(odd) { background: var(--bf-light); }
.winner-bf { font-weight: 600; color: var(--bf-navy); }
.winner-cd { font-weight: 600; color: #007b5e; }
.badge-bf { background: var(--bf-navy); color: white; font-size: 0.72rem; padding: 2px 8px; border-radius: 10px; }
.badge-cd { background: #007b5e; color: white; font-size: 0.72rem; padding: 2px 8px; border-radius: 10px; }
.badge-tie { background: #888; color: white; font-size: 0.72rem; padding: 2px 8px; border-radius: 10px; }

/* Ship Cards */
.ship-card {
    border-radius: 12px;
    border: 2px solid var(--border);
    padding: 1.25rem;
    background: white;
    transition: border-color 0.2s;
    height: 100%;
}
.ship-card:hover { border-color: var(--bf-blue); }
.ship-card .ship-name { font-size: 1.05rem; font-weight: 700; color: var(--bf-navy); }
.ship-card .ship-route { font-size: 0.82rem; color: var(--bf-orange); font-weight: 600; }

/* When-to-choose boxes */
.choose-box {
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}
.choose-bf { background: linear-gradient(135deg, var(--bf-navy), var(--bf-blue)); color: white; }
.choose-cd { background: linear-gradient(135deg, #007b5e, #00a878); color: white; }
.choose-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.choose-box ul { padding-left: 1.25rem; margin: 0; }
.choose-box li { margin-bottom: 0.4rem; opacity: 0.95; }

/* Cabin Section */
.cabin-highlight {
    background: linear-gradient(135deg, #1a1a4a 0%, var(--bf-navy) 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
}
.cabin-highlight h2 { color: white; font-weight: 700; }
.cabin-type {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}
.cabin-type .cabin-price { font-size: 1.3rem; font-weight: 700; color: #ffd54f; }
.cabin-type .cabin-name { font-size: 0.85rem; opacity: 0.85; }

/* FAQ Accordion */
.accordion-button { font-weight: 600; }
.accordion-button:not(.collapsed) { color: var(--bf-navy); background: var(--bf-light); }
.accordion-button::after { filter: none; }

/* Sidebar */
.sidebar-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 1.25rem;
}
.sidebar-card .card-header {
    background: var(--bf-navy);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1rem;
}

/* Breadcrumb */
.breadcrumb-wrapper { background: var(--bf-light); padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb { margin: 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--bf-navy); text-decoration: none; }
.breadcrumb-item.active { color: #6c757d; }

/* Drive-time visual */
.drive-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: var(--bf-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.drive-step .flag { font-size: 1.1rem; }
.drive-step .time-badge {
    margin-left: auto;
    background: var(--bf-navy);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* CTA Buttons */
.btn-bf-primary {
    background: var(--bf-orange);
    border-color: var(--bf-orange);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
}
.btn-bf-primary:hover { background: #c75409; border-color: #c75409; color: white; }
.btn-bf-outline {
    border: 2px solid var(--bf-navy);
    color: var(--bf-navy);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    background: transparent;
}
.btn-bf-outline:hover { background: var(--bf-navy); color: white; }

/* Alert box */
.tip-box {
    background: linear-gradient(135deg, #fff8e6, #fff3d4);
    border-left: 4px solid var(--bf-orange);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
}

@media (max-width: 767.98px) {
    .page-header h1 { font-size: 1.7rem; }
    .stat-value { font-size: 1.3rem; }
    .stats-bar { gap: 0.5rem; }
}
