/* =====================================================
   Közös stílusok az SEO oldalakhoz
   ===================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 3rem 0;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.page-header p {
    margin: 0.5rem 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #1e40af;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.info-card-header {
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-header h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
    border: none;
    padding: 0;
}

.info-card-body {
    padding: 1.5rem;
}

/* Quick Facts */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.fact-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.fact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.fact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq-section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Route Links */
.routes-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.routes-section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.route-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.route-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.route-link:hover {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* Last Updated */
.last-updated {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Format Box */
.format-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.format-label {
    font-size: 0.8rem;
    color: #0369a1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.format-example {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0c4a6e;
    letter-spacing: 2px;
    word-break: break-all;
}

.format-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

/* Country Header */
.country-header {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 3rem 0;
}

.country-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.country-flag-large {
    font-size: 6rem;
}

.country-info h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
}

.country-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.country-badge {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 2rem;
    font-size: 0.9rem;
}

/* Route Header */
.route-header {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 3rem 0;
}

.route-direction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.route-country {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    min-width: 200px;
}

.route-country-flag {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.route-country-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.route-country-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.route-arrow {
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
}

/* Summary Cards */
.quick-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

/* Pair Notes */
.pair-notes {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.pair-notes h4 {
    color: #92400e;
    margin: 0 0 0.5rem;
}

.pair-notes p {
    color: #78350f;
    margin: 0;
}

/* Required Fields */
.required-fields-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.required-fields-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.required-fields-list li:last-child {
    border-bottom: none;
}

.field-icon {
    width: 32px;
    height: 32px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.field-icon.optional {
    background: #fef3c7;
}

/* IBAN Display */
.iban-header {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: white;
    padding: 3rem 0;
}

.iban-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.iban-flag {
    font-size: 5rem;
}

.iban-display {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.iban-display-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iban-display-value {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #0369a1;
    letter-spacing: 3px;
    word-break: break-all;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 0.5rem;
    border: 2px dashed #0ea5e9;
}

.iban-length {
    margin-top: 1rem;
    font-size: 1rem;
    color: #6b7280;
}

.iban-length strong {
    color: #0369a1;
    font-size: 1.25rem;
}

/* Structure Section */
.structure-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.structure-section h2 {
    margin-top: 0;
    color: #1f2937;
}

.structure-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.structure-part {
    text-align: center;
}

.structure-part-value {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.structure-part-value.country { background: #dbeafe; color: #1e40af; }
.structure-part-value.check { background: #dcfce7; color: #166534; }
.structure-part-value.bank { background: #fef3c7; color: #92400e; }
.structure-part-value.account { background: #f3e8ff; color: #7c3aed; }

.structure-part-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.structure-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.structure-table th,
.structure-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.structure-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

/* Related Links */
.related-links {
    margin-bottom: 2rem;
}

.related-links h2 {
    margin-bottom: 1rem;
}

.link-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.link-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.link-card:hover {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* Route header mobil nézet */
@media (max-width: 768px) {
    .route-header {
        padding: 1.5rem 0;
    }
    
    .route-direction {
        gap: 0.75rem;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .route-country {
        padding: 0.75rem 1rem;
        min-width: auto;
        flex: 1;
        max-width: 120px;
    }
    
    .route-country-flag {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .route-country-name {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .route-country-meta {
        font-size: 0.7rem;
    }
    
    .route-arrow {
        font-size: 1.5rem;
        flex-shrink: 0;
    }
}

/* =====================================================
   Disclaimer / Jogi nyilatkozat stílusok
   ===================================================== */

.disclaimer-note {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 1rem 0 2rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 3px solid #9ca3af;
}

.last-updated {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.last-updated p {
    margin: 0.5rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.last-updated p:first-child {
    margin-top: 0;
}

.last-updated p:last-child {
    margin-bottom: 0;
}

.last-updated strong {
    color: #374151;
}
