/* Hall of Fame Event Showcase Styles */
.featured-inductees {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.featured-inductees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.inductees-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.header-content {
    max-width: 60%;
}

.featured-inductees h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.featured-inductees h2 .highlight {
    color: var(--secondary);
    position: relative;
}

.featured-inductees h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--secondary);
    opacity: 0.2;
    z-index: -1;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-top: 1.5rem;
    max-width: 90%;
}

.section-navs {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.nav-arrow:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Inductee Cards */
.inductees-showcase {
    position: relative;
    min-height: 600px;
    margin-bottom: 2rem;
}

.inductee-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    transform: translateY(30px);
}

.inductee-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile positioning fix */
@media (max-width: 992px) {
    .inductees-showcase {
        min-height: auto;
    }
    
    .inductee-card {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    .inductee-card:not(.active) {
        display: none;
    }
    
    .inductee-card.active {
        display: block;
    }
}

.inductee-content {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inductee-intro {
    flex: 1;
    padding: 3rem;
    max-width: 60%;
    position: relative;
}

/* Custom icon using standard Font Awesome icons as fallbacks */
.fa-calendar-star:before {
    content: "\f133\f005";
    letter-spacing: -0.5em;
}

.fa-vr-cardboard:before {
    content: "\f2bd";
}

.inductee-visual {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.field-badge {
    display: inline-block;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.inductee-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.inductee-bio {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.achievement-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(var(--secondary-rgb), 0.3);
}

.achievement {
    display: flex;
    align-items: center;
}

.achievement-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(var(--secondary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.8rem;
    color: var(--secondary);
}

.achievement-text {
    font-weight: 500;
    color: var(--dark-gray);
}

.inductee-footer {
    margin-top: 2rem;
    border-top: 1px solid var(--gray);
    padding-top: 1.5rem;
}

.bio-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bio-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.bio-link:hover i {
    transform: translateX(5px);
}

.inductee-quote {
    position: relative;
    padding-left: 2.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    opacity: 0.5;
    font-size: 1.8rem;
}

/* Inductee Visual */
.inductee-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    margin-bottom: 0;
}

.inductee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.image-decoration {
    display: none;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 3;
}

.stats-item {
    text-align: center;
    color: var(--white);
}

.stats-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Navigation Dots */
.inductees-nav-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .featured-inductees {
        padding: 4rem 0;
    }
    
    .inductee-intro {
        padding: 2rem;
        max-width: 55%;
    }
    
    .inductee-intro h3 {
        font-size: 2rem;
    }
    
    .inductees-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .header-content {
        max-width: 100%;
    }
    
    .featured-inductees h2 {
        font-size: 2.5rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .featured-inductees {
        padding: 3rem 0;
    }
    
    .inductees-header {
        text-align: center;
        margin-bottom: 2rem;
        flex-direction: column;
    }
    
    .section-navs {
        order: 3;
        margin-top: 1rem;
    }
    
    .inductee-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .inductee-intro,
    .inductee-visual {
        max-width: 100%;
        flex: none;
    }
    
    .inductee-intro {
        padding: 2rem 1.5rem;
        order: 2;
    }
    
    .inductee-visual {
        padding: 0;
        min-height: 400px;
        order: 1;
    }
    
    .inductee-image {
        border-radius: 12px 12px 0 0;
        height: 100%;
    }
    
    .stats-container {
        position: relative;
        bottom: auto;
        background: var(--primary);
        padding: 1.5rem;
        margin-top: auto;
    }
    
    .featured-inductees h2 {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-inductees {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .inductees-header {
        margin-bottom: 1.5rem;
    }
    
    .featured-inductees h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .lead-text {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .section-navs {
        gap: 0.5rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .inductee-intro {
        padding: 1.5rem 1rem;
    }
    
    .inductee-intro h3 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .field-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .achievement-highlights {
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
        border-left-width: 2px;
    }
    
    .achievement {
        gap: 0.5rem;
    }
    
    .achievement-icon {
        width: 25px;
        height: 25px;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .achievement-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .inductee-bio {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .inductee-visual {
        min-height: 350px;
    }
    
    .inductee-image {
        height: 100%;
        border-radius: 12px 12px 0 0;
    }
    
    .stats-container {
        gap: 1rem;
        padding: 1.5rem 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stats-item {
        min-width: 80px;
        flex: 1;
    }
    
    .stats-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stats-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .inductee-footer {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .bio-link {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .inductee-quote {
        padding-left: 2rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .quote-icon {
        font-size: 1.4rem;
    }
    
    .inductees-nav-dots {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .inductees-showcase {
        min-height: auto;
        margin-bottom: 1rem;
    }
      .inductee-card {
        position: relative;
        min-height: auto;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .featured-inductees {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .featured-inductees h2 {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 0.9rem;
    }
    
    .inductee-intro {
        padding: 1rem;
    }
    
    .inductee-intro h3 {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .field-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .achievement-highlights {
        padding-left: 0.3rem;
    }
    
    .achievement-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.4rem;
    }
    
    .achievement-text {
        font-size: 0.85rem;
    }
    
    .inductee-bio {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .inductee-visual {
        min-height: 300px;
    }
    
    .stats-container {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    
    .stats-item {
        min-width: 70px;
    }
    
    .stats-number {
        font-size: 1.3rem;
    }
    
    .stats-label {
        font-size: 0.7rem;
    }
    
    .bio-link {
        font-size: 0.85rem;
    }
    
    .inductee-quote {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
    
    .quote-icon {
        font-size: 1.2rem;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
}
