@import "https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700;800&display=swap";
@import "https://fonts.cdnfonts.com/css/adlery-pro";
@import "https://fonts.cdnfonts.com/css/horizon";
@import "https://fonts.cdnfonts.com/css/forum";
@import "https://fonts.cdnfonts.com/css/brittany-signature";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}
* body::-webkit-scrollbar {
  width: 15px;
}
* body::-webkit-scrollbar-track {
  background: #1d1c1c;
}
* body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 217, 90, 0.4235294118);
}
* body::-webkit-scrollbar-thumb {
  background: rgba(192, 128, 0, 0.3529411765);
  border-radius: 15px;
}
html {
  scroll-behavior: smooth;
}
section {
  width: 100%;
}
body {
  width: 100%;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.link:hover {
  cursor: pointer;
  color: wheat;
}
.header {
  background: #111;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 20px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header h1 {
  color: white;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding-left: clamp(40px, 6vw, 90px);
}
.header h1 span {
  color: #d4af37;
}
.hero {
  background: linear-gradient(180deg, #24242a 0%, #1d1c1c 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  justify-content: flex-start;
  width: 100%;
  padding: 50px 8%;
  box-sizing: border-box;
}
.hero-intro h3 {
  margin: 0 0 20px;
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.1;
}
.hero-services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-services li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid rgba 255 255 255 0.18;
  margin: 10px 0;
  font-size: 1.25rem;
  color: #d8d8d8;
  transition: color 0.25s ease;
}
.hero-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: #d4af37;
  border-radius: 3px;
  transition:
    height 0.25s ease,
    background-color 0.25 ease;
}
.hero-services li:hover {
  color: #ffffff;
}
.hero-services li:hover::before {
  height: 26px;
  background-color: #f0c94d;
}
.hero-image {
  width: 100%;
}
.hero-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3 ease,
    box-shadow 0.3 ease;
}
.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.paslaugos {
  background: #1d1c1c;
  padding: 100px 20px;
}
.paslaugos-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: #000;
}
.contacts {
  background: rgba(0, 0, 0, 0.844);
}
.contacts h3 {
  height: 80px;
  width: 100%;
  font-size: 3em;
  background: #000;
  color: #fff;
  text-align: center;
  padding-top: 10px;
}
.contacts section {
  height: 300px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 100px;
  margin-top: 100px;
}
.contacts section img {
  width: clamp(60px, 15vw, 200px);
  height: auto;
}
footer {
  background: rgba(0, 0, 0, 0.784);
  height: 15vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}
footer img {
  width: clamp(35px, 6vw, 60px);
  height: auto;
}

@media (max-width: 768px) {
  .header {
    font-size: 2.5rem;
    padding: 24px 16px;
  }
  .header h1 {
    padding-left: 0;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-intro h3 {
    font-size: 2.2rem;
  }
  .hero-services {
    list-style: none;
    padding: 0;
    width: fit-content;
    margin: 0 auto;
  }
  .hero-image {
    display: flex;
    justify-content: center;
  }
  .hero-image img {
    width: 100%;
    height: 420px;
    height: auto;
  }
  .contacts section {
    gap: 40px;
  }
  .contacts section img {
    width: 80px;
  }
  footer {
    height: 15vh;
  }
  footer img {
    width: 40px;
  }
}
