/*==================== ACCOLADES SECTION ====================*/
.accolades {
    padding: 4rem 0;
}

.accolades__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accolades__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.accolades__item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--container-color);
}

.accolades__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.accolades__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%; /* Reduced Aspect Ratio for smaller boxes */
    overflow: hidden;
    background: var(--container-color);
}

.accolades__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accolades__item:hover .accolades__image {
    transform: scale(1.05);
}

.accolades__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.accolades__item:hover .accolades__overlay {
    opacity: 1;
}

.accolades__zoom-icon {
    font-size: 2.5rem;
    color: #fff;
}

/*==================== VIEW MORE TILE ====================*/
.accolades__view-more {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    border: 2px dashed rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.accolades__view-more .accolades__image-wrapper {
    background: transparent;
    cursor: pointer;
}

.accolades__view-more .accolades__image {
    display: none;
}

.accolades__view-more-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.accolades__view-more-icon {
    font-size: 3rem;
    opacity: 0.9;
    color: #fff;
}

.accolades__view-more-text {
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    letter-spacing: 0.5px;
    color: #fff;
}

.accolades__view-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.accolades__view-more:hover .accolades__view-more-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.accolades__view-more .accolades__overlay {
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.accolades__view-more:hover .accolades__overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

.accolades__view-more {
    cursor: pointer;
}

/*==================== LIGHTBOX ====================*/
.accolades__lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.accolades__lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.accolades__lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.accolades__lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.accolades__lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.accolades__lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.accolades__lightbox-prev,
.accolades__lightbox-next {
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accolades__lightbox-prev:hover,
.accolades__lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Dark theme support */
.dark-theme .accolades__item {
    background: var(--container-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dark-theme .accolades__image-wrapper {
    background: var(--container-color);
}

/* Responsive design */
@media screen and (max-width: 968px) {
    .accolades__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .accolades__image-wrapper {
        padding-top: 60%;
    }
}

@media screen and (max-width: 568px) {
    .accolades {
        padding: 2rem 0;
    }

    .accolades__container {
        padding: 0 1rem;
    }

    .accolades__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .accolades__item {
        border-radius: 0.5rem;
    }

    .accolades__image-wrapper {
        padding-top: 55%; /* Much smaller aspect ratio for mobile to save vertical space */
    }

    .accolades__view-more-icon {
        font-size: 2rem;
    }

    .accolades__view-more-text {
        font-size: 0.9rem;
        font-weight: var(--font-medium);
    }

    .accolades__view-more-content {
        gap: 0.5rem;
    }

    .accolades__lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }

    .accolades__lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .accolades__lightbox-prev,
    .accolades__lightbox-next {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        padding: 0.75rem;
    }

    .accolades__lightbox-nav {
        padding: 0 1rem;
    }
}

/*==================== HONORS & AWARDS SECTION ====================*/
.honors {
    padding: 4rem 0;
    background: var(--container-color);
}

.honors__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.honors__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.honors__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--body-color);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--first-color);
}

.honors__item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.honors__icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.honors__details {
    flex: 1;
}

.honors__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.honors__organization {
    display: block;
    font-size: var(--normal-font-size);
    color: var(--first-color);
    font-weight: var(--font-medium);
    margin-bottom: 0.75rem;
}

.honors__description {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    position: relative;
}

.honors__description::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--first-color);
    font-weight: bold;
}

/* Dark theme support */
.dark-theme .honors {
    background: var(--container-color);
}

.dark-theme .honors__item {
    background: var(--body-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media screen and (max-width: 568px) {
    .honors {
        padding: 3rem 0;
    }

    .honors__item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .honors__icon {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        font-size: 1.25rem;
    }

    .honors__title {
        font-size: var(--normal-font-size);
    }

    .honors__organization {
        font-size: var(--small-font-size);
    }
}


