/* =====================================
   HERO
===================================== */
.page-hero{

    height:500px;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.70)
    ),
    url("..//HLAVNI/img/pozadi3.jpg");

    background-size:cover;
    background-position:center;
}

.page-hero-content{

    max-width:1400px;

    margin:0 auto;

    width:100%;

    padding:0 120px;

    color:white;
}

.page-hero h1{

    font-size:72px;

    margin-bottom:25px;
}

.page-hero p{

    max-width:700px;

    font-size:24px;

    line-height:1.7;

    color:#dbe2ea;
}
.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:240px;
    height:65px;

    margin-top:35px;

    background:#0066ff;

    color:#ffffff;

    text-decoration:none;

    font-size:20px;
    font-weight:700;

    border:2px solid #0066ff;

    transition:.3s;
}

.hero-btn:hover{

    background:transparent;

    color:#ffffff;

    transform:translateY(-1px);

    
}
/* =====================================
   SPOLEČNÉ SEKCE
===================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:50px;

    color:#1c2430;

    margin-bottom:15px;
}

.section-title p{

    font-size:22px;

    color:#5c6675;
}

/* =====================================
   PRODUKTY
===================================== */

.products{

    padding:90px 60px;

    background:white;
}

.products-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.product-card{

    background:white;

    border:1px solid #cfd8e3;

    padding:45px;

    text-align:center;

    transition:.3s;
}

.product-card:hover{

    transform:translateY(-5px);

    border-color:#0066ff;

    box-shadow:
    0 0 15px rgba(0,102,255,.15);
}

.product-card img{

    width:150px;
    height:150px;

    object-fit:contain;

    margin-bottom:25px;
}

.product-card h3{

    font-size:32px;

    color:#1c2430;

    margin-bottom:15px;
}

.product-card p{

    font-size:20px;

    color:#5c6675;

    line-height:1.6;
}

/* =====================================
   ZNAČKY
===================================== */

.brands{

    padding:90px 60px;

    background:#f7f9fc;
}

.brands-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.brand-box{

    background:white;

    border:1px solid #cfd8e3;

    padding:35px;

    text-align:center;

    font-size:26px;

    font-weight:600;

    transition:.3s;
}

.brand-box:hover{

    color:#0066ff;

    border-color:#0066ff;
}

/* =====================================
   KROKY
===================================== */

.steps{

    padding:90px 60px;

    background:white;
}

.steps-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.step-box{

    background:white;

    border:1px solid #cfd8e3;

    text-align:center;

    padding:40px;
}

.step-box span{

    display:block;

    font-size:60px;

    font-weight:700;

    color:#0066ff;

    margin-bottom:15px;
}

.step-box h3{

    font-size:28px;

    margin-bottom:10px;

    color:#1c2430;
}

.step-box p{

    font-size:18px;

    color:#5c6675;
}
/* =========================
   SEO TEXT
========================= */

.seo-section{
    background:#ffffff;
    padding:80px 20px;
}

.seo-content{
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

.seo-content p{
    font-size:20px;
    line-height:1.9;
    color:#5c6675;
    margin-bottom:25px;
}

/* =========================
   PROČ NAKUPOVAT U NÁS
========================= */

.why-buy{
    background:#f7f9fc;
    padding:80px 20px;
}

.why-buy .products-grid{
    max-width:1200px;
    margin:50px auto 0;
}

.why-buy .product-card{
    background:#ffffff;
    border:1px solid #d9e1ea;
    transition:.3s;
}

.why-buy .product-card:hover{
    transform:translateY(-5px);
    border-color:#0066ff;
    box-shadow:0 10px 25px rgba(0,102,255,.08);
}

.why-buy .product-card h3{
    color:#1c2430;
    font-size:30px;
    margin-bottom:15px;
}

.why-buy .product-card p{
    font-size:18px;
    color:#5c6675;
    line-height:1.6;
}

/* =====================================
   CTA SEKCE
===================================== */

.cta-section{

    padding:100px 40px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #004dcc
    );

    color:white;
}

.cta-section h2{

    font-size:56px;

    margin-bottom:20px;

    letter-spacing:2px;
}

.cta-section p{

    font-size:24px;

    margin-bottom:40px;

    color:#dbe2ea;
}

.cta-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:260px;
    height:65px;

    background:white;

    color:#0066ff;

    text-decoration:none;

    font-size:22px;
    font-weight:700;

    transition:.3s;
}

.cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 20px rgba(0,0,0,.15);
}