/* Template Home CSS file */
/* ------------------------------------------------- */

section.main-page {
    height: calc(100dvh - 100px);
    position: relative;
    z-index: 1;
    padding: 50px 0;
    background-color: #080722;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #080722;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

.wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.company-logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.main-page h1 {
    color: #FFF;
    font-size: clamp(40px, 7vw, 100px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -6.5px;
}

p.sub-title-1 {
    color: #81EC86;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2px;
}

p.sub-title-2 {
    color: #81EC86;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -2px;
}

.stats-container {
    display: flex;
    gap: 20px;
}

.main-page-middle {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-box {
    border-radius: 15px;
    background: rgba(129, 236, 134, 0.10);
    backdrop-filter: blur(2px);
    padding: 15px;
    text-align: left;
}

.stat {
    color: #81EC86;
    font-size: clamp(25px, 5vw, 50px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -4px;
}

.stat-text {
    color: #81EC86;
    font-size: clamp(16px, 2.5vw, 25px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.5px;
}

.main-text {
    color: #FFF;
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.25px;
    max-width: 700px;
}

.main-button {
    background: transparent;
    color: #81EC86;
    font-size: clamp(16px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.6px;
    transition: all 0.3s ease;
    border-radius: 35px;
    border: 2px solid #81EC86;
    cursor: pointer;
    padding: 12px 25px;
    text-transform: uppercase;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
}

.main-page-top-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.main-button:hover {
    background: #81EC86;
    color: #080722;
}

.email-contact {
    display: flex;
    gap: 5px;
    margin-left: auto;
}

.email-contact a {
    color: #81EC86;
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.25px;
}

.email-contact p {
    color: var(--white);
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.25px;
}

.email-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .main-page-top-content {
        flex-direction: column;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .email-contact {
        margin-left:0;
    }
}