:root {
  --primary-color: #65a70b;
  --primary-dark: #5A8F35;
  --secondary-color: #E8F5E8;
  --text-dark: #000;
  --text-light: #6C757D;
  --border-light: #E9ECEF;
  --shadow-light: rgba(124, 179, 66, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-large: 20px;
  --light-blue: #dbf4ff;
  --light-blue-2: #c7f5ff;
}

body {
  font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.2rem;
}

.navbar {
  background: var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-light);
  padding: 1rem 1rem;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-light);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.card {
  border: none;
  border-radius: var(--radius-large);
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--shadow-light) 0%, transparent 70%);
  opacity: 0.5;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

h2.section-title,
h3.section-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-dark);
}
h3.section-title {
  text-align: center;
  font-size: 2.5rem;
}

.service-card {
  background: white;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: var(--radius-large);
}
.service-card-content {
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.team-card {
  text-align: center;
}
.team-card-content {
  background: var(--primary-color);
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.team-photo {
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  margin: 0 auto;
  width: 100%;
  height: 180px;
}

.team-card-content h4 {
  font-weight: bold;
}
.team-card-content h4,
.team-card-content p {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.testimonial {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: var(--radius-large);
  margin: 1rem 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-section {
  background: var(--primary-color);
  color: white;
  padding: 40px 0;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-large);
  backdrop-filter: blur(10px);
}

.footer {
  background: var(--primary-dark);
  color: white;
  padding: 2rem 0 1rem;
}

/* Desktop and larger tablets */
@media (min-width: 768px) {
  .container {
    margin-top:25px;
  }
  .navbar {
    border-radius: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .service-card {
    padding: 0;
  }
  .service-card-content {
    padding: 2rem;
  }
  .service-icon {
    display: none;
  }
  .service-card h2 {
    background: var(--primary-color);
    color:#ffffff;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    padding: 1rem;
    font-size:1.5rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-info {
    padding: 2rem;
  }

  .footer {
    padding: 2.5rem 0 1rem;
  }

  .guarantee-badge {
    padding: 1rem 2rem;
    margin: 2rem 0;
    font-size: 1rem;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-section {
    padding: 100px 0;
  }

  .team-photo {
    width: 100%;
    height: 300px;
  }

  .contact-section {
    padding: 80px 0;
  }

}


.btn {
  border-radius: 2rem;
}
.btn-light {
  background: var(--light-blue);
  color:#000000;
}
.btn-light:hover {
  background: var(--light-blue-2);
  color:#000000;
}

.btn.btn-extended  {
  background: var(--light-blue);
  padding: 0 61px 0 0;
  position: relative;
}
.btn.btn-extended .btn-text {
  padding: 1rem;
  background: var(--primary-color);
  border-radius: 50px;
  display: inline-block;
}
.btn.btn-extended .btn-decor {
  position:absolute; top:50%; right: 5px;
  margin-top:-23px;
  border-radius: 100%;
  display: inline-block;
  width: 46px;
  height: 46px;
  padding: 10px;
  margin-left:100px;
  margin-right: 0;
  background: no-repeat center #fff
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'> <path d='M5 12h14M13 5l7 7-7 7'/> </svg>"); color: currentColor; /* šipka přebírá barvu textu */
  background-size: 30px;
}

.btn.btn-extended.phone-icon {
  padding: 0 0 0 61px;
}
.btn.btn-extended.phone-icon .btn-decor {
  position:absolute; top:50%; left: 5px;
  margin-left: 0;
  margin-right: 100px;

}
.btn.btn-extended.phone-icon .btn-decor {
  background: no-repeat center #fff
  url('images/ico-phone.svg');
  color: currentColor;          /* ikona přebírá barvu textu */
  background-size: 30px;
}

#co-delame {
  background: var(--light-blue);
}

footer {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  footer .col-md-3 {
    margin: 0;
    padding: 0;
  }

  footer .col-md-3:first-child h3 {
    border-radius: var(--radius-large) 0 0 var(--radius-large);
  }

  footer .col-md-3:last-child h3 {
    border-radius: 0 var(--radius-large) var(--radius-large) 0;
  }
}
#footer-logo {
  white-space: nowrap;
  font-size: 25px;
  line-height: 40px;
}
#footer-logo img {
  width: 53px;
  height: 40px;
}
footer h3 {
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--light-blue);
  color:#000;
  padding:15px;
  text-align: center;
}
footer p {
  text-align: center;
}
#guarantee {
  background: top right no-repeat var(--border-light) url("/images/guarantee.png");
  background-size: 250px;
  border-radius: 100px;
  padding: 3rem;
}

#zavolejte .lead {
  font-weight: bold;
  font-size: 1.5rem;
  margin:0;
}
