 html {
    scroll-behavior: smooth;
    }
    
/*    @font-face {
        font-family: Montserrat;
        src: url(fonty/Montserrat-VariableFont_wght.ttf);
        font-style: normal;
    }
    
    @font-face {
        font-family: Montserrat;
        src: url(fonty/Montserrat-Italic-VariableFont_wght.ttf);
        font-style: italic;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    background-color: #dfdfdf;
    /* font-family: Montserrat; */
}

.bg-brand-dark {
  background-color: #d6127e; /* tmavě růžová */
}

/* .nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #007bff; 
  }
  
  .nav-link.active {
    font-weight: bold;
    color: #0056b3;
  } */

  .custom-navbar {
    background-color: #d6127e; /* vlastní barva */
    font-size: 1.5rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  
  }
 
  /* Barva loga / značky */
  .custom-navbar .navbar-brand {
    color: white;
    font-weight: bold;
  }

  .brand-text span {
    display: block;
    line-height: 1.1;
  }
   
  .small-text {
    font-size: 0.7rem;
  }

  .custom-navbar .navbar-brand:hover {
    color: white;
  }

   @media (min-width: 768px) {
    .custom-navbar .nav-item .nav-link {
      /* color: #fff; */
/*   }
    .custom-navbar .nav-item .nav-link:hover { */
      position: relative;
      display: inline-block;
      color: #fff; /* Bílý text */
      text-decoration: none; 
    }

    .custom-navbar .nav-item .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 1px; /* Tenká čára */
      background-color: #fff; /* Bílá čára */
      transition: width 0.3s ease;
    }

    .custom-navbar .nav-item .nav-link:hover::after {
      width: 100%;
    }
  }
   
   @media (max-width: 768px) {

    .custom-navbar .nav-item .nav-link {
      color:white;
      font-size: 1rem;
      line-height: 1.2;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .custom-navbar .nav-item .nav-link:active {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 6px;
    }
  } 

  .navbar-nav .nav-item .nav-link {
    transition: all 0.2s ease-in-out;
  }
  
  .custom-toggler {
    color:white;
    font-weight: bold;
  }

  .navbar-toggler-icon {
    color:white;
    background-image: url("../images/icons/list-white.svg");
    background-size: cover;
  }

  .navbar-scrolled {
    background-color: rgba(214,160,190,0.9) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .login-link {
    border: 1px solid #aaa;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    color: black;
    background-color:#da96bb;
    font-weight: 400;
  }

  .login-link:hover {
    color:white;
    background-color: #914a71;
  }
 
  .spacer {
    height: 140px; /* výška odpovídající výšce navigace */
  }

  .small-spacer {
    height: 70px;
  }

  .custom-rounded-border {
    border-radius: 5%;
  }

  .h2, .h3 {
    margin-bottom: 2rem;
  }

  .action {
    color:#914a71;
    text-shadow: 2px 2px 6px #4e4b4b;
  }

  footer {
    background-color: #4e4b4b;
    color: white;
  }

  .footer-list {
    list-style-type: none;
  }

  .footer-link {
    text-decoration: none;
    color: white;
  }

  .footer-link:hover {
    color:#da96bb
  }

  .footer-spacer {
    height: 20px;
  }

  .foot-col-side, .foot-col-center {
    flex: 1 1 100%;
  }

  @media (min-width: 768px) {
  .foot-col-side {
    flex: 1 1;
  }

  .foot-col-center {
    flex: 2;
    margin-left: 4rem;
    margin-right: 6rem;
  } 
 }
  /* Obecné nastavení formuláře */
#orderForm {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 100%;
}

/* Políčka formuláře */
#orderForm input,
#orderForm textarea {
  padding: 8px;
  background-color: transparent;
  color: white;
  border-style: none;
  border-bottom:solid 1px white;
 /* varianta s lehced zaoblenými jemně šedými formulářovými poli: 
  background-color:#dfdfdf;
  border-radius: 8px; */
  font-family: inherit;
  font-size: 0.95em;
  width: 100%;
}

#orderForm input,
#orderForm textarea:focus {
  /* vypnutí automatických stylů po kliknutí dovnitř pole*/
  outline:none;
  box-shadow: none;
}

#orderForm input, 
#orderForm textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #4e4b4b inset !important;
  -webkit-text-fill-color: #ffff !important;
  border-style: none !important;
  border-bottom: solid 1px white !important;
  transition: background-color 5000s ease-in-out 0s; /* zpoždění autofill efektu */
}

#orderForm input::placeholder {
  color:#4e4b4b
}

/* Tlačítko */
#orderForm button {
  border: 1px solid #aaa;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  color: black;
  background-color:#da96bb;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s;
}

#orderForm button:hover {
  color: #ffff;
  background-color: #914a71; /* tmavší při hoveru */
}

/* Zpráva pro uživatele */
#form-message {
  font-size: 0.9em;
}

/* Volitelné – menší na mobilu */
@media (max-width: 768px) {
  #orderForm {
    padding-top: 20px;
  }
}

