/* Premium Awards Page Styles - MedeChan 2026 */

:root {
    --awards-bg: #010816;
    --awards-accent: #00A9E0;
    --awards-accent-glow: rgba(0, 169, 224, 0.4);
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.awards-body {
    background-color: var(--awards-bg);
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom Navbar for Awards */
.awards-nav {
    background: transparent !important;
    border-bottom: none !important;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: none !important;
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.awards-nav.scrolled {
    background: rgba(1, 8, 22, 0.8) !important;
    backdrop-filter: blur(20px);
}

/* Cinematic Hero */
.hero-pinnacle {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    filter: brightness(0.4) saturate(1.2);
    object-fit: cover;
}

.pill-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--awards-accent);
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-content-glass {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem;
    /* background: rgba(1, 8, 22, 0.4); */
    /* backdrop-filter: blur(8px); */
    /* border-radius: 40px; */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.mega-title {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -0.04em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
}

.mega-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible .mega-title .word {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.mega-title .word:nth-child(1) { transition-delay: 0.1s; }
.mega-title .word:nth-child(2) { transition-delay: 0.2s; }
.mega-title .word:nth-child(3) { transition-delay: 0.3s; }
.mega-title .word:nth-child(4) { transition-delay: 0.4s; }
.mega-title .word:nth-child(5) { transition-delay: 0.5s; }

.hero-subtext {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

/* Magnetic Button Effect (Basic Version) */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    padding: 1.25rem 3rem;
    background: var(--awards-accent);
    color: #ffffff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px var(--awards-accent-glow);
}

.btn-magnetic:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px var(--awards-accent-glow);
    color: #fff;
}

/* Staggered Info Grid */
.award-highlights {
    padding: 10rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    perspective: 2000px;
}

.highlight-card {
    grid-column: span 6;
    position: relative;
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.98) 0%, rgba(1, 4, 10, 1) 100%);
    border: none;
    padding: 3.5rem;
    border-radius: 60px; /* More extreme rounding */
    backdrop-filter: blur(30px);
    overflow: hidden;
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important;
    
    /* Ultra-Deep 3D Bezel Shadow - Multi-Layered */
    box-shadow: 
        30px 40px 80px rgba(0, 0, 0, 0.9),
        -15px -15px 40px rgba(255, 255, 255, 0.02),
        inset 2px 2px 0px rgba(255, 255, 255, 0.15),
        inset -8px -8px 20px rgba(0, 0, 0, 0.6);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 520px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        50px 70px 120px rgba(0, 0, 0, 1),
        -15px -15px 40px rgba(255, 255, 255, 0.03),
        inset 3px 3px 0px rgba(255, 255, 255, 0.2);
}

/* Sharp Chiseled Edge */
.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.05); /* Sharper edge */
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 10;
}

/* Glowing Accent Line */
.highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--awards-accent), transparent);
    opacity: 0.4;
    filter: blur(4px);
}

.highlight-card .text-accent {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--awards-accent);
}

.highlight-card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.highlight-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 320px; /* Keep text focused on the left */
}

/* Individual Card Themed Backgrounds */
.highlight-card:nth-child(1) { background-image: linear-gradient(to right, rgba(1,8,22,0.9), transparent), url('/assets/card-bg-1.png'); background-size: cover; background-position: center; }
.highlight-card:nth-child(2) { background-image: linear-gradient(to right, rgba(1,8,22,0.9), transparent), url('/assets/dare-awards/tech4good-badge.png'); background-size: cover; background-position: center; }
.highlight-card:nth-child(3) { background-image: linear-gradient(to bottom, rgba(1,8,22,0.4), rgba(1,8,22,0.8)), url('/assets/dare-awards/dare-bellmts-logo.png'); background-size: cover; background-position: center; }
.highlight-card:nth-child(4) { background-image: linear-gradient(to right, rgba(1,8,22,0.9), transparent), url('/assets/card-bg-4.png'); background-size: 92% auto; background-position: right center; }

/* Clean Partnership Treatment */
.partnership-logo-integrated {
    height: 0; /* Removing height since image is in background now */
    visibility: hidden;
}

/* Adjusting Card Content to avoid overlap with graphics */
.highlight-card > * {
    position: relative;
    z-index: 2;
}

/* Interactive Gallery Reel */
.gallery-reel-container {
    padding: 10rem 0;
    background: #000;
}

.reel-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reel-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 4rem 0;
}

.reel-track {
    display: flex;
    gap: 2rem;
    padding-left: 10vw;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-item {
    flex: 0 0 500px;
    aspect-ratio: 4 / 5;
    height: auto;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    transform: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.reel-item:hover {
    flex: 0 0 600px;
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 40px 100px var(--awards-accent-glow);
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.6s ease;
}

.reel-item:nth-child(1) img {
    object-position: 70% center;
}

.reel-item:nth-child(2) img {
    object-position: 36% center;
}

.reel-item:nth-child(3) img {
    object-position: 0% center;
}

.reel-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

.reel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.reel-item:hover .reel-caption {
    opacity: 1;
    transform: translateY(0);
}

.reel-caption h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reel-caption span {
    color: var(--awards-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .highlight-card {
        grid-column: span 12;
    }
    .highlight-card:nth-child(even) {
        transform: none;
    }
    .mega-title {
        font-size: 4rem;
    }
    .reel-item {
        flex: 0 0 300px;
        aspect-ratio: 4 / 5;
        height: auto;
    }
}
