/**
 * Hero Section - Pixel Perfect Figma Design
 * Based on Figma: TIM Web (copy) - main screen
 */

/* Main container */
.hero-main-screen {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    padding: 24px 24px 24px 40px;
    background-color: #F9F9F9;
    border-radius: 50px;
    max-width: 1200px;
    margin: 48px auto 0;
}

/* Left content wrapper */
.hero-main-screen__content {
    display: flex;
    flex-direction: column;
    gap: 138px;
}

/* Heading section */
.hero-main-screen__heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Headline container */
.hero-main-screen__headline {
    display: flex;
    flex-direction: column;
    max-width: 642px;
}

/* Main title */
.hero-main-screen__title {
    font-family: 'Clash Display', 'Clashdisplay Variable', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.3;
    color: #020202;
    text-transform: uppercase;
    margin: 0;
}

/* Gradient text */
.hero-main-screen__title-gradient {
    font-family: 'Clash Display', 'Clashdisplay Variable', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF00FF 0%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: inline-block;
}

/* Subheading container */
.hero-main-screen__subheading {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 0;
}

/* Subheading text */
.hero-main-screen__description {
    font-family: 'Clash Display', 'Clashdisplay Variable', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: #020202;
    max-width: 514px;
    margin: 0;
}

/* Button + social icons row */
.hero-main-screen__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

/* Social icons with hover spread animation */
.hero-main-screen__social {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-main-screen__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hero-main-screen__social-link:hover {
    opacity: 0.85;
}

.hero-main-screen__social-link--overlap {
    margin-left: -13px;
    transition: margin-left 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

/* Hover spread animation - icons move apart */
.hero-main-screen__social:hover .hero-main-screen__social-link--overlap {
    margin-left: 8px;
}

.hero-main-screen__social-link svg {
    width: 46px;
    height: 46px;
}

/* Images section */
.hero-main-screen__images {
    width: 454px;
    height: 547px;
    flex-shrink: 0;
    position: relative;
}

.hero-main-screen__main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
}

/* Floating icons positioning - no background */
.hero-main-screen__float-icon {
    position: absolute;
    z-index: 1;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Instagram - bottom left */
.hero-main-screen__float-icon--instagram {
    left: -34px;
    bottom: -26px;
    width: 96px;
    height: auto;
}

/* Chat-bot - left middle */
.hero-main-screen__float-icon--chatbot {
    left: -59px;
    top: 112px;
    width: 123px;
    height: auto;
}

/* Google Ads - top right */
.hero-main-screen__float-icon--google {
    right: 0;
    top: -55px;
    width: 129px;
    height: auto;
    transform: rotate(-15deg);
}

/* Telegram - right bottom */
.hero-main-screen__float-icon--telegram {
    right: -39px;
    bottom: 100px;
    width: 90px;
    height: auto;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
    .hero-main-screen {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media screen and (max-width: 991px) {
    .hero-main-screen {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 24px;
    }

    .hero-main-screen__content {
        gap: 48px;
    }

    .hero-main-screen__headline {
        max-width: 100%;
    }

    .hero-main-screen__title,
    .hero-main-screen__title-gradient {
        font-size: 42px;
    }

    .hero-main-screen__description {
        font-size: 20px;
        max-width: 100%;
    }

    .hero-main-screen__images {
        width: 100%;
        height: auto;
        aspect-ratio: 454 / 547;
        margin: 60px auto 30px;
        max-width: 454px;
    }

    /* Scale down floating icons on tablet */
    .hero-main-screen__float-icon--instagram {
        left: -20px;
        bottom: -15px;
        width: 80px;
    }

    .hero-main-screen__float-icon--chatbot {
        left: -40px;
        top: 80px;
        width: 100px;
    }

    .hero-main-screen__float-icon--google {
        right: -10px;
        top: -40px;
        width: 105px;
    }

    .hero-main-screen__float-icon--telegram {
        right: -25px;
        bottom: 80px;
        width: 75px;
    }
}

@media screen and (max-width: 767px) {
    .hero-main-screen {
        padding: 16px;
        border-radius: 30px;
        margin-top: 24px;
    }

    .hero-main-screen__content {
        gap: 32px;
    }

    .hero-main-screen__title,
    .hero-main-screen__title-gradient {
        font-size: 32px;
    }

    .hero-main-screen__description {
        font-size: 18px;
    }

    .hero-main-screen__actions {
        flex-wrap: wrap;
    }

    .hero-main-screen__images {
        margin: 50px auto 20px;
    }

    /* Scale down floating icons on mobile */
    .hero-main-screen__float-icon--instagram {
        left: -10px;
        bottom: -10px;
        width: 60px;
    }

    .hero-main-screen__float-icon--chatbot {
        left: -25px;
        top: 60px;
        width: 75px;
    }

    .hero-main-screen__float-icon--google {
        right: -5px;
        top: -30px;
        width: 80px;
    }

    .hero-main-screen__float-icon--telegram {
        right: -15px;
        bottom: 60px;
        width: 56px;
    }
}

@media screen and (max-width: 479px) {
    .hero-main-screen__title,
    .hero-main-screen__title-gradient {
        font-size: 28px;
    }

    .hero-main-screen__description {
        font-size: 16px;
    }
}
