/* Awards-specific styles */

/* Awards Hero Section */
.awards-hero {
    background: linear-gradient(135deg, var(--background) 0%, hsl(45, 50%, 10%) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.awards-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Ceremony Section */
.ceremony-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.ceremony-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.detail-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.ceremony-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ceremony-image {
    text-align: center;
}

.ceremony-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Ceremony */
@media (min-width: 1024px) {
    .ceremony-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ceremony-details {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Get Involved Section */
.involved-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.involved-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.involved-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.involved-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.involved-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.involved-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.involved-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Involved */
@media (min-width: 768px) {
    .involved-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--muted-foreground);
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.category-list li:hover {
    background: rgba(255, 193, 7, 0.05);
    color: var(--foreground);
}

.category-list li::before {
    content: '🏆';
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive Categories */
@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Awards-specific button styles */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), hsl(45, 80%, 50%));
    color: hsl(45, 100%, 10%);
    font-weight: 600;
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* Awards logo adjustments */
.awards-logo img {
    max-width: 24rem;
}

@media (max-width: 640px) {
    .awards-logo img {
        max-width: 18rem;
    }
}

/* Awards-specific modal styles */
.awards-modal .modal-content {
    border: 2px solid var(--gold);
}

.awards-modal .modal-header {
    background: linear-gradient(135deg, var(--gold), hsl(45, 80%, 50%));
    color: hsl(45, 100%, 10%);
    border-bottom: 1px solid var(--gold);
}

.awards-modal .modal-header h3 {
    font-weight: 700;
}

.awards-modal .modal-close {
    color: hsl(45, 100%, 10%);
}

.awards-modal .modal-close:hover {
    color: hsl(45, 100%, 5%);
}

/* Trophy animations */
.trophy-bounce {
    animation: bounce 2s infinite;
}

.trophy-glow {
    animation: glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

/* Award ceremony countdown (if needed) */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--gold);
    border-radius: 0.75rem;
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive countdown */
@media (max-width: 640px) {
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 0.75rem;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Awards ceremony testimonials */
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Awards timeline (if needed) */
.awards-timeline {
    position: relative;
    padding: 2rem 0;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

/* Responsive timeline */
@media (max-width: 768px) {
    .awards-timeline::before {
        left: 1rem;
    }
    
    .timeline-item::before {
        left: 1rem;
    }
    
    .timeline-content {
        width: calc(100% - 3rem);
        margin-left: 3rem !important;
    }
}