/* Common Style */
html * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
*:focus-visible {
  outline: 2px solid #64c98f;
  outline-offset: 2px;
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../../portrait-ks.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 50px;
  animation: heroFadeIn 2s ease-in-out;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  line-height: 80px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -5px;
  margin-bottom: 30px;
}
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  color: #ffffff;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-content .btn-hero {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 60px;
  font-weight: 400;
  color: #ffffff;
  background-color: #64c98f;
  border-radius: 30px;
  padding: 0 40px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hero-content .btn-hero:hover {
  background-color: #52b57d;
  color: #ffffff;
  opacity: 1;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .hero-content {
    padding: 0 30px;
  }
}
@media (max-width: 778px) {
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 45px;
    line-height: 45px;
    letter-spacing: -3px;
  }
  .hero-content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section {
    justify-content: center;
  }
}

/* Links */
a {
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #007bff;
}

/* Navigation */
.bg-light {
  background-color: transparent !important;
}
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.3s;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #64c98f !important;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #64c98f;
}
nav.nav-bg {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff !important;
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.navbar-light.nav-bg .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 1);
}
.navbar-light.nav-bg .navbar-nav .nav-link:hover {
  color: #64c98f;
}
nav .white-logo {
  display: block;
}
nav .black-logo {
  display: none;
}
nav.nav-bg .white-logo {
  display: none;
}
nav.nav-bg .black-logo {
  display: block;
}
.navbar-light .btn {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 30px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.navbar-light .btn i {
  font-size: 22px;
}

/* Sections */
section {
  padding-top: 120px;
  padding-bottom: 120px;
}
section#home {
  padding-top: 0px;
  padding-bottom: 0px;
}
section.home-intro {
  padding-bottom: 0px;
}
.home-intro .philosophie-icon {
  font-size: 144px;
  color: #64c98f;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
section.home-services {
  padding-top: 60px;
  padding-bottom: 0px;
}

/* Hero Text */
.herotext h6 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64c98f;
}
.herotext h2 {
  font-size: 65px;
  font-weight: 400;
  line-height: 75px;
}
.herotext .section-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64c98f;
}
.herotext h4 {
  font-size: 24px;
  font-weight: 600;
}
.herotext h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.herotext p {
  font-size: 18px;
  margin-bottom: 0px;
}

/* Service Cards */
.home-services .service-card {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e9ecef;
}
.home-services .service-card:last-child {
  border-bottom: none;
}
.home-services .service-icon {
  font-size: 64px;
  color: #64c98f;
  line-height: 1;
}
.home-services .service-icon-col {
  padding-right: 25px;
}
.home-services .service-card .herotext {
  max-width: 800px;
}

/* Utility Classes for Service Content */
.fw-medium {
  font-weight: 500;
}
.service-list {
  text-align: left;
  padding-left: 20px;
}
.service-list li {
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-us .herotext h2 {
  font-size: 55px;
}
.contact-us address .icon {
  float: left;
  font-size: 70px;
  padding-right: 20px;
}
.contact-us address .detail {
  padding-top: 2px;
  font-size: 22px;
  line-height: 32px;
}
.contact-us address .detail .heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64c98f;
  padding-bottom: 0px;
  margin-bottom: 4px;
}
.opening-hours {
  border-collapse: collapse;
}
.opening-hours td {
  padding: 0 8px 0 0;
  vertical-align: top;
}
.online-booking-link {
  color: #64c98f;
  text-decoration: underline;
}
.online-booking-link:hover {
  color: #4eaf77;
}
.contact-us a {
  color: #000;
}

/* Map */
.map iframe {
  border: none;
  width: 100%;
  height: 400px;
}

/* Footer */
footer {
  padding-top: 70px;
  padding-bottom: 70px;
}
footer ul {
  padding: 0px;
  margin: 0px;
}
footer ul li {
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  letter-spacing: 1px;
}
footer ul li a {
  color: #fff;
}
footer .copyright {
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
}

/* Back to Top */
.back-to-top {
  color: #000;
  font-size: 20px;
  padding-top: 12px;
  cursor: pointer;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background-color: #ccc;
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-align: center;
  z-index: 9999999;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  color: #000;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.325);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 12px 46px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 30px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary {
  background-color: #64c98f !important;
  border-color: #64c98f !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #64c98f !important;
  border-color: #64c98f !important;
}

/* Background Utilities */
.dark-grey-bg {
  background-color: #252525;
}

/* Responsive */
@media (max-width: 767.98px) {
  .home-services .service-card { padding-top: 30px; padding-bottom: 30px; }
  .home-services .service-icon { font-size: 48px; }
  .home-services .service-icon-col { padding-right: 15px; }
  .home-intro .philosophie-icon { font-size: 112px; }
}

@media (max-width: 575.98px) {
  section#home {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  section.home-services {
    padding-top: 10px !important;
    padding-bottom: 0px !important;
  }
  ul.navbar-nav {
    text-align: center;
  }
  .herotext h2 {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .herotext h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .contact-us address .detail {
    padding-top: 2px;
    font-size: 20px;
    line-height: 28px;
  }
  .contact-us address .icon {
    float: left;
    font-size: 50px;
    padding-right: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  ul.navbar-nav {
    text-align: center;
  }
  .herotext h2 {
    font-size: 45px !important;
    line-height: 55px !important;
  }
  section.home-services {
    padding-bottom: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 12px;
    padding-left: 12px;
  }
  .herotext h2 {
    font-size: 50px !important;
    line-height: 60px !important;
  }
  .herotext h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }
  section.home-services {
    padding-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 14px;
    padding-left: 14px;
  }
}
