/* ============================================
   AWARDS SECTION CSS - Astrological Theme
   ============================================ */

.awards-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: auto;
}

/* Background Effects - Simple and Soothing */
.awards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(242, 140, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.awards-section > .container {
    position: relative;
    z-index: 1;
}

/* Awards Header */
.awards-header {
    text-align: center;
    margin-bottom: 2rem;
}

.awards-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(242, 140, 40, 0.15);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(242, 140, 40, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(242, 140, 40, 0);
    }
}

.awards-header-badge i {
    font-size: 0.875rem;
    animation: icon-rotate 4s linear infinite;
}

@keyframes icon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Title styles now unified in hero.css */

.awards-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Awards Slider */
.awards-slider-wrapper {
    position: relative;
    margin-bottom: 4rem;
    padding: 1rem 0;
}

.awards-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.awards-slider-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.awards-slider-track:active {
    cursor: grabbing;
}

/* Award Card */
.award-card {
    position: relative;
    perspective: 1000px;
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 320px;
    max-width: 400px;
}

@media (min-width: 1400px) {
    .award-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

.award-card-inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.award-card:hover .award-card-inner {
    transform: translateY(-6px);
    border-color: rgba(242, 140, 40, 0.4);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(242, 140, 40, 0.15);
}

/* Card Glow Effect - Removed for simplicity */
.award-card-glow {
    display: none;
}

/* Award Image */
.award-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-image-wrapper:hover {
    border-color: rgba(242, 140, 40, 0.3);
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.15);
}

.award-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.4s ease;
}

.award-image-wrapper:hover .award-image {
    transform: scale(1.05);
}

.award-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.award-image-wrapper:hover .award-image-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.award-image-overlay i {
    color: #ffffff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.award-image-wrapper:hover .award-image-overlay i {
    transform: scale(1);
}

/* Award Content */
.award-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.award-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
    background: rgba(242, 140, 40, 0.15);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 20px;
    color: #F28C28;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1rem;
}

.award-year-badge i {
    font-size: 0.75rem;
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.award-organization {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.award-organization i {
    font-size: 0.75rem;
    color: #F28C28;
}

.award-description {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Award Icon Large - Removed */

/* Shine Effect - Removed */

/* Awards Footer */
.awards-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

.awards-footer-text {
    font-size: 1.125rem;
    color: #4B5563;
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-footer-text i:first-child {
    color: #F28C28;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    opacity: 0.6;
}

.awards-footer-text i:last-child {
    color: #F28C28;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .award-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
    
    .awards-title {
        font-size: 2.5rem;
    }
    
    .about-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 4rem 0;
    }
    
    .awards-header {
        margin-bottom: 3rem;
    }
    
    .awards-title,
    .about-section-title {
        font-size: 2rem;
    }
    
    .awards-subtitle {
        font-size: 1rem;
    }
    
    .award-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 280px;
    }
    
    .awards-slider-track {
        gap: 1.5rem;
    }
    
    .award-card-inner {
        padding: 1.5rem;
    }
    
    .award-image-wrapper {
        height: 180px;
    }
    
    .award-title {
        font-size: 1.25rem;
    }
    
    .awards-footer {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .awards-footer-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 3rem 0;
    }
    
    .awards-title,
    .about-section-title {
        font-size: 2rem;
    }
    
    .award-card {
        min-width: 260px;
    }
    
    .award-card-inner {
        padding: 1.25rem;
    }
    
    .award-image-wrapper {
        height: 160px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .awards-section {
    background: linear-gradient(180deg, #1F2937 0%, #111827 50%, #1F2937 100%);
}

[data-theme="dark"] .award-card-inner {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .awards-title {
    color: #ffffff;
}

[data-theme="dark"] .awards-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .award-title {
    color: #ffffff;
}

[data-theme="dark"] .award-organization {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .award-description {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .awards-footer {
    border-top-color: #374151;
}

[data-theme="dark"] .awards-footer-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    padding: 0 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(242, 140, 40, 0.8);
    border-color: rgba(242, 140, 40, 1);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .awards-header-badge i {
        animation: none;
    }
    
    .award-card:hover .award-card-inner {
        transform: translateY(-3px);
    }
    
    .award-card:hover .award-image {
        transform: scale(1.02);
    }
    
    .lightbox-image {
        animation: none;
    }
}

