/* motorrad-tour-calais-dover.css — Motorrad-Fähre Calais-Dover */

:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --accent-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
}

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

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary-color);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background: var(--light-bg);
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* TOC */
.toc-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc-box h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.toc-list li {
    margin-bottom: 0.4rem;
}

.toc-list a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

/* Image figure */
.content-image {
    margin: 1.5rem 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.content-image figcaption {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Tips and Warnings */
.tip-box {
    background: var(--light-bg);
    border-left: 4px solid var(--success-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.warning-box {
    background: #fff5e6;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.danger-box {
    background: #fef2f2;
    border-left: 4px solid var(--danger-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.tip-box h4, .warning-box h4, .danger-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Icon Lists */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.icon-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Quote Box */
.quote-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.quote-box::before {
    content: '\201E';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    opacity: 0.3;
}

/* Info Cards */
.info-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.info-card h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Cost Table */
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cost-table th, .cost-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cost-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cost-table tr:nth-child(even) {
    background: var(--light-bg);
}

.cost-table tfoot td {
    font-weight: 700;
    border-top: 2px solid var(--primary-color);
}

/* FAQ Section */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}

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

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Related Articles */
.related-articles {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.related-articles h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.related-article-card {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-article-card:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (min-width: 768px) {
    .navbar { padding: 0.75rem 0; }
    .article-header { padding: 3rem 0 2rem; }
    .article-header h1 { font-size: 2.5rem; }
    .content-section { padding: 2rem; }
    .content-section h2 { font-size: 1.75rem; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .related-articles { padding: 2rem; }
    .toc-list { columns: 2; }
    .map-container iframe { height: 450px; }
}

@media (min-width: 992px) {
    .article-header { padding: 4rem 0 3rem; }
    .content-section { padding: 2.5rem; }
    .info-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Print */
@media print {
    .navbar, footer, .related-articles, .toc-box { display: none; }
    .content-section { box-shadow: none; border: 1px solid #000; margin-bottom: 1rem; }
    .article-header { background: none; color: #000; border-bottom: 2px solid #000; }
}
