/* Award Laurel Wreath Component */
/* Matching the React Awards component design */

.award-laurel-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-laurel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.laurel-wreath {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    fill: #ffcc00;
    opacity: 0.9;
    pointer-events: none;
}

.award-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* Level Badge */
.award-level {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.award-level.gold {
    background: linear-gradient(to right, #facc15, #ca8a04);
}

.award-level.silver {
    background: linear-gradient(to right, #9ca3af, #4b5563);
}

.award-level.bronze {
    background: linear-gradient(to right, #d97706, #92400e);
}

.award-level.platinum {
    background: linear-gradient(to right, #cbd5e1, #64748b);
}

/* Title */
.award-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0.5rem 0;
    text-transform: uppercase;
}

/* Divider */
.award-divider {
    width: 160px;
    height: 1px;
    background: #ffcc00;
    margin: 0.75rem auto;
}

/* Subtitle */
.award-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
    max-width: 240px;
}

/* Recipient */
.award-recipient {
    font-style: italic;
    color: rgba(255, 221, 0, 0.7);
    margin-bottom: 0.5rem;
}

/* Date */
.award-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .award-laurel {
        padding: 2rem 1rem;
        max-width: 320px;
    }
    
    .award-title {
        font-size: 2rem;
    }
    
    .award-subtitle {
        font-size: 1rem;
    }
    
    .award-content {
        padding: 1.5rem;
    }
}

/* Animation */
@keyframes laurelGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(251, 255, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(238, 255, 0, 0.7));
    }
}

.laurel-wreath {
    animation: laurelGlow 3s ease-in-out infinite;
}

/* Hover effect */
.award-laurel:hover .laurel-wreath {
    filter: drop-shadow(0 0 20px rgba(255, 221, 0, 0.8));
    transition: filter 0.3s ease;
}

.award-laurel:hover .award-title {
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
    transition: text-shadow 0.3s ease;
}
