/* Speciální styl pro tlačítko Objednat se s rámečkem */
.objednat-btn {
  background: linear-gradient(90deg, #ffb6d5 0%, #e0d6ff 100%);
  color: #7a4978 !important;
  border: 2px solid #eabfff;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.7em 2.2em;
  box-shadow: 0 4px 16px rgba(231, 84, 128, 0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
  letter-spacing: 0.5px;
}
.objednat-btn:hover, .objednat-btn:focus {
  background: linear-gradient(90deg, #e0d6ff 0%, #ffb6d5 100%);
  color: #e75480 !important;
  border-color: #e75480;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
body {
  margin-bottom: 60px;
  background-color: #fff6fa;
  color: #7a4978;
}

.hero-section {
  background: linear-gradient(90deg, #ffe0f0 0%, #e0d6ff 100%);
  padding: 2.5rem 1rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  max-height: 10vh;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 1.2rem 0.5rem;
    max-height: 18vh;
  }
  .hero-section h1 {
    font-size: 1.4rem !important;
  }
  .hero-section p {
    font-size: 1rem !important;
  }
  .row > div {
    width: 100% !important;
    margin-bottom: 1.5rem;
  }
}
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* již přesunuto do body */
}


.custom-navbar {
  background: linear-gradient(90deg, #ffe0f0 0%, #e0d6ff 100%);
  border-bottom: 3px solid #eabfff;
}

.navbar-brand, .nav-link {
  color: #7a4978 !important;
  font-weight: 500;
}

.nav-link.active, .nav-link:hover {
  color: #e75480 !important;
}

 .custom-footer {
  background-color: #ffe0f0;
  color: #7a4978;
  border-top: 3px solid #eabfff;
  font-size: 1em;
  padding: 0.2em 0;
  line-height: 1.1;
  max-height: none;
  overflow: visible;
  white-space: nowrap;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2em;
  line-height: 6px;
}
}

.gallery {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 2rem;
}
 .gallery img {
  max-width: 250px;
  border-radius: 10px;
  border: 3px solid #eabfff;
  background: #fff6fa;
  box-shadow: 0 2px 8px rgba(231, 84, 128, 0.08);
}

 .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #ffe0f0, 0 0 0 0.25rem #eabfff;
}