/* 2. LAYOUT MODULE */
.video-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    min-height: 400px
}

/* Video Container */
.video-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

/* Content Layer */
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 10;
    opacity: 0;
    transition: all 1.2s ease-out;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.content-container.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Component: Award Logo */
.award-logo {
    display: inline-block;
    margin-bottom: 2rem;
    pointer-events: none;
}

.award-logo img {
    height: 200px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

/* Component: Typography */
.title-gradient {
    background: linear-gradient(90deg, #b45309, #d97706, #b45309);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.description {
    color: #4b5563;
    font-weight: 400;
    line-height: 1.6;
}

/* Component: Footer Info */
.bottom-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

.company-logo {
    height: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-gradient {
        font-size: 2rem;
    }

    .company-logo {
        height: 30px;
    }

    .award-logo img {
        height: 80px;
    }

    .description {
        font-size: 1rem;
    }

    .bottom-indicator {
        display: none;
    }

    .video-section {
        height: 100vh;
        min-height: 100vh;
    }

    .video-wrapper {
        height: 100%;
    }

    .video-wrapper video {
        height: 100%;
        object-fit: cover;
    }
}