/* ============================================================================
   PEPPOL BLUE BLOCKS - CSS STYLING
   Voor gebruik met ACF Flexible Content
   ============================================================================ */

:root {
    --primary: #d2691e;
    --secondary: #173752;
}

/* ============================================================================
   BLUE HEADER BLOCK
   ============================================================================ */

.peppol-blue-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #173752;
    color: white;
    padding: 15px 0 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.peppol-breadcrumb {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.peppol-breadcrumb a {
    color: white !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.peppol-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.peppol-blue-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white !important;
}

.peppol-blue-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ============================================================================
   BLUE CTA BLOCK
   ============================================================================ */

.peppol-blue-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0px;
    margin-bottom: 0;
    background-color: var(--secondary);
    border-radius: 0;
    padding: 50px 50px 0 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.peppol-cta-content {
    position: relative;
    z-index: 1;
}

.peppol-blue-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white !important;
}

.peppol-blue-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.peppol-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.peppol-cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.peppol-primary-button {
    background-color: var(--primary);
    color: white !important;
    box-shadow: none;
}

.peppol-primary-button:hover {
    background-color: #b85c1a;
    transform: translateY(-2px) scale(1.02);
    text-decoration: none;
}

.peppol-secondary-button {
    background-color: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.peppol-secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .peppol-blue-header h1 {
        font-size: 2.5rem;
    }
    
    .peppol-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .peppol-blue-cta {
        padding: 40px 25px;
    }
    
    .peppol-cta-button {
        width: 100%;
        max-width: 300px;
    }
}