  .cf-wrapper {
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden; /* zabrání horizontálnímu scrollu */
  }

  .cf-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 15px; /* přidá vnitřní odsazení na menších displejích */
    box-sizing: border-box;
  }

  .cf-info h2,
  .cf-form h2 {
    color: #2f0e63;
    margin-bottom: 25px;
    text-align: center;
  }

  .cf-row {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    color: #2f0e63;
    justify-content: center;
    margin: 20px 0;
  }

  .cf-icon {
    width: 50px;
    height: 50px;
    background: #f8f0ee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cf-icon i {
    color: #fffff;
    font-size: 24px;
  }

  .cf-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .cf-form label {
    font-size: 15px;
    color: #2f0e63;
  }

  .cf-form input,
  .cf-form textarea,
  .cf-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
  }

  .cf-form textarea {
    resize: vertical;
  }

  .cf-form button {
  margin-top: 10px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #5a3300 0%, #a36700 100%); /* tmavě hnědá gradient */
  color: #fff; /* sytě bílá barva textu */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* jemný stín textu */
  cursor: pointer;
  transition: filter 0.25s;
  align-self: center;
}


  .cf-form button:hover {
  filter: brightness(1.1);
}

  /* === MOBILNÍ RESPONSIVITA ======================================== */
  @media (max-width: 767.98px) {
    .cf-wrapper {
      padding: 40px 15px; /* menší padding na mobilu */
    }

    .cf-inner {
      padding: 0 10px; /* ještě menší vnitřní odsazení na malých displejích */
    }

    .cf-form input,
    .cf-form textarea,
    .cf-form select {
      font-size: 14px;
      padding: 12px 14px;
    }

    .cf-form button {
      padding: 14px 30px;
      font-size: 14px;
    }

    .cf-icon {
      width: 48px;
      height: 48px;
    }

    .cf-icon i {
      font-size: 20px;
    }
  }
  
  
  
  form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

#form-message {
    display: none;
    max-width: 300px;      /* omezení šířky */
    margin: 0 auto;        /* vycentrování */
    text-align: center;    /* text na střed */
    font-weight: 500;
}

input, textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
}

button {
  background: var(--accent);
  color: white;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #936642;
}

footer {
  background: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

    /* Povolit výběr pouze ve footeru */
    footer {
        user-select: text !important;
        -webkit-user-select: text !important;
        -ms-user-select: text !important;
        -moz-user-select: text !important;
    }