/**
 * 2021-2025 Venvaukt Modules (Part of Prestahope Theme)
 *
 * NOTICE OF LICENSE
 *
 * This license is valid for one installation of the unlimit_tabs module. You may personalize and use it for your clients,
 * but any additional usage requires a separate commercial license.
 *
 * Redistribution, resale, sublicensing, public posting, or sharing of this module is strictly prohibited
 * without official, notarized authorization from Venvaukt.
 *
 * This license grants you a non-exclusive, non-transferable right to use this module strictly within
 * a single PrestaShop instance. Reuse of the source code to create similar features for commercial purposes,
 * or to develop derivative modules for distribution, is a violation of intellectual property rights and subject to legal action.
 *
 * The unlimit_tabs module is the exclusive property of Venvaukt and is considered a protected extension
 * of the Prestahope Theme suite.
 *
 * DISCLAIMER
 *
 * Do not modify this file if you intend to upgrade the Prestahope Theme or this module in the future.
 * For customization needs, we offer affordable development services tailored to your use case.
 *
 * If this module was provided by an unauthorized third party, we strongly recommend contacting us at once
 * to avoid any legal complications or security risks related to unofficial versions (such as hidden backdoors or malware).
 *
 * Venvaukt actively enforces its licensing policy across all distribution channels.
 *
 * @author         Venvaukt
 * @copyright      2021-2025 Venvaukt
 * @license        Valid for 1 website (or project) per purchased license
 * @version        1.0.0
 * @email          venvaukt@gmail.com
 * @theme_key      324bdbfe70cdb412a70517532a112282
 * @display_name   prestahope_home_image Tabs Module
 * International Registered Trademark & Property of Venvaukt
 */

.home-hero-container
{
    margin-top: -71px;
    position: relative;
    font-family: var(--font-accent-family);
}
.home-hero-container.full-height .homePage
{
    height: 100vh;
}
.home-hero-container .home-hero-text
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background: #00000047;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.home-hero-container .home-hero-text h1 {
    color: white;
    font-size: 4rem;
    max-width: 600px;
    text-align: center;
    margin: 0 auto .5rem;
}
.home-hero-button
{
    display: inline-block;
    color: var(--brand-primary);
    font-weight: bold;
    padding: 0px;
    background-color: #ffffff;
    border-color: transparent;
    height: 3.4rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    margin-right: 10px;
    width: 190px;
    border-radius: 4px;
    cursor: pointer;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-text .paragraph
{
    color: white;
}

.home-hero-container .homePage {
    object-fit: cover;
}

@media (max-width: 767px) {
    .home-hero-container .home-hero-text h1 {
        font-size: 2rem;
        max-width: 400px;
    }
    .home-hero-container {
        margin-top: -50px;
    }
    .home-hero-container .home-hero-text {
        left: 0;
        transform: translate(0%, -50%);
        margin: 0px 15px;
    }
}