/* Banza University Section Styles for Home Page */
.university-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.banza-university-logo {
    max-width: 180px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.banza-university-logo-light {
    display: block;
}

.banza-university-logo-dark {
    display: none;
}

body[data-theme="dark"] .banza-university-logo-light {
    display: none;
}

body[data-theme="dark"] .banza-university-logo-dark {
    display: block;
}

.banza-university-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(235, 181, 64, 0.4)) brightness(1.05);
}

/* University Intro Section */
.university-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.university-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--bbf-gold);
    font-weight: 700;
}

.university-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EBB540, #F5D67D);
    opacity: 0.8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #EBB540;
    background: rgba(235, 181, 64, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* University Programs */
.university-programs {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.university-programs h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--bbf-gold);
    font-weight: 700;
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.program-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.program-icon {
    font-size: 1.8rem;
    color: var(--bbf-gold);
    background: rgba(235, 181, 64, 0.1);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.program-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.program-content p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Membership Tiers */
.membership-section {
    margin-bottom: 4rem;
}

.membership-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--bbf-gold);
    font-weight: 700;
}

.membership-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-pill {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.tier-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tier-pill.bronze {
    background: linear-gradient(135deg, #CD7F32, #E1C4AC);
    color: #fff;
}

.tier-pill.silver {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #333;
}

.tier-pill.gold {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #333;
}

.tier-pill.platinum {
    background: linear-gradient(135deg, #E5E4E2, #FFFFFF);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tier-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(235, 181, 64, 0.2);
    position: relative;
    z-index: 1;
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-header.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(225, 196, 172, 0.2));
}

.tier-header.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(232, 232, 232, 0.2));
}

.tier-header.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.2));
}

.tier-header.platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.2), rgba(255, 255, 255, 0.2));
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bbf-gold);
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.tier-features {
    padding: 1.5rem;
    list-style: none;
}

.tier-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: var(--bbf-gold);
}

.tier-cta {
    display: block;
    text-align: center;
    padding: 1rem;
    background: rgba(235, 181, 64, 0.9);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    border-radius: 8px;
}

.tier-cta:hover {
    background: rgba(235, 181, 64, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 181, 64, 0.3);
}

/* CTA Section */
.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.university-cta-button {
    background: linear-gradient(135deg, #EBB540, #F5D67D);
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 181, 64, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.university-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 181, 64, 0.4);
    background: linear-gradient(135deg, #F5D67D, #EBB540);
}

.university-cta-button .cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.university-cta-button:hover .cta-icon {
    transform: translateX(4px);
}

.launch-date {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bbf-gold);
}

/* Dark Mode Adjustments */
body[data-theme="dark"] .feature-card {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .university-intro,
body[data-theme="dark"] .university-programs {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .program-item {
    background: rgba(30, 30, 30, 0.5);
}

body[data-theme="dark"] .program-item:hover {
    background: rgba(30, 30, 30, 0.8);
}

body[data-theme="dark"] .tier-card {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .tier-pill.silver,
body[data-theme="dark"] .tier-pill.gold,
body[data-theme="dark"] .tier-pill.platinum {
    color: #222;
}

/* Animation for the feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .university-intro,
    .university-programs {
        padding: 2rem 1.5rem;
    }
    
    .university-intro h3,
    .university-programs h3,
    .membership-section h3 {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .membership-tiers {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tier-pill {
        width: 80%;
        justify-content: center;
    }
    
    .program-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .program-icon {
        margin-bottom: 1rem;
    }
}
