  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --container: 1700px;
    --gutter: clamp(16px, 4vw, 40px);
    --section-gap: clamp(60px, 5vw, 100px);

  }



  .services-wrapper,
  .contact-card,
  .about-assistants-wrapper,
  .page-wrapper,
  .navbar {


    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }



  body {
    font-family: "Poppins", Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  .page-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    padding-bottom: clamp(80px, 8vw, 160px);
  }



  html {
    scroll-behavior: smooth;
      scroll-padding-top: 250px;
  }





  /* Navigace */
  .header {
    background-color: #222421;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    
    overflow: hidden; 
  }

  .navbar {
    width: 100%;
    max-width: var(--container);
    padding: 0 24px;  
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
  }

  .btn {
    background-color: #ffffff;
    color: #222421;
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
  }

  .hero {
    position: relative;
    padding-top: 200px;   /* místo 65px */
    padding-bottom: 0;
    display: flex;
  }



  .hero-left {
    max-width: 600px;
  }


  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;   /* motto nahoře */
  }


  .hero-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
  }

  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }



  /* === MOTTO === */
  .motto {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 550px;
    z-index: 5;
    transition: transform 0.6s ease-out;
  }


  .motto-author {
    width: 550px;
    text-align: right;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
  }




  /* === ODBORNÉ ZKUŠENOSTI KARTA === */
  .experience-card {
    background: #222421;
    border-radius: 24px;
    box-shadow:
      0 4px 10px rgba(0,0,0,.35),
      0 10px 25px rgba(0,0,0,.22),
      0 20px 45px rgba(0,0,0,.12);

    padding: 60px 50px;
    max-width: 700px;
    width: 100%;
    color: #fff;
    opacity: 0;
    transform: translateX(60px);   /* nebo translateX */
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 9999;
    position: relative;
    margin-top: 200px;   
    align-self: flex-end;
  }

  /* Animace vyjetí při zobrazení */
  .experience-card.show {
    opacity: 1;
    transform: translateX(0);
  }



  .experience-card h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
  }

  .experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .experience-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
  }

  .experience-list li {
    position: relative;
    padding-left: 20px;
    list-style: none;
  }

  /* default for safety */
  .experience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight:900;
  }

  /* 1. položka – začátek gradientu (#ff5757) */
  .experience-list li:nth-child(1)::before {
    color: #ff5757;
  }

  /* 2. položka – mix mezi červenou a růžovou */
  .experience-list li:nth-child(2)::before {
    color: #e43a67;
  }

  /* 3. položka – střed gradientu */
  .experience-list li:nth-child(3)::before {
    color: #c72576;
  }

  /* 4. položka – posun k fialové */
  .experience-list li:nth-child(4)::before {
    color: #b01082;
  }

  /* 5. položka – skoro konec gradientu */
  .experience-list li:nth-child(5)::before {
    color: #a40588;
  }

  /* 6. položka – konec gradientu (#9e005d) */
  .experience-list li:nth-child(6)::before {
    color: #9e005d;
  }

  .experience-list li:nth-child(7)::before {
    color: #710042;
  }




  /* === SLUŽBY === */
  .services-section {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 10;
  }

  .services-wrapper {
    background-color: #222421;
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 60px 40px;
    
  }

  .services-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: #ffffff;
  }

  /* Boxy s jednotlivými službami */
  .services-boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }

  /* Jedna karta služby */
  .service-item {
    background-color: #1a1b19;
    border-radius: 20px;
    flex: 1 1 clamp(300px, 30%, 380px);
    max-width: 380px;
    padding: 40px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  /* Ikona */
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
    filter: invert(1); /* aby byly bílé */
  }

  /* Text */
  .service-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .service-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
  }


  /* ====================================== */
  /*        SEKCE O MNĚ + ASISTENTKY        */
  /* ====================================== */

  .about-assistants {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Wrapper pro obě karty */
  .about-assistants-wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: nowrap;   /* důležité */
    margin: 0 auto;
  }


  /* ====================================== */
  /*              KARTA O MNĚ               */
  /* ====================================== */

  .about-box {
    background: #222421; /* stejná šedá jako ostatní */
    border-radius: 20px;
    padding: 40px;
    flex: 3 1 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .about-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .about-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    max-width: none;
  }

  /* ====================================== */
  /*           KARTA ASISTENTKY             */
  /* ====================================== */

  .assistants-card {
    background: #222421;
    border-radius: 20px;
    padding: 40px;
    flex: 2 1 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .assistants-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  /* ====================================== */
  /*           OBSAH ASISTENTEK             */
  /* ====================================== */



  .assistants-card h3 {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  /* Grid asistentek */
  .assistants {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
  }

  /* Karta osoby */
  .assistant {
    background: #2b2b28;
    border-radius: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;   /* 🔥 klíč */
    align-items: center;      /* vycentruje */
    text-align: center;

    gap: 14px;
  }



  .assistant img {
    width: 110px;
    height: 165px;
    object-fit: cover;
    border-radius: 12px;
  }


  /* Text */
  .assistant-info strong {
    display: flex;
    font-size: 1rem;
    margin-bottom: 4px;
    flex-direction: column;
    gap: 4px;
  }

  .assistant-info span {
    font-size: .85rem;
    opacity: .7;
  }





  /* === Animace plynulého vyjetí === */
  [data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.7s ease, opacity 0.7s ease;
  }

  [data-reveal].show {
    opacity: 1;
    transform: translateY(0);
  }


  .section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
  }

  .contact-card {
    background: #222421;
    color: #fff;
    padding: 80px 20px;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }


  .contact-section {
    padding: 0;
    margin-bottom: clamp(80px, 8vw, 160px);
  }


  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }



  .contact-info {
    flex: 1 1 45%;
    background: #1a1b19;
    padding: 30px;
    border-radius: 20px;
  }

  .contact-form {
    flex: 1 1 45%;
    background: #1a1b19;
    padding: 30px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: stretch;   /* ⬅️ důležité */
  }

  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .contact-info p {
    margin: 8px 0;
  }


  .contact-form h2 {
    margin-bottom: 20px;
  }

  .form-row {
    display: flex;
    gap: 10px;
  }

  input, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 15px;
    background: #2b2b28;
    color: #fff;
  }


  .open-reviews-btn {
    align-self: center;
    margin-top: 18px;


    padding: 10px 22px;
    border-radius: 999px;

    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #000000;

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    transition: all 0.25s ease;
  }

  .open-reviews-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
  }


  .background-video{
    filter: blur(3px);
    transform: scale(1.2);
  }

  .reviews-carousel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .reviews-carousel {
    overflow: hidden;
  }

  .reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
  }

  .review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #1f1f1f;
    border-radius: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;

    height: clamp(160px, 16vw, 200px);
    position: relative;
    overflow: hidden;
  }

  .review-text {
    overflow: hidden;
  }



  .review-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;

    background: linear-gradient(
      to bottom,
      rgba(31,31,31,0),
      rgba(31,31,31,1)
    );
  }

  .read-more-btn {
    position: absolute;
    bottom: 18px;
    right: 20px;
    background: transparent !important;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    display: none;   /* 🔥 defaultně schované */

  }

  .read-more-btn:hover {
    text-decoration: underline;
    background: transparent !important;
  }


  .read-more:hover {
    text-decoration: underline;
  }



  .review-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .stars {
    color: gold;
    font-size: 14px;
  }


  /* =============================== */
  /* MODAL – RECENZE                 */
  /* =============================== */

  .reviews-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .reviews-modal.active {
    opacity: 1;
    pointer-events: auto;
  }

  .reviews-modal-content {
    background: #ffffff;
    opacity: 0.8;
    width: min(900px, 94vw);
    height: min(80vh, 720px);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .reviews-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Zavírací křížek */
  .reviews-close {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 10;

    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 22px;
    cursor: pointer;
  }

  .reviews-close:hover {
    background: rgba(255,255,255,0.15);
  }



  button
  {
    background: #c91f4a;
    border: none;
    padding: 12px 25px;
    color: #fff; border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
      } 
      
  button:hover { background: #e52b5c; }



  /* =============================== */
  /*     O MNĚ – TEXT + FOTKA        */
  /* =============================== */

  .about-content {
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    gap: 40px;
  }

  .about-text {
    flex: 1;
  }

  .about-photo {
    flex: 0 0 200px;   /* 🔥 pevná šířka */
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
  }



  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }




  /* LEVÁ STRANA – KONTAKTY */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* HLAVNÍ RÁMEČEK – DANA */
  .contact-main {
    background: #2b2b28;
    border-radius: 20px;
    padding: 30px;
  }

  .contact-main h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .contact-main a {
    color: #fff;
    text-decoration: none;
  }

  .contact-main a:hover {
    text-decoration: underline;
  }

  /* ASISTENTKY POD SEBOU */
  .contact-assistants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* JEDEN MALÝ RÁMEČEK */
  .contact-assistants .contact-assistant {
    background: #2b2b28;
    border-radius: 18px;
    padding: 20px;
  }

  .contact-assistants h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .contact-assistants a {
    color: #fff;
    text-decoration: none;
  }

  .contact-assistants a:hover {
    text-decoration: underline;
  }



/* ===== OPRAVA TEXTU V RÁMEČKU ASISTENTEK ===== */

/* celý obsah asistenta pod sebe */
.contact-assistants .contact-assistant {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

/* telefon a mail každý na vlastním řádku */
.contact-assistants .contact-assistant p {
  display: flex;
  gap: 10px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  justify-content: flex-start;
}

/* zabrání lámání čísla */
.contact-assistants .contact-assistant a {
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.contact-assistants .contact-assistant a:hover {
  text-decoration: underline;
}

.gdpr-consent {
  width: 100%;
  margin-bottom: 10px;
}

.gdpr-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.gdpr-label input {
  margin: 0;
}

.gdpr-label span {
  white-space: nowrap;
  display: inline-block;

}

.contact-form button {
  align-self: flex-start;  /* ⬅️ tlačítko vlevo */
}

.gdpr-label a {
  color: white;
  text-decoration: underline;
}

.gdpr-label a:hover {
  color: #e52b5c;   /* stejná hover barva jako button */
}

.gdpr-consent {
  width: 100%;
  margin: 10px 0;
}

.gdpr-label {
  display: flex;
  align-items: flex-start; /* ne center */
  gap: 10px;
  width: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
}

input[type="checkbox"] {
  width: auto;
}

.gdpr-label input[type="checkbox"] {
  margin-top: 3px; /* uprav 2–6px podle oka */
}



.gdpr-label span {
  white-space: nowrap;
}

.contact-form button {
  align-self: flex-start;
}

.gdpr-consent {
  width: 100%;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* důležité */
  padding: 30px;
}



.gdpr-label span {
  line-height: 1.4;
}




/* ========================================= */
/*   NOTEBOOK RESPONSIVE – SCALE DOWN ONLY   */
/*   (vzhled stejný jako desktop, jen menší) */
/* ========================================= */



@media (max-width: 1440px) {

  :root {
    --section-gap: 60px;
    --container: 1400px;
  }

  /* ===== ZÁKLADNÍ MĚŘÍTKO ===== */
  body {
    font-size: 15px;
  }

  .page-wrapper {
      padding-left: 32px;
      padding-right: 32px;
  }


  /* ===== NAVIGACE ===== */
  .navbar {
    width: 100%;
    padding: 0 32px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .btn {
    padding: 9px 26px;
    font-size: 0.9rem;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 0;
  }



  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }


  .motto {
    font-size: 2.1rem;
    max-width: 460px;
    top: 150px;
    left: 1%;
    line-height: 1.25;
  }

  .experience-card {
    max-width: 510px;
    padding: 38px 34px;
    border-radius: 22px;
    margin-top: 0;
    align-self: flex-start;   /* místo flex-end */
    margin-left: auto;        /* drží ji vpravo */
  }

  .experience-card h2 {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }

  .experience-list li {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }


  .services-title {
    font-size: 2.1rem;
    margin-bottom: 55px;
  }

  .services-boxes {
    gap: 26px;
  }

  .service-item {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .service-item h3 {
    font-size: 1.25rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }

  .services-boxes {
    align-items: stretch;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-item p {
    margin-top: auto;
  }


  .icon-circle {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }

  .icon-circle img {
    width: 28px;
    height: 28px;
  }


  .reference-card {
    padding: 48px 34px;
    border-radius: 22px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 45px;
  }

  .reference-item {
    padding: 26px;
    border-radius: 18px;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .contact-card {
    max-width: var(--container);
    padding: 60px 34px;
    border-radius: 22px;
  }

  .contact-info,
  .contact-form {
    padding: 26px;
    border-radius: 18px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.6rem;
  }

  
  .about-assistants-wrapper {
      display: flex;
      gap: 40px;
      align-items: stretch;
      flex-wrap: nowrap;
  }

  .assistant-info strong {
      font-size: 0.8rem;
  }


  .about-box {
    flex: 1.3;
    min-width: 0; /* ⬅️ KLÍČOVÁ OPRAVA PRO iPad Air */
  }

  .assistants-card {
    flex: 1;
    max-width: none;
    overflow: hidden;
  }

  .assistant img {
    width: 95px;
  }

  /* 3️⃣ Srovnání začátku obsahu uvnitř karet */
  .about-content {
    align-items: flex-start;
  }

  /* 4️⃣ Zarovnání nadpisů na stejnou výšku */
  .about-box h2,
  .assistants-card h3 {
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .assistants {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
  }



  .assistant-info strong {
      word-break: break-word;
  }


    /* jednotlivé karty asistentek */
  .about-assistants .contact-assistant {
    padding: 14px;
  }


  /* O mně – ještě jemnější zmenšení */
  .about-box {
    padding: 26px;
  }

  .about-content {
    gap: 24px;
  }

    /* text */
  .about-box p {
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: none; /* 🔑 ODSTRANIT 500px */
  }

  /* fotka */
  .about-photo {
    height: 250px;
    border-radius: 22px;
  }

  .about-text p{
    font-size: 80%;
  }



  .motto-author {
    left: -13%;              /* stejné jako motto v tomto breakpointu */
    top: 150px;            /* stejné jako motto */
    width: 460px;          /* stejné jako max-width motta */
    margin-top: 140px;     /* doladění pod text */
  }

}




/* default – desktop */
.video-mobile {
  display: none;
}




/* hamburger – default skrytý */
.hamburger {
  all: unset;              /* ⬅️ TOTO JE KLÍČOVÉ */
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  top: 65px;                 /* POD NAVBAREM */
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 999;              /* NAD VIDEEM */

  clip-path: inset(0 0 100% 0); /* ⬅️ schované shora */
  opacity: 0;
  pointer-events: none;

  transition:
    clip-path 0.4s cubic-bezier(.4,0,.2,1),
    opacity 0.2s ease;
}




.mobile-menu.active {
  clip-path: inset(0 0 0 0);  /* ⬅️ odhalí se DOLŮ */
  opacity: 1;
  pointer-events: auto;
}



.mobile-menu a {
  display: block;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 700;
}





/* === MOBIL === */
@media (max-width: 767px) and (orientation: portrait)  {

  :root {
    --mobile-padding: 16px;
  }



  .experience-card,
  .services-wrapper,
  .about-box,
  .assistants-card,
  .reference-card,
  .contact-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }




  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }


  .gdpr-label span {
    white-space: normal;      /* dovolí zalomení */
    line-height: 1.4;
    margin-bottom: 5px;
  }



  .background-video {
    position:fixed;
  }

  .motto {
    position: static;          /* ⬅️ KLÍČ */
    margin: 0 0 6px 0;   /* žádné auto */
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }


  .motto-author {
    position: static !important;
    display: block;
    margin-top: 0;
    text-align: left;      /* zarovná text vlevo */
    margin-left: 0;        /* jistota */
    width: 100%;           /* stejné chování na všech telefonech */
    margin-left: 0;
    font-size: 0.9rem;
    margin-top: 0;

  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: relative;
    max-width: none;   /* 🔥 zruší container limit */
    width: 100%;
    margin: 0;
  }

  .navbar .btn {
    margin-left: auto;   /* 🔥 pošle tlačítko doprava */
    position: static;    /* ❗ zruš absolute */
    transform: none;


         
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-top: 100px; /* prostor pod navbar */
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }



  
  .experience-card {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    opacity: 1; 
    padding: 48px 24px;
  }



  .experience-card h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }

  .experience-list li {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }


  .hero-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;   /* ⬅️ tady řídíš vzdálenost */
  }
    

  


  /* schová klasické menu */
  .nav-links {
    display: none;
  }

  /* ukáže hamburger */
  .hamburger {
    display: flex;
    margin-right: auto;   /* 🔥 přilepí ho vlevo */
  }


  

  .services-wrapper{                       
    padding: 48px 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }



  .services-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;   /* ⬅️ STŘED */
    gap: 24px;
  }
  

  .service-item {
    max-width: 100%;
    max-width: none;   /* ⬅️ KLÍČ */
    margin: 0;
  }


  
  /* === KARTA O MNĚ – STEJNÁ ŠÍŘKA JAKO OSTATNÍ === */
  .about-box {
    position: relative;
    margin: 0 auto;                 /* ⬅️ STŘED */
    padding: 36px 30px;

    flex: none;                     /* ⬅️ ZRUŠÍ FLEX CHOVÁNÍ */
    min-width: 0;
  }

  /* obsah pod sebe */
  .about-content {
    display: block;
  }

  /* === FOTKA – VPRAVO NAHOŘE + OBTÉKÁNÍ === */
  .about-photo {
    float: right;
    width: 140px;
    height: auto;

    margin: 0 0 16px 16px;
    border-radius: 14px;
    overflow: hidden;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXT */
  .about-text {
    padding: 0;
  }

  .about-box h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .about-box p {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
  }

  /* CLEARFIX – NUTNÉ */
  .about-content::after {
    content: "";
    display: table;
    clear: both;
  }

  .assistants-card {
    margin: 0 auto;

    flex: none;        /* ⬅️ KLÍČ – zabije desktop flex */
    min-width: 0;
  }

    /* KARTA JEDNÉ ASISTENTKY */
  .assistants-card .assistant {
    display: flex;
    flex-direction: column;   /* ⬅️ FOTKA NAD TEXT */
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  /* FOTKA */
  .assistants-card .assistant img {
    width: 90px;              /* ⬅️ menší, úspornější */
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
  }

  /* JMÉNO */
  .assistant-info strong {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
    display: block;          /* zruší flex */
    word-break: normal;      /* zákaz lámání uprostřed slova */
    overflow-wrap: normal;
  }
  
    .about-assistants-wrapper {
      flex-direction: column;   /* 🔥 klíč */
  }





  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }


.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row input {
  margin-bottom: 0;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #2b2b28;
  color: #fff;
  box-sizing: border-box;
}

.contact-form form {
  display: flex;
  flex-direction: column;

}

.form-row input:first-child {
  margin-bottom: 2px;   /* Jméno bez marginu */
}

.form-row input:last-child {
  margin-bottom: 15px;  /* Příjmení má stejný margin jako ostatní */
}




  /* KONTAKT – ZMĚNA POŘADÍ NA MOBILU */

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }

  .contact-form {
    order: 1;   /* ⬅️ FORMULÁŘ PRVNÍ */
  }

  .contact-info {
    order: 2;   /* ⬅️ KONTAKTY DRUHÉ */
  }




  .contact-card {
    max-width: none;
    margin: 0;
    padding-left: 16px;   /* pevná hodnota */
    padding-right: 16px;  /* pevná hodnota */
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* KONTEJNER */
  .contact-container {
    flex-direction: column;   /* 🔥 klíč */

  }

  .contact-info,
  .contact-form {
    flex: none;               /* 🔥 zruší 45% */
    width: 100%;
  }

  /* JEDNOTLIVÉ RÁMEČKY (Dana / Denisa / Tereza) */
  .contact-main
  .contact-assistants .contact-assistant {
    padding: 22px 20px;
    border-radius: 18px;
  }

  /* JMÉNA */
  .contact-main h2,
  .contact-assistants h4 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    text-align: left;
  }

  /* ŘÁDKY S IKONOU */
  .contact-main p,
  .contact-assistants .contact-assistant p {
    display: flex;
    align-items: center;
    gap: 12px;                 /* ⬅️ STEJNÁ MEZERA */
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* IKONY (📞 ✉️) – fixní šířka = perfektní zarovnání */
  .contact-main p::before,
  .contact-assistants .contact-assistant p::before {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .contact-main a,
  .contact-assistants a {
    font-size: 0.8rem;   /* menší */
    word-break: break-word;
  }

    .contact-assistants .contact-assistant p:last-child a {
    font-size: 0.8rem;
  }


  /* ASISTENTKY POD SEBOU (už máš, jen jistota) */
  .contact-assistants {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-assistants {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }


  .contact-assistants .assistant {
    width: 100%;
    box-sizing: border-box;
  }


  .assistants-card h3 {
    text-align: center;
  }

  .contact-main,
  .contact-assistants .assistant {
    width: 100%;
    padding: 22px 20px;
    border-radius: 18px;
    box-sizing: border-box;
  }


  .reviews-track {
    display: flex;
    gap: 0;              /* ❗ vypnout gap */
    width: 100%;
  }

  .reviews-carousel {
    overflow: hidden;
    width: 100%;
  }

  .review-card {
    flex: 0 0 100%;   /* 🔥 jedna karta přes celou šířku */
    min-height: 200px;
    padding: 20px;
    width: 100%;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .review-card::after {
    height: 60px;   /* menší fade */
    
  }


  :root {
    --gutter: 12px;   /* ← zmenší boční mezery */
  }

  .page-wrapper,
  .services-wrapper,
  .contact-card,
  .navbar
   {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }


}



/* =============================== */
/*            TABLET               */
/*      (769px – 1024px)           */
/* =============================== */

@media (min-width: 768px) and (max-width: 1024px) {


  :root {
    --section-gap: 60px;
  }



  /* ===== ZÁKLAD ===== */
  body {
    font-size: 15px;
  }



  .page-wrapper {
    padding: 0 28px clamp(80px, 8vw, 160px);
  }

  /* ===== NAVIGACE ===== */
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .btn {
    padding: 9px 24px;
    font-size: 0.9rem;
  }


  .services-title {
    font-size: 2rem;
    margin-bottom: 48px;
  }

  .services-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-item {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 20px;
  }

  .service-item p {
    margin-top: auto;
  }



  .icon-circle {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }

  .icon-circle img {
    width: 26px;
    height: 26px;
  }

  .service-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }


  .about-assistants-wrapper {
    flex-direction: column;
    gap: var(--section-gap);
  }

  .about-box,
  .assistants-card {
    width: 100%;
    flex: none;
    padding: 32px;
  }

  .about-content {
    gap: 28px;
  }

  .about-box h2,
  .assistants-card h3 {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }

  .about-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: none;
  }

  .about-photo {
    height: 240px;
  }

  /* ===== ASISTENTKY (FOTKY) ===== */
  .assistants {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .assistant {
    padding: 16px;
  }

  .assistant img {
    width: 90px;
    height: 130px;
  }

  .assistant-info strong {
    font-size: 0.95rem;
  }

  /* ===== REFERENCE ===== */
  .reference-card {
    padding: 48px 32px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }



  .contact-container {
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    padding: 26px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.6rem;
  }

  .form-row {
    gap: 12px;
  }

  .contact-section {
    margin-bottom: var(--section-gap);
  }

}

.hamburger {
  -webkit-tap-highlight-color: transparent; /* odstraní červené bliknutí */
}

.hamburger:focus,
.hamburger:active {
  outline: none;
  background: transparent;
}



.hamburger:active span {
  opacity: 0.6;
}

