body {
    background-color: #fcfcfc;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Header Section */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #00000041;
    box-shadow: 0 2px 5px #0000001a;
}

.navbar {
    background-color: transparent;
    color: #ffffff;
    padding: 10px;
}

.navbar-brand,
.nav-link,
.navbar-text {
    color: #ffffff !important;
}

.nav-link:hover {
    color: #cccccc !important;
}

/* Hero Section */
.hero-section {
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 24px #0002;
    display: flex;
    align-items: stretch;
}

.hero-image-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) blur(0px);
}

.hero-text-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 210px;
    padding: 100px 0 0 0px;
    text-align: center;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #000a;
    margin: 0;
    text-transform: uppercase;    
}


.modal{
    .modal-dialog.modal-lg.modal-dialog-centered{
        .modal-content{
            .modal-body{
                .partner-modal-post-card{
                    display: none;
                }
            }
        }
    }
}

/* =============================
   Mobile 3-row layout fix for partner card ONLY (hero section untouched)
   ============================= */
@media (max-width: 780px) {
    /*
    මෙය mobile එකේදී partner card එකේ 3-row layout එකට පමණක් බලපායි.
    hero section එකේ button/filters වලට කිසිදු style එකක් වෙනස් නොවේ.
    */
    .partner-card.flex-row {
        flex-direction: column !important;
        align-items: center !important;
    }
    .partner-logo {
        margin: 0 auto 14px auto !important;
        display: block !important;
        order: 1 !important;
    }
    .partner-info {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 18px !important;
        order: 2 !important;
    }
    .view-posts-btn {
        width: 100% !important;
        margin: 0 0 0 0 !important;
        padding: 12px 0 !important;
        font-size: 1.05rem !important;
        border-radius: 24px !important;
        font-weight: 600 !important;
        order: 3 !important;
        margin-top: 8px !important;
    }
}