/* ==========================================================================
   HTAsiaLink - Members Page Specific Styles
   ========================================================================== */

/* Utility Classes */
.text-orange { color: var(--primary-orange) !important; }
.text-blue { color: var(--primary-blue) !important; }

/* --------------------------------------
   Hero Banner Section
   -------------------------------------- */
.members-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(0, 67, 146, 0.9) 0%, rgba(0, 45, 98, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1515162816999-a0c47dc192f7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    margin-bottom: 60px;
}

.members-hero h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* --------------------------------------
   Member List Section (#member-list)
   -------------------------------------- */
.member-list-section {
    padding: 60px 0 100px;
    background-color: var(--bg-offwhite);
}

.member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 67, 146, 0.08);
    border-top-color: var(--primary-orange);
}

.member-card .member-icon {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.member-card:hover .member-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* --------------------------------------
   Global Collaboration Section (#global-collab)
   -------------------------------------- */
.global-collab-section {
    background-color: white !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partner-logo {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* --------------------------------------
   Join Section (#membership)
   -------------------------------------- */
.join-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002d62 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(30deg);
    pointer-events: none;
}

.join-section .btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.join-section .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* --------------------------------------
   Responsive Adjustments
   -------------------------------------- */
@media (max-width: 991px) {
    .members-hero {
        padding: 130px 0 60px;
    }
}