:root {
    --aylf-purple: #5d2c8a;
    --aylf-gold: #c9a227;
    --aylf-olive: #6c7c32;
    --aylf-black: #111111;
    --aylf-white: #ffffff;
    --aylf-light: #f8f9fa;
}

body {
    background-color: var(--aylf-light);
    color: var(--aylf-black);
    font-family: Arial, sans-serif;
}

.navbar-brand,
.section-title,
.member-name {
    font-weight: 700;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 20px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--aylf-purple) !important;
}

.navbar .form-control {
    border-radius: 20px;
    padding-left: 12px;
}

.navbar .btn-aylf {
    border-radius: 20px;
    padding: 6px 14px;
}
.hero-section {
    background: linear-gradient(135deg, var(--aylf-purple), var(--aylf-olive));
    color: var(--aylf-white);
    padding: 70px 0;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

.search-box {
    background: var(--aylf-white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top: -35px;
    position: relative;
    z-index: 3;
}

.member-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    background: #fff;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.badge-verified {
    background: var(--aylf-gold);
    color: var(--aylf-white);
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
}

.btn-aylf {
    background: var(--aylf-purple);
    color: var(--aylf-white);
    border: none;
}

.btn-aylf:hover {
    background: var(--aylf-olive);
    color: var(--aylf-white);
}

.btn-outline-aylf {
    border: 1px solid var(--aylf-purple);
    color: var(--aylf-purple);
}

.btn-outline-aylf:hover {
    background: var(--aylf-purple);
    color: var(--aylf-white);
}

.profile-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.profile-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.info-label {
    font-weight: 700;
    color: var(--aylf-purple);
}
.partner-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.partner-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    margin: 0 auto;
}

.partner-placeholder {
    width: 65px;
    height: 65px;
    background: var(--aylf-purple);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}
.footer-section {
    background: var(--aylf-black);
    color: var(--aylf-white);
    padding: 30px 0;
    margin-top: 50px;
}