/* ============================= */
/* 📱 MOBIL (do 768px) */
/* ============================= */
@media only screen and (max-width: 768px) {

```
/* ===== ZÁKLAD ===== */
.row {
    width: 92%;
}

header {
    position: relative;
    overflow: hidden;
}

/* ===== POZADÍ ===== */
header .pozadi {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    filter: brightness(0.6);
}

/* ===== NAV + LOGO ===== */
.nav-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 350px;
    left:10px;
    width: 90%;
    z-index: 2;
}

#logo img {
    width: 130px;
    margin: -300px  11px;
    position: absolute;
}

/* ===== HERO CONTENT ===== */
.header-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 15px;
    text-align: center;
    z-index: 2;
}

.header-text h1,
.header-text h2,
.btn {
    position: static !important;
    transform: none !important;
}

.header-text h1 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.header-text h2 {
    font-size: 13px;
    margin-bottom: 15px;
    color: #d1f7ff;
}

/* ===== BUTTON GRID (HLAVNÍ ZMĚNA) ===== */
.header-text {
    gap: 10px;
}

.btn {
    display: inline-block;
    width: 45%;
    margin: 5px;
    padding: 8px;
    font-size: 13px;
    text-align: center;
    border-radius: 8px;
}

/* centrování posledního tlačítka (5. kus) */
.btn:nth-child(odd):last-child {
    width: 60%;
}

.btn1, .btn2, .btn3, .btn4, .btn5 {
    margin-left: 0;
}

/* ===== SERVICES ===== */
.col {
    width: 100% !important;
    margin-bottom: 30px;
}

.our-services img,
.our-workflow img {
    width: 100%;
    padding: 0;
    transform: none;
}

.service-text,
.service-text-w {
    position: static;
    opacity: 1;
    height: auto;
    width: 94%;
    margin-top: 10px;
    font-size: 14px;
}

.service-box:hover img,
.service-box-w:hover img {
    opacity: 1;
}

/* ===== WORKFLOW ===== */
.our-workflow {
    display: block;
}

/* ===== CENÍK (3 SLOUPCE) ===== */
.price {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 0;
}


.price .col {
    width: 33% !important;
}

.price p {
    font-size: 11px;
    line-height: 1.4;
}

.webtype {
    font-size: 14px;
}




/* ===== FORM ===== */
.contact-form {
    width: 90%;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
}

/* ===== COOKIE ===== */
.cookie-banner {
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.cookie-buttons {
    margin-top: 10px;
}
```

}

/* ============================= */
/* 📱 MALÉ MOBILY (do 480px) */
/* ============================= */
@media only screen and (max-width: 480px) {

```
.header-text h1 {
    font-size: 18px;
}

.header-text h2 {
    font-size: 12px;
}

.btn {
    width: 100%;
    font-size: 13px;
}

.heading-main h2 {
    font-size: 20px;
}

.heading-main h2:after {
    width: 140px;
}

.price p {
    font-size: 10px;
}
```

}
