/*--------------------------------------------------------------
# Ventures Page
--------------------------------------------------------------*/
:root {
    --ventures-plate: linear-gradient(135deg, #1d3549 0%, #0e1f2d 100%);
    --ventures-navy: #223b51;
    --ventures-muted: #5d6b7a;
}

/* Intro */
.ventures-intro {
    padding: 130px 0 70px 0;
    background: linear-gradient(135deg, #223b51 0%, #16293a 100%);
    position: relative;
    overflow: hidden;
}

.ventures-intro::after {
    content: "";
    position: absolute;
    right: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 193, 52, 0.16) 0%, rgba(253, 193, 52, 0) 70%);
    pointer-events: none;
}

.ventures-intro .ventures-eyebrow {
    color: #fdc134;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ventures-intro h1 {
    color: #ffffff;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.ventures-intro .ventures-lead {
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 22px;
}

.ventures-intro p {
    color: #d7e3ee;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.ventures-intro .ventures-rule {
    width: 72px;
    height: 4px;
    background: #fdc134;
    border-radius: 2px;
    margin-bottom: 26px;
}

/* Section heads */
.ventures-section-head {
    margin-bottom: 42px;
}

.ventures-section-head h2 {
    font-weight: 800;
    font-size: 2.1rem;
    letter-spacing: -0.5px;
    color: var(--ventures-navy);
    margin-bottom: 12px;
}

.ventures-section-head .ventures-rule {
    width: 56px;
    height: 4px;
    background: #fdc134;
    border-radius: 2px;
    margin: 0 auto;
}

/* Shared logo plate */
.venture-plate {
    background: var(--ventures-plate);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
}

/* Brands whose lockup is drawn for light surfaces */
.venture-plate.venture-plate-light {
    background: linear-gradient(135deg, #ffffff 0%, #eaf0f6 100%);
    border-bottom: 1px solid #e6eaf1;
}

.venture-plate img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
}

/* Owned ventures - wide cards */
.venture-card {
    background: #ffffff;
    border: 1.5px solid #e6eaf1;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(34, 59, 81, 0.09);
    transition: box-shadow 0.22s ease, transform 0.18s ease;
}

.venture-card:hover {
    box-shadow: 0 12px 34px rgba(34, 59, 81, 0.16);
    transform: translateY(-4px);
}

.venture-card:hover .venture-plate img {
    transform: scale(1.05);
}

.venture-card .venture-plate {
    min-height: 150px;
}

.venture-card .venture-plate img {
    max-height: 88px;
}

.venture-body {
    padding: 26px 26px 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.venture-body h3 {
    font-family: 'Poppins', 'Raleway', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ventures-navy);
    margin-bottom: 6px;
}

.venture-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--ventures-muted);
    margin-bottom: 14px;
}

.venture-body p {
    color: #5a6672;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.venture-badge {
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #223b51;
    background: #fdc134;
    border-radius: 40px;
    padding: 5px 12px;
}

/* Partners - compact cards */
.partner-card .venture-plate {
    min-height: 120px;
    padding: 24px;
}

.partner-card .venture-plate img {
    max-height: 58px;
}

.partner-card .venture-body {
    padding: 22px 22px 24px 22px;
}

.partner-card .venture-body h3 {
    font-size: 1.18rem;
}

.partner-card .venture-body p {
    font-size: 0.96rem;
}

/* Closing statement */
.ventures-closing {
    background: linear-gradient(135deg, #223b51 0%, #16293a 100%);
    padding: 72px 0;
}

.ventures-closing h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.3rem;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.ventures-closing .ventures-rule {
    width: 72px;
    height: 4px;
    background: #fdc134;
    border-radius: 2px;
    margin: 0 auto 24px auto;
}

.ventures-closing p {
    color: #d7e3ee;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.ventures-cta {
    display: inline-block;
    background: #fdc134;
    color: #223b51;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    padding: 13px 34px;
    border-radius: 40px;
    transition: background 0.25s ease, transform 0.18s ease;
}

.ventures-cta:hover {
    background: #ffd166;
    color: #223b51;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer (mirrors index.css so the footer renders identically)
--------------------------------------------------------------*/
.company-info {
    margin-top: 15px;
}

.company-info .website-link {
    color: #fdc134 !important;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.company-info .website-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.kvk-info {
    color: #fff;
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fdc134;
    color: #223b51;
    transform: translateY(-3px);
}

.footer-logo {
    height: 30px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .ventures-intro {
        padding: 110px 0 56px 0;
    }

    .ventures-intro h1 {
        font-size: 2.3rem;
    }

    .ventures-intro .ventures-lead {
        font-size: 1.1rem;
    }

    .ventures-section-head h2 {
        font-size: 1.8rem;
    }

    .ventures-closing h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 575px) {
    .ventures-intro h1 {
        font-size: 1.95rem;
    }

    .venture-card .venture-plate {
        min-height: 128px;
        padding: 22px;
    }

    .venture-card .venture-plate img {
        max-height: 62px;
    }

    .venture-body {
        padding: 22px 20px 24px 20px;
    }

    .ventures-closing {
        padding: 56px 0;
    }
}

@media (max-width: 768px) {
    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
