/* vergleich/po-ferries.css – P&O Ferries Detailseite */

: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;
    --po-blue: #003c7d;
}

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

/* Navigation */
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary-color);
}

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

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

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

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0,47,108,0.85) 0%, rgba(0,86,179,0.8) 100%),
                url('/images/calais-dover-po-ferries.jpg') center/cover no-repeat;
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* Company Logo */
.company-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--po-blue);
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.toc h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--po-blue);
}

.toc ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.toc li {
    margin-bottom: 0.35rem;
}

.toc a {
    text-decoration: none;
    color: var(--primary-color);
}

.toc a:hover {
    text-decoration: underline;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card h2 {
    color: var(--po-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fleet Cards */
.fleet-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--po-blue);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fleet-card h3 {
    color: var(--po-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.service-item i {
    color: var(--po-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Price Table */
.price-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-table th {
    background: var(--po-blue);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--po-blue) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-cta {
    background: white;
    color: var(--po-blue);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--po-blue);
}

/* Rating */
.rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.rating i {
    font-size: 1.25rem;
}

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

/* Mobile Optimization */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Outline-Light Button (Hero auf dunklem Hintergrund) */
.btn-outline-light {
    background-color: rgba(255,255,255,0.08);
    border: 2px solid #fff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: #fff;
    color: var(--po-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Skip Link */
.skip-link:focus {
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar, .cta-section, .btn-cta, .map-container, .toc {
        display: none;
    }

    .info-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
