/* Header Video Overlay Styles */
.header-video-overlay {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 100;
    pointer-events: none;
    opacity: 1;
    display: block !important;
    visibility: visible !important;
}

/* Award Badge Styling */
.award-badge {
    position: absolute;
    left: 33.33%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.stars-container {
    position: relative;
    margin-bottom: 20px;
}

/* Reduce gap between stars and winner text on mobile */
@media (max-width: 768px) {
    .stars-container {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .stars-container {
        margin-bottom: 8px;
    }
}

.stars-row-top {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.stars-row-bottom {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px;
}

.star {
    color: #ffffff;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: starTwinkle 3s infinite alternate;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.3s; }
.star:nth-child(3) { animation-delay: 0.6s; }

.year-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
}

@keyframes starTwinkle {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.award-text {
    text-align: center;
}

.winner-text {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.organization-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.award-type {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Contact Info with Stars */
.contact-simple {
    position: absolute;
    right: 33.33%;
    top: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    color: white;
    max-width: 350px;
}

.contact-stars-container {
    position: relative;
    margin-bottom: 20px;
}

.contact-stars-row-top {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.contact-stars-row-bottom {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px;
}

.contact-star {
    color: #ffd700;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: starTwinkle 3s infinite alternate;
}

.contact-star:nth-child(1) { animation-delay: 0.1s; }
.contact-star:nth-child(2) { animation-delay: 0.4s; }
.contact-star:nth-child(3) { animation-delay: 0.7s; }

.contact-message {
    text-align: center;
}

.contact-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-cta {
    font-size: 14px;
    font-weight: 500;
    color: #ffd700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-style: italic;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Responsive Design - Tablet */
@media (max-width: 1200px) and (min-width: 769px) {
    .header-video-overlay {
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        transform: none !important;
        right: 0 !important;
        height: 300px !important;
        width: 100% !important;
        padding: 0 !important;
        display: block !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .award-badge {
        position: absolute !important;
        left: 25% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
    }
    
    .contact-simple {
        position: absolute !important;
        right: 25% !important;
        top: 50% !important;
        transform: translate(50%, -50%) !important;
        text-align: center !important;
        max-width: 300px !important;
    }
    
    /* Slightly smaller text for tablet */
    .winner-text {
        font-size: 24px;
    }
    
    .organization-text {
        font-size: 16px;
    }
    
    .award-type {
        font-size: 14px;
    }
    
    .contact-text {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .contact-cta {
        font-size: 13px;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .header-video-overlay {
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        height: auto !important;
        width: auto !important;
        max-width: 280px !important;
        padding: 15px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .award-badge {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        text-align: center !important;
    }
    
    /* Hide contact section on mobile */
    .contact-simple {
        display: none !important;
    }
    
    .star {
        font-size: 22px;
    }
    
    .year-center {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .winner-text {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }
    
    .organization-text {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .award-type {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-video-overlay {
        top: 5px !important;
        padding: 12px 18px !important;
        max-width: 250px !important;
    }
    
    .stars-row-top {
        gap: 5px;
        margin-bottom: 3px;
    }
    
    .stars-row-bottom {
        gap: 10px;
        margin-top: 3px;
    }
    
    .star {
        font-size: 18px;
    }
    
    .year-center {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .winner-text {
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 2px;
    }
    
    .organization-text {
        font-size: 11px;
        margin-bottom: 1px;
    }
    
    .award-type {
        font-size: 9px;
    }
} 