/* /nieuwe-bedrijven/css/style.css */

/* --- Algemene Stijlen voor de Pagina --- */
.new-companies-page .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Hero Sectie --- */
.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/header-paginas.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
    /* Aanname gebaseerd op je andere pagina */
}

.page-hero h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 700px;
    opacity: 0.9;
}

/* --- Content Sectie --- */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 26px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
}

/* --- Bedrijven Container --- */
.companies-container {
    max-width: 800px;
    margin: 0 auto;
}

.month-section {
    margin-bottom: 50px;
}

.month-section h3 {
    font-size: 28px;
    color: #c0392b;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.company-list {
    list-style: none;
    padding-left: 0;
}

.company-list li {
    padding: 15px 10px;
    font-size: 17px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.company-list li:last-child {
    border-bottom: none;
}

.company-list li:nth-child(odd) {
    background-color: #f8f9fa;
}

.company-list li strong {
    color: #333;
    flex-basis: 60px;
    /* Vaste breedte voor de datum */
}

.company-list .location {
    color: #555;
    font-style: italic;
}

.company-list .kvk {
    color: #888;
    font-size: 14px;
    margin-left: auto;
    /* Duwt het KVK-nummer naar rechts */
    background-color: #e9ecef;
    padding: 3px 8px;
    border-radius: 4px;
}


/* --- Call to Action (CTA) Sectie --- */
.cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #343a40;
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 28px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button .btn-update {
    display: inline-block;
    background-color: #c0392b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #c0392b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button .btn-update:hover {
    background-color: #a93226;
}


/* --- Responsive aanpassingen --- */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .content-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .company-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .company-list .kvk {
        margin-left: 0;
        margin-top: 5px;
    }
}