@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  h1 {
    font-size: calc(2.5rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: calc(2.5rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: calc(2.5rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: calc(2.5rem - 0.2rem);
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 1200px) {
  h2 {
    font-size: calc(2rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: calc(2rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: calc(2rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: calc(2rem - 0.2rem);
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  h3 {
    font-size: calc(1.75rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: calc(1.75rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: calc(1.75rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: calc(1.75rem - 0.2rem);
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  h4 {
    font-size: calc(1.5rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h4 {
    font-size: calc(1.5rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: calc(1.5rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h4 {
    font-size: calc(1.5rem - 0.2rem);
  }
}

h5 {
  font-size: 1.25rem;
}
@media (max-width: 1200px) {
  h5 {
    font-size: calc(1.25rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h5 {
    font-size: calc(1.25rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: calc(1.25rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h5 {
    font-size: calc(1.25rem - 0.2rem);
  }
}

h6 {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  h6 {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  h6 {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  h6 {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  h6 {
    font-size: calc(1rem - 0.2rem);
  }
}

p {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  p {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  p {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  p {
    font-size: calc(1rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  p {
    font-size: calc(1rem - 0.2rem);
  }
}

small {
  font-size: 0.875rem;
}
@media (max-width: 1200px) {
  small {
    font-size: calc(0.875rem - 0.2rem);
  }
}
@media (max-width: 992px) {
  small {
    font-size: calc(0.875rem - 0.2rem);
  }
}
@media (max-width: 768px) {
  small {
    font-size: calc(0.875rem - 0.2rem);
  }
}
@media (max-width: 576px) {
  small {
    font-size: calc(0.875rem - 0.2rem);
  }
}

p,
span {
  font-size: 1rem;
}

small {
  font-size: 0.875rem;
}

body {
  font-family: "Roboto";
}

h2 {
  text-transform: uppercase;
}

#navbar {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}
#navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#navbar.scrolled .nav-link {
  color: #333 !important;
}
#navbar.scrolled .navbar-brand .logo {
  height: 80px;
}
#navbar .navbar-brand {
  display: flex;
  align-items: center;
}
#navbar .navbar-brand .logo {
  height: 70px;
  width: auto;
}
#navbar .navbar-nav {
  flex-grow: 1;
  justify-content: center;
  gap: 30px;
}
#navbar .navbar-nav .nav-link {
  color: #fff;
  transition: color 0.3s, transform 0.3s;
  font-weight: 500;
  position: relative;
  margin: 0 1.5rem;
}
#navbar .navbar-nav .nav-link:hover {
  color: #5cb85c;
}
#navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #5cb85c;
  transition: width 0.3s ease-in-out;
}
#navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
#navbar .btn-primary {
  background-color: #5cb85c;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#navbar .btn-primary:hover {
  background-color: #4cae4c;
  transform: translateY(-2px);
}
#navbar .btn-primary:active {
  transform: translateY(0);
  background-color: #398439;
}
#navbar .btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.5);
}
@media (max-width: 991px) {
  #navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #navbar .nav-link {
    color: #333 !important;
  }
  #navbar .nav-link:hover {
    color: #5cb85c !important;
  }
  #navbar .navbar-brand .logo {
    height: 60px;
  }
  #navbar .btn-primary {
    background-color: #5cb85c;
    color: #fff;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  #navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  #navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  #navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  #navbar .navbar-collapse {
    background-color: #fff;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  #navbar .navbar-collapse .navbar-nav {
    gap: 0;
  }
  #navbar .navbar-collapse .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  #navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin: 0;
  }
  #navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(92, 184, 92, 0.1);
  }
  #navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
  #navbar .navbar-collapse .btn-primary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}

header.parallax {
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
  gap: 13rem;
}
header.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
header.parallax .facebook-icon {
  position: absolute;
  top: 6rem;
  right: 5rem;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: #1877F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
header.parallax .facebook-icon:hover {
  background: #166FE5;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
header.parallax .facebook-icon i {
  color: white;
  font-size: 1.5rem;
}
header.parallax .header-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 65%;
}
header.parallax .header-content h1,
header.parallax .header-content h2 {
  color: #ffffff;
  font-size: calc(2.5rem + 5vw);
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
header.parallax .header-content .mesta {
  font-size: 4rem !important;
  margin-bottom: 1.5rem;
}
header.parallax .header-content .slogan-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header.parallax .header-content .slogan-container .slogan-wrapper {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
header.parallax .header-content .slogan-container .slogan-wrapper:hover {
  transform: translateY(-5px);
}
header.parallax .header-content .slogan-container .slogan {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.7rem;
  position: relative;
}
header.parallax .header-content .slogan-container .slogan-decoration {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
header.parallax .header-content .slogan-container .slogan-decoration .line {
  display: inline-block;
  height: 2px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.6);
}
header.parallax .header-content .slogan-container .slogan-decoration i {
  color: #4CAF50;
  font-size: 1.2rem;
  margin: 0 0.5rem;
}
header.parallax .price-card {
  position: relative;
  z-index: 2;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
header.parallax .price-card:hover {
  transform: translateY(-5px);
}
header.parallax .price-card .price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #FF5722;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 0 12px 0 12px;
  text-transform: uppercase;
}
header.parallax .price-card .price-title {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
header.parallax .price-card .price-value {
  margin-bottom: 1.5rem;
}
header.parallax .price-card .price-value .amount {
  font-size: 3.2rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}
header.parallax .price-card .price-value .currency {
  font-size: 1.2rem;
  color: #4CAF50;
  font-weight: 500;
  margin-left: 0.2rem;
}
header.parallax .price-card .price-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header.parallax .price-card .price-btn span {
  margin-right: 0.5rem;
}
header.parallax .price-card .price-btn i {
  transition: transform 0.2s ease;
}
header.parallax .price-card .price-btn:hover {
  background: #388E3C;
}
header.parallax .price-card .price-btn:hover i {
  transform: translateX(3px);
}
@media (max-width: 1200px) {
  header.parallax .header-content {
    max-width: 60%;
  }
}
@media (max-width: 992px) {
  header.parallax {
    padding: 0 2rem;
  }
  header.parallax .header-content {
    max-width: 60%;
  }
  header.parallax .price-card {
    width: 180px;
    padding: 1.5rem 1rem;
  }
  header.parallax .price-card .price-value .amount {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  header.parallax {
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    background-attachment: scroll;
    gap: 2rem;
  }
  header.parallax .facebook-icon {
    top: 4rem;
    right: 3rem;
    width: 45px;
    height: 45px;
  }
  header.parallax .facebook-icon i {
    font-size: 1.3rem;
  }
  header.parallax .header-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  header.parallax .header-content .slogan-container {
    align-items: center;
  }
  header.parallax .header-content .slogan-container .slogan-wrapper {
    border-left: none;
    border-top: 4px solid #4CAF50;
    max-width: 90%;
  }
  header.parallax .header-content .slogan-container .slogan {
    text-align: center;
  }
  header.parallax .price-card {
    width: 220px;
  }
}
@media (max-width: 576px) {
  header.parallax .facebook-icon {
    top: 5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
  }
  header.parallax .facebook-icon i {
    font-size: 1.2rem;
  }
  header.parallax .header-content h1, header.parallax .header-content h2 {
    font-size: calc(2rem + 5vw);
  }
  header.parallax .header-content .mesta {
    font-size: 2.5rem !important;
  }
  header.parallax .header-content .slogan-container .slogan {
    font-size: 1.1rem;
  }
  header.parallax .header-content .slogan-container .slogan-decoration .line {
    width: 40px;
  }
  header.parallax .price-card {
    padding: 1.5rem 1rem;
  }
  header.parallax .price-card .price-title {
    font-size: 1.2rem;
  }
  header.parallax .price-card .price-value .amount {
    font-size: 2.8rem;
  }
  header.parallax .price-card .price-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 375px) {
  header.parallax .header-content .slogan-container .slogan {
    font-size: 1rem;
  }
  header.parallax .price-card {
    width: 180px;
  }
  header.parallax .price-card .price-value .amount {
    font-size: 2.5rem;
  }
}

.about .about-meta {
  color: #5cb85c;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}
.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333333;
}
.about .about-description {
  margin-bottom: 2rem;
  color: #555555;
}
.about .feature-list-wrapper {
  margin-bottom: 2rem;
}
.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #555555;
}
.about .feature-list li i {
  color: #5cb85c;
  font-size: 1.25rem;
}
.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
  color: #333333;
}
.about .profile .profile-position {
  color: #5cb85c;
  margin: 0;
  font-size: 0.875rem;
}
.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.about .contact-info i {
  color: #5cb85c;
  font-size: 1.5rem;
}
.about .contact-info .contact-label {
  color: #555555;
  font-size: 0.875rem;
  margin: 0;
}
.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}
.about .image-wrapper {
  position: relative;
}
.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid #f9f9f9;
}
.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}
.about .image-wrapper .experience-badge h3 {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}
.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}
.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
  .about .image-wrapper .experience-badge {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@keyframes experience-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
#onas {
  padding: 3rem 0;
}
#onas .onas-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#onas .onas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
#onas .onas-card .onas-card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#onas .onas-card .onas-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#onas .onas-card .onas-card-body .onas-card-title {
  font-size: 1.25rem;
  color: #1a8d2b;
  margin-bottom: 0.75rem;
}
#onas .onas-card .onas-card-body p {
  color: #333333;
  font-size: 0.95rem;
}

#call-to-action {
  background-image: linear-gradient(45deg, #3dbd33 0%, #1a8d2b 20%, #054d1f 50%);
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}
#call-to-action h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#call-to-action p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
#call-to-action .btn {
  background-color: #ffffff;
  color: #054d1f;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#call-to-action .btn:hover {
  background-color: #1a8d2b;
  color: #ffffff;
}
#call-to-action img {
  max-width: 350px;
  border-radius: 15px;
}
@media (max-width: 576px) {
  #call-to-action img {
    max-width: 230px;
  }
}

#provozovny {
  background-color: #f9f9f9;
  padding: 4rem 0;
  /* Flexbox pro zajištění stejných výšek */
}
#provozovny h2 {
  color: #333;
  font-size: 2.5rem;
}
#provozovny p {
  color: #555;
  font-size: 1rem;
}
#provozovny a {
  text-decoration: none;
}
#provozovny .card {
  display: flex;
  flex-direction: column; /* Umožní zarovnat obsah vertikálně */
  justify-content: space-between; /* Zajistí rovnoměrné rozložení obsahu */
  height: 100%; /* Karta zabere maximální dostupnou výšku */
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#provozovny .card img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
#provozovny .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
#provozovny .card .card-body {
  padding: 1rem;
  flex-grow: 1; /* Zajistí, že tělo karty bude pružně měnit výšku */
  display: flex;
  flex-direction: column; /* Zarovnání obsahu na výšku */
  justify-content: space-between; /* Oddělení textu v těle karty */
}
#provozovny .card .card-body h5 {
  color: #333;
  margin-bottom: 0.5rem;
}
#provozovny .card .card-body p {
  color: #777;
  font-size: 0.9rem;
}
#provozovny .card-container {
  display: flex;
  flex-wrap: wrap; /* Umožní přechod karet na nový řádek při zmenšení */
  gap: 1rem;
}
@media (max-width: 768px) {
  #provozovny h2 {
    font-size: 2rem;
  }
  #provozovny .card img {
    height: 150px;
  }
  #provozovny .card {
    height: auto; /* Přizpůsobí se obsahu na menších obrazovkách */
  }
}

#podrobnosti {
  background-color: #f9f9f9;
  padding: 3rem 0;
}
#podrobnosti h2 {
  font-size: 2.5rem;
  color: #333;
}
#podrobnosti .nav-tabs {
  border-bottom: 2px solid #ddd;
}
#podrobnosti .nav-tabs .nav-link {
  color: #666;
  border: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}
#podrobnosti .nav-tabs .nav-link.active, #podrobnosti .nav-tabs .nav-link:hover {
  color: #5cb85c;
  border-bottom: 2px solid #5cb85c;
  background-color: transparent;
}
#podrobnosti .tab-pane .map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#podrobnosti .tab-pane h5 {
  color: #5cb85c;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#podrobnosti .tab-pane p,
#podrobnosti .tab-pane ul {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #podrobnosti h2 {
    font-size: 2rem;
  }
  #podrobnosti .nav-tabs .nav-link {
    padding: 0.5rem;
  }
  #podrobnosti .map {
    height: 250px;
  }
}

#contact-form .bg-image {
  background-image: url("https://www.nejlevnejsipalety.cz/img/bg-image.webp");
  background-size: cover;
  background-position: center;
}
#contact-form h3 {
  color: #333;
  font-size: 1.75rem;
}
#contact-form .form-control,
#contact-form .form-select {
  border-radius: 0.5rem;
}
#contact-form button {
  transition: all 0.3s ease;
}
#contact-form button:hover {
  transform: scale(1.02);
}

#blue-contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #5cb85c;
  text-align: center;
}

#blue-contact p {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 39px;
}

#blue-contact a {
  text-decoration: underline;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 39px;
}

#blue-contact .thiner-text {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 10px;
}

@media (max-width: 430px) {
  #blue-contact p {
    max-width: 220px;
    margin: 0 auto 10px auto;
  }
  #blue-contact .thiner-text {
    max-width: 100%;
    margin: 10px auto 0 auto;
  }
}
#pila {
  background-color: #f8f9fa;
}
#pila .pila-card {
  position: relative;
  height: 300px;
}
#pila .pila-card .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
#pila .pila-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#pila .pila-card .card-content {
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}
#pila .pila-card .icon-envelope {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5cb85c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
}
#pila .pila-card:hover .card-img {
  transform: scale(1.1);
}
#pila .pila-card:hover .card-overlay {
  opacity: 1;
}
#pila .pila-card:hover .icon-envelope {
  opacity: 1;
}

.contact-section .contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-card img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.contact-section .contact-card h5 {
  margin-top: 1rem;
  color: #333;
}
.contact-section .contact-card p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
.contact-section .contact-card a {
  text-decoration: none;
  font-weight: bold;
  color: #28a745;
}
.contact-section .contact-card a:hover {
  text-decoration: underline;
}

#prodej-palet .table thead {
  font-size: 1.1rem;
  font-weight: bold;
}
#prodej-palet .table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
}
#prodej-palet .table button {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
#prodej-palet .table button:hover {
  transform: scale(1.1);
}
#prodej-palet a {
  cursor: pointer;
}
#prodej-palet a i {
  color: #28a745;
}

#how-it-works {
  /* Responsiveness */
}
#how-it-works .timeline {
  position: relative;
  padding: 20px 0;
  margin: 0;
}
#how-it-works .timeline-title {
  font-size: 28px;
  font-weight: 700;
  color: #5cb85c;
  margin-bottom: 30px;
}
#how-it-works .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #5cb85c;
  transform: translateX(-50%);
}
#how-it-works .timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}
#how-it-works .timeline-item:nth-child(2) {
  flex-direction: row-reverse;
  text-align: right;
}
#how-it-works .timeline-item:last-child {
  margin-bottom: 0;
}
#how-it-works .timeline-icon {
  position: relative;
  z-index: 1;
  background: #5cb85c;
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
#how-it-works .timeline-item:nth-child(odd) .timeline-icon {
  margin-right: 0;
  margin-left: 15px;
}
#how-it-works .timeline-content {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}
#how-it-works .timeline-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #5cb85c;
}
#how-it-works .timeline-content p {
  font-size: 14px;
  margin: 0;
  color: #333;
}
@media (max-width: 768px) {
  #how-it-works .timeline::before {
    left: 10px;
  }
  #how-it-works .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  #how-it-works .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
  }
  #how-it-works .timeline-icon {
    margin: 0 0 10px 0;
  }
  #how-it-works .timeline-content {
    max-width: 100%;
  }
}

.motto {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #006400;
  background: #e8f4ff;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.motto:hover {
  background: #d1ecff;
  transform: scale(1.02);
}

#modern-timeline {
  background: #f8f9fa;
  padding: 3rem 0;
}
#modern-timeline .img-fluid {
  max-width: 70%; /* Zmenší šířku obrázku na 70 % rodičovského prvku */
  height: auto; /* Zachová proporce obrázku */
  margin-top: 20px; /* Přidá odsazení od CTA boxu */
}
#modern-timeline .max {
  max-width: 470px;
}

.timeline-list {
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: center;
}

.timeline-step .icon-circle {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-size: 1.5rem;
}

.timeline-step .step-content {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 470px;
}

.timeline-step .step-content h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #28a745;
}

.timeline-step .step-content p {
  margin: 0;
  color: #6c757d;
}

.timeline-step:not(:last-child) {
  margin-bottom: 30px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #28a745;
}

.timeline-step .icon-circle {
  position: relative;
  z-index: 1;
}

.cta-box {
  text-align: center;
}

.cta-box h3 {
  font-size: 1.8rem;
  color: #28a745;
}

.cta-box p {
  color: #6c757d;
}

@media (max-width: 768px) {
  .timeline-list::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .timeline-step .icon-circle {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .timeline-step .step-content {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .timeline-list::before {
    display: none;
  }
}
#vykup-palet {
  /* Responzivita */
}
#vykup-palet .card-paleta {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
#vykup-palet .card-paleta:hover {
  transform: scale(1.05);
}
#vykup-palet .bg-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
  transition: filter 0.3s ease-in-out;
}
#vykup-palet .card-paleta:hover .bg-image {
  filter: brightness(0.4);
}
#vykup-palet .card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}
#vykup-palet .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#vykup-palet .card-paleta:hover .overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  #vykup-palet .card-paleta {
    height: 200px;
  }
}
@media (max-width: 576px) {
  #vykup-palet .card-paleta {
    height: 180px;
  }
}

.footer {
  background-color: #222;
  color: #fff;
  font-size: 0.9rem;
  position: relative;
}
.footer .eco-slogan-footer {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer .eco-slogan-footer .slogan-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.footer .eco-slogan-footer .slogan-wrapper .slogan-icon {
  color: #5cb85c;
  font-size: 1.8rem;
  margin-right: 1rem;
  animation: leaf-float 3s ease-in-out infinite;
}
.footer .eco-slogan-footer .slogan-wrapper .slogan-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  font-style: italic;
  position: relative;
}
.footer .eco-slogan-footer .slogan-wrapper .slogan-line {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5cb85c, transparent);
}
.footer .eco-slogan-footer .slogan-wrapper:hover .slogan-text::after {
  width: 80px;
}
@keyframes leaf-float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}
.footer .footer-links li {
  margin-bottom: 0.6rem;
  transition: transform 0.2s ease;
}
.footer .footer-links li:hover {
  transform: translateX(5px);
}
.footer .footer-links li a {
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.footer .footer-links li a i {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.footer .footer-links li a:hover {
  color: #5cb85c;
}
.footer .footer-links li a:hover i {
  opacity: 1;
  transform: translateX(3px);
}
.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.footer .contact-item i {
  margin-top: 0.3rem;
  transition: transform 0.3s ease;
}
.footer .contact-item a, .footer .contact-item span {
  line-height: 1.5;
}
.footer .contact-item:hover i {
  transform: scale(1.2);
}
.footer .contact-item:hover a {
  color: #5cb85c;
}
.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none !important;
}
.footer .social-link:hover {
  background: #5cb85c;
  transform: translateY(-5px);
  color: #fff;
}
.footer .social-link:hover i {
  transform: none;
}
.footer .copyright {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.8;
}
.footer .fw-bold {
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.footer .fw-bold::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #5cb85c;
}
.footer .text-lg-end .fw-bold::after {
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .footer .eco-slogan-footer .slogan-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .footer .eco-slogan-footer .slogan-wrapper .slogan-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .footer .text-lg-end {
    text-align: center !important;
  }
  .footer .text-lg-end .fw-bold::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .footer .fw-bold {
    display: block;
    text-align: center;
  }
  .footer .fw-bold::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .contact-item {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer .eco-slogan-footer .slogan-wrapper .slogan-text {
    font-size: 1rem;
  }
}

.truck-graphic {
  pointer-events: none; /* Jen dekorativní, aby nezasahovalo do interakce */
}

#blue-contact,
#pobocky {
  scroll-margin-top: 80px; /* Zajistí 80px mezery od horního okraje */
}

.facebook-strip {
  background: linear-gradient(90deg, #3b5998 0%, #8b9dc3 100%);
  padding: 1.8rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.facebook-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.facebook-strip .facebook-strip-title {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  font-size: 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.facebook-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.facebook-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.facebook-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .facebook-strip {
    padding: 1.5rem 0;
    text-align: center;
  }
  .facebook-strip .facebook-strip-title {
    margin-bottom: 1rem;
  }
  .facebook-strip .text-md-end {
    text-align: center !important;
  }
}
.nove-pobocky-section {
  background: #F4F4F4;
}
.nove-pobocky-section .nove-pobocky-content {
  text-align: center;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #15191C;
  margin-bottom: 3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-text {
  text-align: left;
  margin-bottom: 3rem;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #15191C;
  margin-bottom: 1.5rem;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-text p:last-child {
  margin-bottom: 0;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-text p strong {
  font-weight: 600;
  color: #15191C;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta .nove-pobocky-btn {
  background: #2E7D32;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta .nove-pobocky-btn:hover {
  background: #1B5E20;
  color: white;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta .nove-pobocky-btn:focus {
  outline: 2px solid #2E7D32;
  outline-offset: 2px;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-footer p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-footer p a {
  color: #555;
  text-decoration: underline;
}
.nove-pobocky-section .nove-pobocky-content .nove-pobocky-footer p a:hover {
  color: #333;
}
@media (max-width: 768px) {
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-text {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-text p {
    font-size: 1rem;
  }
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta {
    flex-direction: column;
    align-items: center;
  }
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-cta .nove-pobocky-btn {
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .nove-pobocky-section .nove-pobocky-content .nove-pobocky-title {
    font-size: 1.75rem;
  }
}

.vykup-palet-page .vykup-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vykup-palet-page .vykup-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a5d1a 0%, #2d4a2d 50%, #0f2e0f 100%);
  z-index: 1;
}
.vykup-palet-page .vykup-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}
.vykup-palet-page .vykup-hero .container {
  position: relative;
  z-index: 3;
}
.vykup-palet-page .vykup-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.vykup-palet-page .vykup-hero .hero-badge {
  display: inline-block;
  background: rgba(92, 184, 92, 0.2);
  color: #5cb85c;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(92, 184, 92, 0.3);
}
.vykup-palet-page .vykup-hero .hero-badge i {
  color: #5cb85c;
}
.vykup-palet-page .vykup-hero .vykup-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.vykup-palet-page .vykup-hero .vykup-hero-title .city-highlight {
  color: #5cb85c;
  display: block;
  font-size: 4.5rem;
  text-shadow: 0 0 30px rgba(92, 184, 92, 0.3);
}
.vykup-palet-page .vykup-hero .vykup-hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.vykup-palet-page .vykup-hero .hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.vykup-palet-page .vykup-hero .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}
.vykup-palet-page .vykup-hero .hero-features .feature-item i {
  color: #5cb85c;
  font-size: 1.2rem;
}
.vykup-palet-page .vykup-intro-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #15191C;
  margin-bottom: 1.5rem;
}
.vykup-palet-page .vykup-intro-content p strong {
  font-weight: 600;
  color: #5cb85c;
}

.blurred-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 184, 92, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blurred-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blurred-box h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #15191C;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.blurred-box h5 i {
  margin-right: 0.75rem;
  font-size: 1.4rem;
  color: #5cb85c;
}
.blurred-box p {
  color: #6c757d;
  margin: 0;
  font-style: italic;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #5cb85c, #4cae4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.blurred-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  border-radius: 1rem;
}
.blurred-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(92, 184, 92, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.blurred-box h5 {
  position: relative;
  z-index: 2;
  opacity: 0.8;
}
.blurred-box p {
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.branch-info-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  border: 1px solid rgba(92, 184, 92, 0.1);
  position: relative;
  overflow: hidden;
}
.branch-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5cb85c 0%, #4cae4c 100%);
}
.branch-info-card .info-section {
  margin-bottom: 2rem;
}
.branch-info-card .info-section:last-child {
  margin-bottom: 0;
}
.branch-info-card .info-section h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f1f3f5;
  padding-bottom: 0.75rem;
}
.branch-info-card .info-section h4 i {
  color: #5cb85c;
  font-size: 1.4rem;
  margin-right: 0.75rem;
  opacity: 0.9;
}
.branch-info-card .info-section .info-content .branch-address {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.branch-info-card .info-section .info-content .branch-details {
  color: #5a6c7d;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.branch-info-card .info-section .info-content .gps-coords {
  color: #7c8fa1;
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
  background: #f8f9fa;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.branch-info-card .info-section .info-content .gps-coords i {
  color: #5cb85c;
  margin-right: 0.5rem;
}
.branch-info-card .info-section .info-content .contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f3f5;
}
.branch-info-card .info-section .info-content .contact-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.branch-info-card .info-section .info-content .contact-row .contact-label {
  color: #5a6c7d;
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
  width: 40%;
}
.branch-info-card .info-section .info-content .contact-row .contact-value {
  color: #2c3e50;
  font-size: 1rem;
  text-align: right;
  flex: 1;
}
.branch-info-card .info-section .info-content .contact-row .contact-value strong {
  font-weight: 600;
}
.branch-info-card .info-section .info-content .contact-row .contact-value .phone-link {
  color: #5cb85c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.branch-info-card .info-section .info-content .contact-row .contact-value .phone-link:hover {
  color: #4cae4c;
  text-decoration: underline;
}
.branch-info-card .logistics-info {
  background: rgba(92, 184, 92, 0.03);
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid #5cb85c;
}
.branch-info-card .logistics-info h5 {
  color: #2c3e50;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.branch-info-card .logistics-info h5 i {
  color: #5cb85c;
  margin-right: 0.75rem;
  font-size: 1.3rem;
}
.branch-info-card .logistics-info p {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.btn-cta {
  background: #5cb85c;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(92, 184, 92, 0.3);
}
.btn-cta:hover {
  background: #4cae4c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4);
}
.btn-cta:focus {
  outline: 2px solid #5cb85c;
  outline-offset: 2px;
  color: white;
}
.btn-cta:active {
  transform: translateY(0);
}
.btn-cta i {
  margin-right: 0.5rem;
}

.vykup-facebook {
  background: #f8f9fa;
}
.vykup-facebook .facebook-link {
  margin: 0;
}
.vykup-facebook .facebook-link a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.vykup-facebook .facebook-link a:hover {
  color: #1877F2;
  text-decoration: underline;
}
.vykup-facebook .facebook-link a i {
  color: #1877F2;
}

@media (max-width: 768px) {
  .vykup-palet-page .vykup-hero {
    min-height: 80vh;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-title {
    font-size: 2.5rem;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-title .city-highlight {
    font-size: 3rem;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .vykup-palet-page .vykup-hero .hero-features {
    gap: 1.5rem;
  }
  .vykup-palet-page .vykup-hero .hero-features .feature-item {
    font-size: 0.9rem;
  }
  .vykup-palet-page .vykup-intro-content p {
    font-size: 1rem;
  }
  .blurred-box {
    padding: 2rem;
  }
  .blurred-box h5 {
    font-size: 1.1rem;
  }
  .blurred-box h5 i {
    font-size: 1.2rem;
  }
  .blurred-box p {
    font-size: 1rem;
  }
  .branch-info-card {
    padding: 2rem;
  }
  .branch-info-card .info-section {
    margin-bottom: 1.5rem;
  }
  .branch-info-card .info-section h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .branch-info-card .info-section h4 i {
    font-size: 1.2rem;
  }
  .branch-info-card .info-section .info-content .branch-address {
    font-size: 1rem;
  }
  .branch-info-card .info-section .info-content .branch-details {
    font-size: 0.9rem;
  }
  .branch-info-card .info-section .info-content .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .branch-info-card .info-section .info-content .contact-row .contact-label {
    width: 100%;
    font-size: 0.85rem;
  }
  .branch-info-card .info-section .info-content .contact-row .contact-value {
    text-align: left;
    font-size: 0.95rem;
  }
  .branch-info-card .logistics-info {
    padding: 1.5rem;
  }
  .branch-info-card .logistics-info h5 {
    font-size: 1rem;
  }
  .branch-info-card .logistics-info p {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .vykup-palet-page .vykup-hero {
    min-height: 70vh;
  }
  .vykup-palet-page .vykup-hero .hero-content {
    padding: 1rem 0;
  }
  .vykup-palet-page .vykup-hero .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-title .city-highlight {
    font-size: 2.5rem;
  }
  .vykup-palet-page .vykup-hero .vykup-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .vykup-palet-page .vykup-hero .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  .vykup-palet-page .vykup-hero .hero-features .feature-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  .blurred-box {
    padding: 1.5rem;
  }
  .blurred-box h5 {
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
  }
  .blurred-box h5 i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .branch-info-card {
    padding: 1.5rem;
  }
  .branch-info-card .info-section h4 {
    font-size: 1rem;
    text-align: center;
    flex-direction: column;
  }
  .branch-info-card .info-section h4 i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .branch-info-card .info-section .info-content {
    text-align: center;
  }
  .branch-info-card .info-section .info-content .branch-address {
    font-size: 0.95rem;
  }
  .branch-info-card .info-section .info-content .branch-details {
    font-size: 0.85rem;
  }
  .branch-info-card .info-section .info-content .gps-coords {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  .branch-info-card .info-section .info-content .contact-row {
    text-align: center;
  }
  .branch-info-card .info-section .info-content .contact-row .contact-label {
    font-size: 0.8rem;
  }
  .branch-info-card .info-section .info-content .contact-row .contact-value {
    font-size: 0.9rem;
  }
  .branch-info-card .logistics-info {
    padding: 1.25rem;
    text-align: center;
  }
  .branch-info-card .logistics-info h5 {
    font-size: 0.95rem;
    flex-direction: column;
  }
  .branch-info-card .logistics-info h5 i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .branch-info-card .logistics-info p {
    font-size: 0.85rem;
  }
  .btn-cta {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
  }
}
.btn-route {
  background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(92, 184, 92, 0.25);
}
.btn-route:hover {
  background: linear-gradient(135deg, #4cae4c 0%, #398439 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.35);
  text-decoration: none;
}
.btn-route:focus {
  outline: 2px solid #5cb85c;
  outline-offset: 2px;
  color: white;
}
.btn-route:active {
  transform: translateY(0);
}
.btn-route i {
  margin-right: 0.4rem;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .btn-route {
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
  }
  .btn-route i {
    font-size: 0.8rem;
  }
}
@media (max-width: 576px) {
  .btn-route {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .btn-route i {
    margin-right: 0.3rem;
  }
}/*# sourceMappingURL=styles.css.map */