/* Influencers Section CSS - Image Tag Approach */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.influencers-section {
    width: 100vw;
    height: 160vh;
    min-height: 600px;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
}

.influencers-split {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Each side container */
.influencer-side {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: visible;
    margin: 0;
    border: none;
}

/* Black gradient overlay for text readability */
.influencer-side::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(360deg, #000 33.65%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Background Images - Absolute positioned for perfect control */
.influencer-bg-image {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Adam Image - Position to show connecting edge */
.adam-image {
    width: 115%;
    left: 0;
    object-position: top;
}

/* Liz Image - Position to show connecting edge */
.liz-image {
    width: 115%;
    right: 0;
    object-position: top;
}

/* Content Container - Float above image */
.influencer-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: start;
    width: 90%;
    max-width: 400px;
    color: #ffffff;
}

/* Adam Side Styling */
.adam-side {
    background: transparent;
}

.adam-side .influencer-content {
    color: #ffffff;
    position: absolute;
    bottom: 105px;
    left: 43%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: start;
    width: 100%;
    max-width: 500px;
    color: #ffffff;
}

.liz-side .influencer-content {
    color: #ffffff;
    position: absolute;
    bottom: 105px;
    left: 34%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: start;
    width: 100%;
    max-width: 500px;
    color: #ffffff;
}

/* Liz Side Styling */
.liz-side {
    background: transparent;
}

/* Name Styling */
.influencer-name {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    font-family: 'Poppins-ExtraBold', sans-serif;
}

/* Adam Name Color */
.influencer-name {
    color: #FF4A00;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); */
}

/* Description Styling */
.influencer-description {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.adam-side .influencer-description {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.liz-side .influencer-description {
    margin-bottom: 40px;
}

/* Button Styling */
.influencer-button {
    background: #004AD6;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Adam Button */
.adam-button {
    color: #ffffff;
}

.adam-button:hover {
    background: #004AD6;
    transform: translateY(-2px);
}

/* Liz Button */
.liz-button {
    border-color: #004AD6;
    color: #ffffff;
}

.liz-button:hover {
    background: #004AD6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Fine-tuning options - adjust these values */
.adam-image-adjust {
    width: 130%; /* Make wider if needed */
    left: -5%; /* Move left to show more of right edge */
}

.liz-image-adjust {
    width: 130%; /* Make wider if needed */
    right: -5%; /* Move right to show more of left edge */
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* Responsive Design */

/* Tablet and Mobile - Stack Vertically */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
    
    .influencers-section {
        height: auto;
        min-height: 100vh;
        overflow: hidden;
    }
    
    .influencers-split {
        flex-direction: column;
    }
    
    .influencer-side {
        width: 100%;
        height: 50vh;
        min-height: 500px;
    }
    
    .influencer-bg-image {
        width: 100vw !important;
        height: 100vh !important;
        left: 0 !important;
        right: 0 !important;
        object-position: top;
    }
    
    .influencer-content {
        bottom: 60px;
        width: 85%;
    }
    
    .adam-side {
        order: 1;
    }

    .adam-side .influencer-content {
        bottom: 5%;
        left: 51%;
    }

    .liz-side .influencer-content {
        bottom: 5%;
        left: 51%;
    }
    
    .liz-side {
        order: 2;
    }
    
    .influencer-name {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .influencer-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .influencer-button {
        padding: 12px 30px;
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .influencer-side {
        min-height: 702px;
    }
    
    .influencer-content {
        bottom: 50px;
        width: 90%;
    }
    
    .influencer-name {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .influencer-description {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 25px !important;
    }
    
    .influencer-button {
        padding: 6px 37px;
        font-size: 18px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .influencer-content {
        bottom: 40px;
        width: 95%;
    }
    
    .influencer-name {
        font-size: 50px;
    }
    
    .influencer-description {
        font-size: 17px;
    }
    
    .influencer-button {
        padding: 8px 20px;
        font-size: 18px;
    }
}