/* ============================================================
   Partners Page
   Scope: partners.blade.php
   Brand: #006600 (green) | #DC5D01 (orange)
   ============================================================ */

:root {
    --p-green:        #006600;
    --p-green-dark:   #004d00;
    --p-orange:       #DC5D01;
    --p-orange-dark:  #c44f00;
    --p-gold:         #F5CA4A;
    --p-border:       #e0e1dd;
    --p-muted:        #666666;
    --p-body-bg:      #f8fafc;
}

/* ── Partner-page header hero ───────────────────── */

.breadcrum_header {
    background-image: url('/images/partners/banner.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.breadcrum_header_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.partners-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 70, 4, 0.82);
}

.breadcrum_header_text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 1rem;
}

.partners-hero-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin-bottom: 0.85rem;
    font-family: 'Nunito', sans-serif;
}

.breadcrum_header_text h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-family: 'Spectral SC', sans-serif;
}

.partners-hero-lead {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 740px;
    line-height: 1.85;
    margin: 0 auto 2rem;
    font-family: 'Nunito', sans-serif;
}

.partners-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--p-orange);
    color: #ffffff;
    border: 2px solid var(--p-orange);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    font-family: 'Nunito', sans-serif;
}

.partners-hero-btn:hover {
    background: var(--p-orange-dark);
    border-color: var(--p-orange-dark);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Partner cards ──────────────────────────────── */

.bordered-div {
    border-top: 6px solid #006600;
    border-left: 6px solid #EFB443;
    border-right: 6px solid #EFB443;
    border-bottom: 6px solid #006600;
}

.pc-padding {
    padding-left: 3rem;
    padding-right: 3rem;
}

.style-banner {
    padding: 100px 100px 0px 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
}

.divider {
    width: 2px;
    background: #006600;
    height: 100%;
    top: 100px;
    left: 50%;
}

.horizontal-top {
    width: 50%;
    background: #006600;
    height: 5px;
    top: 0;
    right: 0;
}

.vertical-top {
    width: 5px;
    background: #EFB443;
    height: 30%;
    top: 0;
    right: 0;
}

.vertical-bottom {
    width: 5px;
    background: #EFB443;
    height: 50%;
    bottom: 0;
    left: 0;
}

.horizontal-bottom {
    width: 50%;
    background: #006600;
    height: 5px;
    bottom: 0;
    left: 0;
}

.card {
    padding: 30px;
    border: none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.image-content {
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px 10px 0px 10px;
    margin: auto;
    padding: 20px;
}

.image-content img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* ── Responsive ─────────────────────────────────── */

@media screen and (max-width: 900px) {
    .style-banner {
        padding: 50px 50px 0px 50px;
        gap: 3rem;
    }

    .divider {
        top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .pc-padding {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .breadcrum_header {
        min-height: 520px;
    }

    .partners-hero-lead {
        font-size: 0.92rem;
    }
}

@media screen and (max-width: 700px) {
    .style-banner {
        grid-template-columns: repeat(1, 1fr);
    }

    .divider {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .breadcrum_header {
        min-height: 580px;
    }
}

@media screen and (max-width: 400px) {
    .style-banner {
        padding: 50px 10px 0px 10px;
    }
}
