/* ═══════════════════════════════════════════════════════════════
   ДОБАВЛЕНИЕ К dev.css — главный баннер JETOUR
   Стили перенесены с jetour-ru.com (.td-slider--main)
   ═══════════════════════════════════════════════════════════════ */

.jt-hero{
    position:relative;
    width:100%;
    max-height:900px;
    height:calc(100vh - 130px);
    min-height:520px;
    overflow:hidden;
    background:#000;
}
.jt-hero__img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    -o-object-fit:cover;
    object-fit:cover;
    object-position:center right;
    z-index:0;
}
.jt-hero__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.35) 35%,
            rgba(0,0,0,.05) 60%,
            rgba(0,0,0,0) 100%),
        linear-gradient(180deg,
            rgba(0,0,0,0) 60%,
            rgba(0,0,0,.4) 100%);
    z-index:1;
    pointer-events:none;
}
.jt-hero__content{
    position:absolute;
    inset:0;
    z-index:2;
    padding:60px;
    max-width:1400px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
    pointer-events:none;
}
.jt-hero__content > *{pointer-events:auto}

.jt-hero__badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    align-self:flex-start;
    background:rgba(255,255,255,.12);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    font-family: "Manrope", "Mulish", Arial, sans-serif;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    padding:8px 18px;
    border-radius:999px;
    margin-bottom:24px;
}
.jt-hero__badge::before{
    content:"";
    width:6px;height:6px;border-radius:50%;
    background:#5cacb1;
    box-shadow:0 0 0 4px rgba(92,172,177,.3);
    animation:jt-pulse 2s ease-in-out infinite;
}
@keyframes jt-pulse{
    0%,100%{box-shadow:0 0 0 4px rgba(92,172,177,.3)}
    50%{box-shadow:0 0 0 7px rgba(92,172,177,.15)}
}

.jt-hero__title{
    font-family:"Russo One",Arial,sans-serif;
    font-weight:400;
    font-size:68px;
    line-height:1.05;
    text-transform:uppercase;
    margin:0 0 16px;
    max-width:680px;
    color:#fff;
    text-shadow:0 2px 30px rgba(0,0,0,.4);
}
.jt-hero__subtitle{
    font-family: "Manrope", "Mulish", Arial, sans-serif;
    font-size:22px;
    font-weight:400;
    line-height:1.4;
    margin:0 0 40px;
    max-width:520px;
    color:#fff;
    text-shadow:0 1px 12px rgba(0,0,0,.4);
}

.jt-hero__btns{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}
.jt-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:19px 40px;
    border-radius:5px;
    font-family: "Manrope", "Mulish", Arial, sans-serif;
    font-size:15px;
    font-weight:600;
    line-height:20px;
    text-align:center;
    text-decoration:none;
    border:1px solid transparent;
    cursor:pointer;
    transition:.2s;
    outline:none;
    white-space:nowrap;
}
.jt-btn--primary{
    background:#5cacb1;
    border-color:#5cacb1;
    color:#fff;
}
.jt-btn--primary:hover{
    background:#37aeb3;
    border-color:#37aeb3;
    color:#fff;
}
.jt-btn--ghost{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.7);
    color:#fff;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
}
.jt-btn--ghost:hover{
    background:#fff;
    border-color:#fff;
    color:#000;
}

@media (max-width:1200px){
    .jt-hero__title{font-size:54px}
    .jt-hero__subtitle{font-size:20px}
    .jt-hero__content{padding:50px}
}
@media (max-width:991px){
    .jt-hero__content{padding:40px}
    .jt-hero__title{font-size:42px;max-width:100%}
    .jt-hero__overlay{
        background:linear-gradient(180deg,
            rgba(0,0,0,.2) 0%,
            rgba(0,0,0,.4) 50%,
            rgba(0,0,0,.7) 100%);
    }
}
@media (max-width:767px){
    .jt-hero{
        height:auto;
        min-height:520px;
        max-height:none;
    }
    .jt-hero__img{object-position:center}
    .jt-hero__content{
        padding:30px 20px;
        justify-content:flex-end;
        min-height:520px;
    }
    .jt-hero__title{font-size:32px;margin-bottom:10px}
    .jt-hero__subtitle{font-size:16px;margin-bottom:24px;max-width:100%}
    .jt-hero__badge{font-size:11px;padding:6px 14px;margin-bottom:18px}
    .jt-btn{padding:14px 22px;font-size:14px;width:100%}
    .jt-hero__btns{flex-direction:column;width:100%}
}
@media (max-width:560px){
    .jt-hero__title{font-size:26px}
}
