/* Custom CSS pro moderní design: Bílá / Tmavě modrá (#003366) */
/* Font: Roboto (z Google Fonts) */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: transparent !important; /* Tmavě modrá */
    transition: all 400ms ease;
}
.navbar.scrolled {
    background-color: #fff !important;
}
.navbar.scrolled .navbar-brand img.logo-img {
    max-height: 60px;
}
.navbar-brand img.logo-img {
    max-height: 100px;
    transition: all 400ms ease;
}
.navbar.scrolled .nav-link {
    color: #000 !important;
}
.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.4s ease;
}

.nav-link:hover {
    color: #ccc !important;
}
.navbar.scrolled .social-icons img.social-icon {
    filter: brightness(0) invert(0);
}
.social-icons img.social-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    filter: brightness(0) invert(1); /* Bílé ikonky */
    transition: opacity 0.3s;
}

.social-icons img.social-icon:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0 160px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}
.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0000005a;
}
.hero .container {
    z-index: 3;
}
/* Why Us Section */
#why-us {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-top: -100px;
    z-index: 3;
}

.why-us-block {
    padding: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.why-us-block:hover {
}

.why-us-number {
    display: block;
    font-size: 2rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-us-block h3 {
    font-size: 1.5rem;
}

.why-us-block ul {
    list-style-type: none;
    padding: 0;
}

.why-us-block li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.why-us-block li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #003366;
}

/* Services Section */
#services {
    margin-top: 90px;
}
.service-card {
    padding: 35px;
    text-align: left;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 65px;
}
.service-card-around:nth-child(2) .service-card{
    flex-direction: row-reverse;
}
.service-card:hover {
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-card h3 {
    margin: 15px 0 10px;
}
#contact .social-icons img.social-icon {
    filter: invert(0);
}
/* Pricelist Section */
#pricing {
    background-color: #9D1F86;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 120px;
    padding: 25px 50px;
}
#pricelist table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
}

#pricelist th {
    background-color: #9D1F86;
    color: #fff;
    padding: 10px 20px;
    text-align: left;
}

#pricelist td {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}



h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #9D1F86;
    display: none;
}

footer h5 {
    color: #fff;
    margin-bottom: 1rem;
}

footer p, footer a {
    color: #ccc;
}

footer a:hover {
    color: #fff;
}

footer .social-icons img.social-icon {
    width: 32px;
    height: 32px;
}

/* Responsivita */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .why-us-block {
        margin-bottom: 20px;
    }
}

/* Moderní efekty */
a {
    text-decoration: none;
    transition: color 0.3s;
}

section {
    scroll-margin-top: 80px; /* Pro smooth scroll s fixed navbar */
}

.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.info #hours {
    position: sticky;
    top: 80px;
}

/* Contact and Hours */
#contact, #hours {
}
#contact h2, #hours h2 {
    text-align: left;
}
#hours {
    padding:35px;
    color: #fff;
    border-radius: 20px;
    background-color: #9D1F86;
}

#priceList, #info, #services{
    margin: 120px auto !important;
}

.form-around {
    padding: 35px;
    border-radius: 8px;
    background-color: #eaeaea;
}
.form-around button {
    background-color: #9D1F86;
    border-radius: 8px;
    margin-top: 15px;
    padding: 10px 30px;
    border: none;
    width: 100%;
}
.form-around input, .form-around textarea {
    border-radius: 8px;
    padding: 10px 15px;
}
.form-around form {
    display: flex;
    flex-wrap: wrap;
}
.form-around div:nth-child(3) {
    padding-right: 10px;
}


/* ===== Popup Box ===== */
.popup-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #eaeaea;
  color: #000;
  border-radius: 10px;
  padding: 15px 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.popup-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-box h4 {
  margin-top: 0;
  font-weight: 300;
  margin-bottom: 5px;
  font-size: 20px;
}

.popup-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.popup-box a {
  color: #000;
  text-decoration: underline;
  margin-top: 15px;
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 22px;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #000;
}

/* Mobile */
@media (max-width: 600px) {
  .popup-box {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: 300px;
  }
}