﻿
main {
    min-height: 100vh;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/wonder-banner.webp");
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translate(-10%, -20%);
    color: white;
    width: 60%;
}

.hero-image-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/zenice-hero.webp");
    height: 50vh;
}

.hero-image-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url("/images/wonder-job-banner.webp");
    height: 30vh;
}

.hero-image-2,
.hero-image-3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text-2 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-10%, -50%);
    color: white;
    width: 60%;
}

.hero-text-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 80%;
}

    .hero-text-2 h3 {
        color: white;
        text-decoration: none;
    }

a {
    text-decoration: none;
}

.form-control {
    border-color: #013066;
}

.social-content {
    display: flex;
    gap: 16px;
}

    .social-content img {
        width: 32px;
    }

.job-link {
    font-weight: bold;
    position: absolute;
    right: 24px;
    top: 24px;
    color: #013066;
    text-decoration: underline;
}

.input-file-wrapper {
    position: relative;
    width: 100%;
}

    .input-file-wrapper InputFile {
        padding-right: 40px;
    }

.clear-file-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
}

    .clear-file-icon:hover {
        opacity: 1;
    }

@media (max-width: 960px) {
    .hero-image-3 {
        height: 50vh;
    }

    .hero-text-3 {
        width: 100%;
    }

    .job-link {
        top: 12px;
        right: 12px;
    }
}