/* alleine-nach-england.css – Styles for blog/alleine-nach-england.html */

: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; }
html { scroll-behavior: smooth; }

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

.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--primary-color); color: white;
    padding: 8px; text-decoration: none; z-index: 100;
    border-radius: 0 0 4px 0;
}
.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; }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 1rem 0; margin-bottom: 0; font-size: 0.9rem; }
.breadcrumb-item + .breadcrumb-item::before { content: "\203A"; color: #6c757d; }

/* Hero Section */
.hero-section {
    position: relative;
    max-height: 420px;
    overflow: hidden;
}
.hero-section img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,30,80,0.85) 0%, rgba(0,30,80,0.3) 60%, transparent 100%);
    display: flex; align-items: flex-end;
}
.hero-content {
    padding: 2rem 1.5rem;
    color: white;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
}
.hero-content h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content .lead { font-size: 1.1rem; opacity: 0.95; }

/* TOC */
.toc {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.toc h2 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--primary-color); border: none; padding: 0; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.toc li { margin-bottom: 0.35rem; }
.toc a { color: var(--dark-color); text-decoration: none; font-size: 0.95rem; }
.toc a:hover { color: var(--primary-color); text-decoration: underline; }

/* Article Content */
.article-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}
.article-content h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}
.article-content h3 { color: var(--dark-color); font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.75rem 0; }
.article-content p { margin-bottom: 1rem; }

/* Info Boxes */
.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}
.info-box-title {
    font-weight: 600; color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.warning-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1rem; margin: 1.5rem 0; border-radius: 4px;
}
.success-box {
    background: #d4edda;
    border-left: 4px solid var(--success-color);
    padding: 1rem; margin: 1.5rem 0; border-radius: 4px;
}
.danger-box {
    background: #f8d7da;
    border-left: 4px solid var(--danger-color);
    padding: 1rem; margin: 1.5rem 0; border-radius: 4px;
}

/* Tips List */
.tips-list { list-style: none; padding: 0; margin: 1rem 0; }
.tips-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-bg);
}
.tips-list li::before {
    content: "\2713"; position: absolute; left: 0;
    color: var(--success-color); font-weight: bold; font-size: 1.2rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1.5rem; margin: 2rem 0;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}
.quote-box::before {
    content: "\201C"; font-size: 3rem;
    color: var(--primary-color); opacity: 0.3;
    position: absolute; top: -10px; left: 10px;
}
.quote-author { text-align: right; font-style: normal; font-weight: 600; color: var(--primary-color); margin-top: 0.5rem; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; }
.stat-card {
    background: white; border: 2px solid var(--light-bg);
    border-radius: 10px; padding: 1.5rem; text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.stat-label { color: #6c757d; font-size: 0.9rem; margin-top: 0.5rem; }

/* Cost Table */
.cost-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.cost-table th, .cost-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-color); text-align: left; }
.cost-table th { background: var(--light-bg); font-weight: 600; color: var(--primary-color); }
.cost-table tr:hover { background: #f1f5ff; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white; padding: 2rem; border-radius: 10px;
    text-align: center; margin: 2rem 0;
}
.cta-section h3 { font-size: 1.5rem; margin-bottom: 1rem; color: white; border: none; }
.btn-cta {
    display: inline-block; background: white;
    color: var(--primary-color); padding: 0.75rem 2rem;
    border-radius: 50px; text-decoration: none; font-weight: 600;
    transition: all 0.3s ease; margin-top: 1rem;
}
.btn-cta:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(255,255,255,0.3); color: var(--primary-color); }

/* Content Image */
.content-image {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}
.content-image img {
    width: 100%; height: auto; display: block;
}
.content-image figcaption {
    font-size: 0.8rem; color: #6c757d;
    padding: 0.5rem 0; text-align: center;
}

/* Map Section */
.map-section { margin: 2rem 0; }
.map-section iframe {
    width: 100%; height: 350px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

/* Sidebar */
.sidebar { margin-top: 2rem; }
.sidebar-widget {
    background: white; padding: 1.5rem;
    border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}
.sidebar-widget h3 {
    color: var(--primary-color); font-size: 1.2rem;
    margin-bottom: 1rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

/* Footer */
footer { background: var(--dark-color); color: white; padding: 2rem 1rem 1rem; margin-top: 3rem; }
footer h4 { color: var(--accent-color); font-size: 1.1rem; margin-bottom: 1rem; }
footer ul { list-style: none; padding: 0; }
footer a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: var(--accent-color); }

/* Desktop */
@media (min-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .article-content { padding: 2.5rem; }
    .article-content h2 { font-size: 1.75rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .content-wrapper { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; max-width: 1200px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .sidebar { margin-top: 0; }
}

/* Print */
@media print {
    .navbar, footer, .sidebar, .skip-link, .cta-section, .toc, .hero-section { display: none; }
    .article-content { box-shadow: none; border: 1px solid #000; }
}
