/* Who We Are Section */
.who-we-are-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    /* Remove background image if it exists, or keep as fallback */
    background: #000;
    border-bottom: 3px solid var(--secondary-color);
    /* Electric Blue Separator */
    z-index: 10;
    /* Ensure it sits above subsequent absolute elements if any */
}

#video-luchadores {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    /* Behind content */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.who-we-are-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay to make text readable */
    z-index: 2;
}

.who-content {
    position: relative;
    z-index: 3;
    /* Above video */
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Ensure existing styles are compatible */
.who-image {
    flex: 1;
    position: relative;
    padding: 10px;
    /* Little breathing room */
}

/* Blue Offset Background */
.who-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    /* Electric Blue */
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Image Card */
.who-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    padding: 10px;
    /* Creates the white frame */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: none;
    /* Reset distinct border */
}

/* Hover Effects */
.who-image:hover img {
    transform: translate(-5px, -5px) rotate(-1deg);
}

.who-image:hover::before {
    transform: translate(5px, 5px);
}

.who-text {
    flex: 1;
}

.who-we-are-section .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.who-we-are-section .highlight {
    color: var(--primary-color);
    /* Pink */
    text-shadow: 3px 3px 0 #fff;
    /* White shadow to pop against black */
    font-style: italic;
    /* Looks like the image style */
}

.emotional-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #eee;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 4px;
}

/* Button */
.btn-neon {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    /* Pink border */
    color: var(--primary-color);
    /* Pink text */
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 0, 153, 0.3);
}

.btn-neon:hover {
    background: var(--primary-color);
    color: #fff;
    /* White text on hover */
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.05);
    /* Slight grow */
}

@media (max-width: 768px) {
    .who-content {
        flex-direction: column;
    }

    .who-we-are-section .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .who-image {
        margin-bottom: 2rem;
    }
}