/* ==========================================================
   TOMI IT & ELECTRONICS
   BANNER - CZYSTA WERSJA
   ========================================================== */

/* ----------------------------------------------------------
   SEKCJA BANNERA
   ---------------------------------------------------------- */

#start.tomi-banner{
    position:relative;

    width:100%;
    margin:0;
    padding:28px 0 26px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(17,112,170,.30) 0%,
            rgba(17,112,170,.12) 25%,
            transparent 48%
        ),
        linear-gradient(
            135deg,
            #06263d 0%,
            #073a62 55%,
            #07558e 100%
        );

    border-bottom:1px solid rgba(58,208,255,.22);

    scroll-margin-top:78px;
}


/* ----------------------------------------------------------
   DEKORACJE TLA
   ---------------------------------------------------------- */

.tomi-banner-circuit{
    position:absolute;
    pointer-events:none;
    z-index:0;

    border:1px solid rgba(58,208,255,.42);

    opacity:.18;
}

.tomi-circuit-left{
    width:260px;
    height:260px;

    left:-145px;
    top:-145px;

    transform:rotate(45deg);
}

.tomi-circuit-right{
    width:360px;
    height:360px;

    right:-190px;
    top:-190px;

    transform:rotate(45deg);
}


/* ----------------------------------------------------------
   WEWNETRZNY KONTENER
   ---------------------------------------------------------- */

.tomi-banner-inner{
    position:relative;
    z-index:2;

    width:min(1220px, calc(100% - 40px));

    margin:0 auto;
    padding:0;
}


/* ----------------------------------------------------------
   NAGLOWEK BANNERA
   ---------------------------------------------------------- */

.tomi-banner-brand{
    position:relative;

    width:auto;
    max-width:720px;

    margin:0 0 14px 0;
    padding:0;
}

.tomi-banner-heading{
    margin:0;
    padding:0;

    font-size:clamp(34px,4.6vw,56px);
    line-height:1.03;
    letter-spacing:-.035em;

    font-weight:800;

    color:#f4f8ff;
}

.tomi-banner-heading strong{
    font-weight:800;
}

.tomi-smart{
    margin-top:10px;

    font-size:clamp(20px,2.4vw,30px);
    line-height:1.2;

    letter-spacing:.13em;
    font-weight:300;

    color:#fff;
}

.tomi-banner-line{
    width:min(720px,100%);
    height:2px;

    margin:14px 0;

    background:linear-gradient(
        90deg,
        #39d8ff,
        rgba(57,216,255,.08)
    );
}

.tomi-banner-categories{
    margin:0 0 20px;

    font-size:16px;
    line-height:1.5;

    font-weight:700;

    color:#fff;
}


/* ----------------------------------------------------------
   DOLNA CZESC: GALERIA + TECHNOLOGIE
   ---------------------------------------------------------- */

.tomi-banner-content{
    display:grid;

    grid-template-columns:minmax(0, 1fr) 285px;

    gap:28px;

    align-items:end;

    width:100%;

    margin:0;
    padding:0;
}


/* ----------------------------------------------------------
   3 ZDJECIA CMS
   ---------------------------------------------------------- */

.tomi-banner-gallery{
    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:16px;

    align-items:start;

    min-width:0;

    margin:0;
    padding:0;
}

.tomi-banner-gallery > *{
    min-width:0;
}

.tomi-banner-photo{
    position:relative;

    width:100%;
    aspect-ratio:16 / 9;

    margin:0;
    padding:7px;

    overflow:hidden;

    box-sizing:border-box;

    background:#edf5ff;

    border:3px solid rgba(255,255,255,.96);
    border-radius:16px;

    box-shadow:
        0 10px 26px rgba(0,0,0,.18);
}

.tomi-banner-photo img{
    display:block;

    width:100%;
    height:100%;

    margin:0;

    object-fit:cover;
    object-position:center;

    border-radius:9px;
}

.tomi-photo-empty{
    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    color:#7896b6;

    font-size:15px;
    font-weight:700;

    text-align:center;
}


/* ----------------------------------------------------------
   OPISY POD ZDJECIAMI
   ---------------------------------------------------------- */

.tomi-banner-description{
    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;
    min-height:36px;

    margin:9px 0 0 0;
    padding:7px 12px;

    box-sizing:border-box;

    background:rgba(3,30,52,.90);

    border:2px solid #2bd7ff;
    border-radius:22px;

    color:#fff;

    font-size:13px;
    line-height:1.25;

    font-weight:700;
    text-align:center;
}

.tomi-banner-gallery > *:nth-child(2) .tomi-banner-description{
    border-color:#43e79d;
}

.tomi-banner-gallery > *:nth-child(3) .tomi-banner-description{
    border-color:#ffb728;
}


/* ----------------------------------------------------------
   PRAWA CZESC - ORBITA
   ---------------------------------------------------------- */

.tomi-banner-tech{
    position:relative;

    width:285px;

    margin:0;
    padding:0;
}

.tomi-tech-orbit{
    position:relative;

    width:205px;
    height:205px;

    margin:0 auto 10px;

    border:1px solid rgba(55,207,255,.32);
    border-radius:50%;
}

.tomi-tech-orbit::before{
    content:"";

    position:absolute;

    inset:36px;

    border:1px solid rgba(55,207,255,.22);
    border-radius:50%;
}


/* ----------------------------------------------------------
   MENU TECHNOLOGII
   ---------------------------------------------------------- */

.tomi-tech-menu{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    width:100%;

    background:rgba(2,29,51,.72);

    border:1px solid rgba(54,210,255,.12);
}

.tomi-tech-menu > *{
    display:flex;

    align-items:center;
    justify-content:center;

    min-height:52px;

    padding:6px 3px;

    box-sizing:border-box;

    border-right:1px solid rgba(255,255,255,.13);

    color:#fff;

    font-size:8px;
    line-height:1.2;

    text-align:center;
}

.tomi-tech-menu > *:last-child{
    border-right:0;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media(max-width:1000px){

    #start.tomi-banner{
        padding:30px 0;
    }

    .tomi-banner-inner{
        width:calc(100% - 32px);
    }

    .tomi-banner-content{
        grid-template-columns:1fr;
        gap:28px;
    }

    .tomi-banner-tech{
        width:100%;
    }

    .tomi-tech-orbit{
        display:none;
    }

    .tomi-tech-menu{
        max-width:600px;
        margin:0 auto;
    }
}


/* ----------------------------------------------------------
   TELEFON
   ---------------------------------------------------------- */

@media(max-width:680px){

    #start.tomi-banner{
        padding:24px 0;
    }

    .tomi-banner-inner{
        width:calc(100% - 24px);
    }

    .tomi-banner-heading{
        font-size:36px;
    }

    .tomi-smart{
        font-size:20px;
        letter-spacing:.08em;
    }

    .tomi-banner-categories{
        margin-bottom:22px;
        font-size:14px;
    }

    .tomi-banner-gallery{
        grid-template-columns:1fr;
        gap:18px;
    }

    .tomi-banner-photo{
        aspect-ratio:16 / 9;
    }

    .tomi-banner-description{
        min-height:42px;
    }

    .tomi-tech-menu{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ===== DESKTOP COMPACT BANNER 2026 ===== */
@media (min-width:1001px){

    #start.tomi-banner{
        padding:28px 0 30px !important;
        min-height:0 !important;
        height:auto !important;
    }

    .tomi-banner-inner{
        width:min(1000px, calc(100% - 40px)) !important;
        margin:0 auto !important;
    }

    .tomi-banner-brand{
        margin:0 !important;
        padding:0 !important;
    }

    .tomi-chip{
        margin:0 0 12px !important;
    }

    .tomi-banner-heading{
        margin:0 0 14px !important;
        padding:0 !important;
    }

    .tomi-banner-heading h1,
    .tomi-banner-heading h2,
    .tomi-banner-heading strong{
        margin:0 !important;
        font-size:42px !important;
        line-height:1.05 !important;
        letter-spacing:-0.5px !important;
        white-space:nowrap !important;
    }

    .tomi-smart{
        font-size:22px !important;
        line-height:1.2 !important;
        margin:10px 0 8px !important;
    }

    .tomi-banner-line{
        width:100% !important;
        margin:6px 0 10px !important;
    }

    .tomi-banner-categories{
        font-size:15px !important;
        line-height:1.3 !important;
        margin:0 0 22px !important;
    }

    .tomi-banner-content{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:18px !important;
        margin-top:0 !important;
    }

    .tomi-banner-gallery{
        display:grid !important;
        grid-template-columns:repeat(3, minmax(0,1fr)) !important;
        gap:16px !important;
        width:100% !important;
    }

    .tomi-banner-gallery > *{
        min-width:0 !important;
    }

    .tomi-banner-photo{
        width:100% !important;
        aspect-ratio:16 / 9 !important;
        height:auto !important;
        padding:6px !important;
        overflow:hidden !important;
    }

    .tomi-banner-photo img{
        width:100% !important;
        height:100% !important;
        object-fit:contain !important;
        object-position:center !important;
        display:block !important;
    }

    .tomi-banner-description{
        margin-top:7px !important;
        min-height:32px !important;
        font-size:13px !important;
        line-height:1.2 !important;
    }

    .tomi-banner-tech{
        width:100% !important;
        max-width:none !important;
        margin:0 !important;
    }

    .tomi-tech-orbit{
        display:none !important;
    }

    .tomi-tech-menu{
        display:grid !important;
        grid-template-columns:repeat(4,1fr) !important;
        width:100% !important;
        max-width:600px !important;
        margin:4px auto 0 !important;
        font-size:10px !important;
    }

    .tomi-tech-menu > *{
        min-width:0 !important;
        padding:10px 5px !important;
        text-align:center !important;
    }
}
/* ===== END DESKTOP COMPACT BANNER 2026 ===== */
