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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2f2f2f;
  background-color: #fff;
}

.top-bar {
  background-color: #1a295a;
  font-size: 0.9rem;
  color: #f1f1f1;
}
.top-bar .contact-info {
  display: flex;
  align-items: center;
}
.top-bar .contact-info i {
  font-size: 1rem;
}
.top-bar .contact-info span {
  margin-left: 4px;
}
@media (max-width: 576px) {
  .top-bar .container.d-flex.justify-content-between.align-items-center.flex-wrap {
    margin: 0;
    padding: 0;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .top-bar {
    flex-direction: row !important;
    justify-content: center;
    gap: 1.2rem;
  }
  .top-bar .contact-info {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
  }
  .top-bar .contact-info a {
    color: #f1f1f1;
    font-weight: 500;
    text-decoration: none;
  }
  .top-bar .contact-info:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
  }
  .top-bar .contact-info i {
    margin-right: 5px;
    font-size: 1rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 2.8em;
  width: 3.75em;
  padding: 0.55em 0;
}
.navbar-brand .navbar-logo {
  height: 100%;
  width: 100%;
}
.navbar-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 600;
}
.navbar-brand .logo-text span {
  color: #273d8c;
}

.main-header .navbar .navbar-toggler {
  border: none;
}
.main-header .navbar .navbar-brand .logo-text span {
  color: #273d8c;
}
.main-header .navbar .nav-link {
  color: #2f2f2f;
  margin: 0 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-header .navbar .nav-link:hover {
  color: #273d8c;
}
.main-header .navbar .dropdown-menu .dropdown-item {
  color: #2f2f2f;
}
.main-header .navbar .dropdown-menu .dropdown-item:hover {
  color: #273d8c;
  background-color: transparent;
}
@media (max-width: 575.98px) {
  .main-header .navbar {
    padding: 0.6rem 1rem;
  }
  .main-header .navbar .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
  .main-header .navbar-brand {
    height: 2.4em;
    width: 3.2em;
    padding: 0.4em 0;
  }
  .main-header .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

.navbar-nav > .dropdown:hover > .dropdown-menu {
  display: block;
}

@media (max-width: 575.98px) {
  .navbar-nav {
    text-align: center;
    margin: 0 auto;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-item .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .navbar-nav .service-menu .list-group-item {
    border: none !important;
    background: none !important;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
    text-align: center;
    font-size: 1rem;
  }
  .navbar-nav .dropdown-menu {
    text-align: center;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #2f2f2f !important;
    background-color: transparent !important;
    border: none;
    width: 100%;
  }
  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: transparent !important;
    color: #273d8c !important;
  }
}
@media (min-width: 992px) {
  .navbar-nav > .dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
.hero-section {
  position: relative;
  min-height: 80vh;
  background: url("../img/home_intro.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  color: #f1f1f1;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-section .hero-text {
  max-width: 600px;
  padding: 0 5%;
}
.hero-section .hero-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: rgb(253.75, 253.75, 253.75);
}
.hero-section .hero-text h2 .highlight-pink {
  color: #273d8c;
}
.hero-section .hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero-section .hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-section .hero-text .btn {
  margin-right: 1rem;
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  border: none;
}
.hero-section .hero-text .btn-pink {
  background-color: #273d8c;
  color: #fff;
}
.hero-section .hero-text .btn-pink:hover {
  background-color: rgb(27.8882681564, 43.6201117318, 100.1117318436);
}
.hero-section .hero-text .btn-dark {
  background-color: #fff;
  color: #2f2f2f;
}
.hero-section .hero-text .btn-dark:hover {
  background-color: white;
}
.hero-section .row {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .hero-section .row {
    text-align: center;
  }
  .hero-section .row .hero-text {
    padding: 0 1.5rem;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 75vh !important;
    padding: 2.55em 0 2.8em;
    background-position: center top;
  }
  .hero-section .hero-buttons {
    width: 50%;
    margin: 0 auto;
  }
  .hero-section .hero-text {
    padding: 0 1rem;
  }
  .hero-section .hero-text h1 {
    font-size: 2rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-section .hero-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.9rem !important;
  }
  .hero-section .hero-text p {
    font-size: 1rem !important;
    margin-bottom: 1.6rem !important;
  }
  .hero-section .hero-text .btn {
    display: block;
    width: auto;
    margin: 0 auto 0.75rem;
  }
}

footer {
  background-color: #111;
  color: #fff;
  padding: 3em 0;
  text-align: center;
}
footer .footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #273d8c;
  margin-bottom: 1rem;
}
footer .social-icons {
  margin-bottom: 1rem;
}
footer .social-icons a {
  font-size: 1.3rem;
  margin: 0 0.6rem;
  color: #273d8c;
  transition: color 0.3s ease;
}
footer .social-icons a:hover {
  color: rgb(50.1117318436, 78.3798882682, 179.8882681564);
}
footer .copyright {
  font-size: 0.9rem;
  color: #aaa;
}
footer .copyright a {
  color: #273d8c;
  font-weight: 500;
  text-decoration: none;
}
footer .copyright a:hover {
  color: rgb(50.1117318436, 78.3798882682, 179.8882681564);
}
@media (max-width: 767px) {
  footer .footer-logo {
    font-size: 1.4rem;
  }
  footer .social-icons a {
    font-size: 1.2rem;
  }
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2f2f2f;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #2f2f2f;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-section {
  padding: 10em 0;
  background-color: #fff;
}
.about-section .row.align-items-center {
  gap: 2em;
}
.about-section .about-subtitle {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.about-section .about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-section .about-title .highlight {
  color: #273d8c;
}
.about-section .about-lead,
.about-section .about-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #2f2f2f;
  margin-bottom: 1.5rem;
}
.about-section .btn-salmon {
  background-color: #273d8c;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.about-section .btn-salmon:hover {
  background-color: rgb(27.8882681564, 43.6201117318, 100.1117318436);
}
.about-section .about-image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}
.about-section .about-image-wrapper .about-image-bg {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 100%;
  background-color: #273d8c;
  border-radius: 10px;
  z-index: 1;
}
.about-section .about-image-wrapper .about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .about-section .row {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .about-section .about-image-wrapper {
    margin-bottom: 2rem;
  }
  .about-section .about-title {
    font-size: 1.6rem;
  }
  .about-section .about-lead {
    font-size: 0.95rem;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 4em 1em;
    padding-bottom: 5em;
  }
  .about-section .about-title {
    font-size: 1.9rem;
    text-align: center;
    line-height: 1.5;
  }
  .about-section .about-subtitle {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .about-section .about-lead,
  .about-section .about-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
  }
  .about-section .about-lead {
    padding: 0.45em 0;
    font-weight: 500;
  }
  .about-section .about-image-wrapper {
    display: none;
  }
  .about-section .btn-salmon {
    width: 50%;
    max-width: 280px;
    display: block;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
  }
}

.waxing-section {
  background-color: #f9f9f9;
}
.waxing-section .service-tab {
  margin: 0 10px;
  cursor: pointer;
}
.waxing-section .service-tab a {
  display: inline-block;
  text-decoration: none;
  color: #2f2f2f;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px;
  transition: color 0.3s ease;
}
.waxing-section .service-tab a img {
  max-width: 40px;
  margin-bottom: 5px;
}
.waxing-section .service-tab a:hover {
  color: #273d8c;
}
.waxing-section .service-tab.active a {
  color: #273d8c;
  font-weight: 600;
}
.waxing-section .service-menu .list-group-item {
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #ddd;
  color: #2f2f2f;
  transition: color 0.3s ease;
}
.waxing-section .service-menu .list-group-item:hover {
  color: #273d8c;
}
.waxing-section .service-menu .list-group-item.active {
  color: #fff;
  background-color: #273d8c;
  font-weight: 600;
}
.waxing-section .price {
  color: #273d8c;
  font-weight: 600;
}

.services-tabs-section {
  background-color: rgba(39, 61, 140, 0.08);
  padding: 4em 0 10em;
  padding-top: 6em;
  /* -------------------------------------------------
     📱  MOBILNÍ VERZE – úpravy sekce služeb
  ------------------------------------------------- */
}
.services-tabs-section .services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.services-tabs-section .services-title .highlight {
  color: #273d8c;
}
.services-tabs-section .services-lead {
  font-size: 1rem;
  color: #2f2f2f;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  padding-bottom: 2em;
}
@media (max-width: 767px) {
  .services-tabs-section .services-lead {
    padding-bottom: 0.5em;
  }
}
.services-tabs-section .services-tabs-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3em;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  .services-tabs-section .services-tabs-header {
    margin-bottom: 1.6em;
    gap: 1.2rem;
  }
}
.services-tabs-section .service-tab {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 20px 10px;
  margin: 0 10px 10px;
  width: 120px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.services-tabs-section .service-tab a {
  display: block;
  color: #273d8c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.services-tabs-section .service-tab a i {
  font-size: 26px;
  margin-bottom: 6px;
  display: block;
  color: #273d8c;
  transition: color 0.3s ease;
}
.services-tabs-section .service-tab:hover {
  background-color: rgba(39, 61, 140, 0.12);
  transform: translateY(-2px);
}
.services-tabs-section .service-tab.active {
  background-color: #273d8c;
  border-color: #273d8c;
}
.services-tabs-section .service-tab.active a, .services-tabs-section .service-tab.active a i {
  color: #fff;
}
.services-tabs-section .service-menu {
  padding-right: 1rem;
}
.services-tabs-section .service-menu .list-group-item {
  cursor: pointer;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #2f2f2f;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.2rem;
}
.services-tabs-section .service-menu .list-group-item:hover {
  background-color: rgb(135.7262569832, 154.469273743, 221.7737430168);
  color: #273d8c;
}
.services-tabs-section .service-menu .list-group-item.active {
  background-color: #273d8c;
  color: #fff;
  font-weight: 600;
}
.services-tabs-section .service-menu .list-group-item span.float-right {
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .services-tabs-section .service-menu {
    padding-right: 0;
  }
  .services-tabs-section .service-menu .list-group-item {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}
.services-tabs-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2f2f2f;
}
.services-tabs-section .price {
  color: #273d8c;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.services-tabs-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 1rem;
}
.services-tabs-section .btn-purple,
.services-tabs-section .btn-salmon {
  background-color: #273d8c;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 30px;
}
.services-tabs-section .btn-purple:hover,
.services-tabs-section .btn-salmon:hover {
  background-color: rgb(27.8882681564, 43.6201117318, 100.1117318436);
}
.services-tabs-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.services-tabs-section p {
  color: #2f2f2f;
}
@media (max-width: 575.98px) {
  .services-tabs-section {
    padding-bottom: 5em;
    margin-bottom: 0;
    /* Ikony – dvě vedle sebe */
    /* Levé svislé menu roztažené na 100 % */
    /* Detail služby (obrázek pryč, text+btn centrované) */
  }
  .services-tabs-section .services-tabs-header > [class*=col-] {
    max-width: 40% !important;
  }
  .services-tabs-section .services-tabs-header .service-tab {
    width: 100%;
    margin: 0 0 20px;
    margin-bottom: 0;
  }
  .services-tabs-section .service-menu {
    flex: 0 0 100% !important;
    max-width: 90% !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
    margin-bottom: 1.5rem !important;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .services-tabs-section .service-menu .list-group {
    width: 100% !important;
  }
  .services-tabs-section .service-menu .list-group-item {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    white-space: normal !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:first-child {
    display: none !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:last-child h3 {
    font-size: 1.2rem !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:last-child .price {
    display: inline-block !important;
    margin-top: 0.3rem !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:last-child p {
    text-align: center !important;
  }
  .services-tabs-section .row.align-items-start .col-md-6:last-child .btn {
    display: inline-block !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1.2rem !important;
    margin-top: 1rem !important;
  }
}

.gallery-section {
  background-color: #fff;
  padding: 7em 0 10em;
}
.gallery-section .gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.gallery-section .gallery-title .highlight {
  color: #273d8c;
}
.gallery-section .gallery-subtext {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #2f2f2f;
  font-weight: 500;
}
.gallery-section .gallery-filters li {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0 10px;
  cursor: pointer;
  font-weight: 600;
  color: #2f2f2f;
  position: relative;
  transition: all 0.3s ease;
}
.gallery-section .gallery-filters li:hover, .gallery-section .gallery-filters li.active {
  color: #273d8c;
}
.gallery-section .gallery-filters li:hover::after, .gallery-section .gallery-filters li.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #273d8c;
}
.gallery-section img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
  background-color: rgba(39, 61, 140, 0.08);
  padding: 5em 0 7em;
}
.contact-section .contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.contact-section .contact-title .highlight {
  color: #273d8c;
}
.contact-section .contact-lead {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #2f2f2f;
  font-weight: 500;
}
.contact-section .contact-info-box {
  background-color: #fff;
  border-left: 4px solid #273d8c;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.contact-section .contact-info-box h4 {
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #273d8c;
}
.contact-section .contact-info-box h4 i {
  color: #273d8c;
}
.contact-section .contact-info-box p {
  font-size: 0.95rem;
  color: #2f2f2f;
}
.contact-section .map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* -----------------------------------------------------
   Feature Section – výrazný CTA
----------------------------------------------------- */
.feature-section {
  background-color: #fff;
  padding: 6em 0 12em;
  padding-top: 7em;
}
.feature-section .feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.feature-section .feature-title .highlight {
  color: #273d8c;
}
.feature-section .feature-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #2f2f2f;
  margin-bottom: 1.5rem;
}
.feature-section .col-lg-6.feature-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.feature-section .col-lg-6.feature-image img {
  max-height: 300px;
}
@media (max-width: 575.98px) {
  .feature-section {
    padding: 4em 1em 5em;
    padding-bottom: 5em;
  }
  .feature-section .feature-title {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
  .feature-section .feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.2rem;
  }
  .feature-section .btn {
    display: block;
    width: 60%;
    max-width: 280px;
    margin: 1.5rem auto 0 !important;
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
    text-align: center;
    border-radius: 25px;
  }
  .feature-section .feature-image {
    display: none !important;
  }
}

/* -----------------------------------------------------
// Buttons – globální stylizace tlačítek
----------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn.btn-pink, .btn.btn-salmon, .btn.btn-purple {
  background-color: #273d8c;
  color: #fff;
}
.btn.btn-pink:hover, .btn.btn-salmon:hover, .btn.btn-purple:hover {
  background-color: rgb(27.8882681564, 43.6201117318, 100.1117318436);
  color: #fff;
}
.btn.btn-dark {
  background-color: #fff;
  color: #2f2f2f;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.btn.btn-dark:hover {
  background-color: white;
}

.contact-section {
  padding: 5em 0 7em;
  padding-top: 6em;
  padding-bottom: 10em;
}
.contact-section .contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
}
.contact-section .contact-title .highlight {
  color: #273d8c;
}
.contact-section .contact-lead {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #2f2f2f;
  font-weight: 500;
}
.contact-section h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #273d8c;
}
.contact-section h4 i {
  color: #273d8c;
  margin-right: 8px;
}
.contact-section p {
  font-size: 1rem;
  color: #2f2f2f;
  margin-bottom: 1rem;
}
.contact-section p a {
  color: #2f2f2f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section p a:hover {
  color: #273d8c;
}
.contact-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info-box,
.contact-section .map-wrapper {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 3em 1.5em 5em;
    padding-top: 4em;
    padding-bottom: 6em;
    text-align: left;
  }
  .contact-section h4 {
    font-size: 1rem;
    margin-top: 1.2rem;
  }
  .contact-section div.text-center {
    margin-bottom: 1em !important;
  }
  .contact-section p {
    font-size: 0.95rem;
  }
  .contact-section p.contact-lead {
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
    padding-top: 0.8em;
  }
  .contact-section iframe {
    height: 250px;
    margin-top: 0rem;
  }
  .contact-section .col-md-6 {
    margin-bottom: 0.5em !important;
  }
}/*# sourceMappingURL=style.css.map */






.prerender{display:block}
    body.hydrated .prerender{display:none !important}

    /* drobné styly pro prerender header/footer a ceny */
    header.main-header .navbar-logo{height:65px;max-width:180px;object-fit:contain}
    .shadow-header{box-shadow:0 4px 12px rgba(0,0,0,.15)}
    footer{background:#111;color:#fff;padding:24px 0}
    footer a{color:#fff;text-decoration:none}
    footer a:hover{color:#dce3f2}
    .price{color:#273d8c;font-weight:600}