@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --primary-green: #198754;
    --light-green: #2ecc71;
    --dark-green: #0d5132;
    --accent-gold: #ffc107;
    --soft-bg: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background-color: #fff;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(13, 81, 50, 0.7)
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.text-highlight {
    color: var(--accent-gold) !important;
}

/* ==========================
   SEARCH BOX
========================== */

.search-container {
    max-width: 600px;
    margin: -30px auto 50px;
    position: relative;
    z-index: 10;
}

.search-input {
    border-radius: 12px;
    border: 2px solid var(--light-green);
    padding: 12px 20px 12px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, .15);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

/* ==========================
   BANOM CARD
========================== */

.banom-item {
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all .3s ease;
    margin-bottom: 30px;
}

.circle-wrapper {
    width: 180px;
    height: 180px;
    border: 2px solid var(--light-green);
    border-radius: 50%;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    padding: 25px;

    position: relative;
    overflow: hidden;

    transition: all .3s ease;
}

.banom-item:hover .circle-wrapper {
    transform: translateY(-6px);
    background: #f0fff4;
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.25);
}

.banom-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .3s ease;
}

.banom-item:hover .banom-logo {
    transform: scale(1.05);
}

.banom-label {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;

    padding: 8px 25px;
    border-radius: 50px;

    font-size: .9rem;
    font-weight: 700;

    box-shadow: 0 4px 10px rgba(0,0,0,.05);

    transition: all .3s ease;
}

.banom-item:hover .banom-label {
    background: var(--primary-green);
    color: #fff;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .circle-wrapper {
        width: 140px;
        height: 140px;
        padding: 20px;
    }

    .banom-label {
        font-size: .8rem;
        padding: 8px 12px;
    }

    .hero-section {
        padding: 60px 0;
    }
}