@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Cormorant+Upright:wght@300;400;500;600;700&family=Frank+Ruhl+Libre:wght@300..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=ZCOOL+XiaoWei&display=swap');

.main-header-logo{
    width:130px;
    height:80px;
}

.main-header-title{
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin: auto;
    font-family: "Frank Ruhl Libre", serif !important;
}
.header__logo{
    display: flex;
    align-self: center;
    justify-content: center;
    max-width: 350px;
    font-family: "Frank Ruhl Libre", serif !important;
}

.calc-link {
    color: #c5a991;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}
.calc-link:hover {
    color: #e8d5c4;
}

/* Vacancies Hero Banner */
.vacancies-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}
#vacancies-list .container {
    margin-top: 80px;
}
@media (max-width: 768px) {
    #vacancies-list .container {
        margin-top: 48px;
    }
}
.vacancies-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vacancies-hero:hover .vacancies-hero__bg {
    transform: scale(1.05);
}
.vacancies-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,12,10,0.4) 0%, rgba(13,12,10,0.75) 50%, rgba(13,12,10,0.95) 100%);
    pointer-events: none;
}
.vacancies-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 100px;
    text-align: center;
}
.vacancies-hero__label {
    display: inline-block;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(197,169,145,0.95);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}
.vacancies-hero__title {
    font-family: 'Frank Ruhl Libre', serif !important;
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #f9f7f5;
    margin: 0 0 24px;
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s 0.1s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.vacancies-hero__desc {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(249,247,245,0.9);
    max-width: 560px;
    margin: 0 auto 36px;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.vacancies-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(145deg, rgba(197,169,145,0.95), rgba(167,139,115,0.9));
    border: 1px solid rgba(197,169,145,0.4);
    border-radius: 0;
    color: #0d0c0a;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: fadeInUp 0.8s 0.3s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.vacancies-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(197,169,145,0.35);
    background: linear-gradient(145deg, rgba(232,213,196,0.98), rgba(197,169,145,0.95));
    color: #0d0c0a;
}
.vacancies-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(197,169,145,0.7);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s 0.5s ease forwards, scrollBounce 2.5s ease-in-out infinite 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}
.vacancies-hero__scroll-hint svg {
    opacity: 0.8;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 768px) {
    .vacancies-hero {
        min-height: 65vh;
    }
    .vacancies-hero__content {
        padding: 60px 0 80px;
    }
    .vacancies-hero__title {
        margin-bottom: 16px;
    }
    .vacancies-hero__desc {
        margin-bottom: 28px;
    }
}