* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* header + hero section */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(
    90deg,
    rgba(25, 25, 25, 0.96),
    rgba(12, 12, 12, 0.96)
  );
  height: 8.2rem;
  border-bottom: 1px solid #fff;
  padding: 0 12rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 1000;
}

.nav-img {
  height: 5.2rem;
  border-radius: 6px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  transition: transform 0.25s ease, opacity 0.25s ease;
  padding-top: env(safe-area-inset-top, 12px);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 4.8rem;
  font-size: 2.4rem;
}

.nav__link:link,
.nav__link:visited {
  color: white;
  font-weight: 300;
  background-color: #f58634;
  padding: 0.4rem 1.4rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav__link:active,
.nav__link:hover {
  box-shadow: inset 0 0 0 3px #ddd;
  opacity: 0.98;
  background-color: transparent;
}

.nav__item a:link,
.nav__item a:visited {
  color: white;
  font-weight: 300;
  transition: all 0.3s;
  display: inline-block;
  padding-bottom: 0.6rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #f58634, #ffd27a);
  border-radius: 3px;
  transition: width 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.nav__item a:hover::after,
.nav__item a:focus::after {
  width: 100%;
}

.nav__item a:hover,
.nav__item a:focus {
  transform: translateY(-1px);
  color: #fff;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* sticky navigation */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(25, 25, 25, 0.805),
    rgba(12, 12, 12, 0.805)
  );
  box-shadow: 0 1.2rem 3.2rem rgba(255, 255, 255, 0.1);
  z-index: 999;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0.5px solid #ffffff8f;
  backdrop-filter: blur(10px);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* hero section */
.section-hero {
  background: url(lowImgs/bg.webp);
  height: calc(100vh - 8.2rem);
  background-size: cover;
  position: relative;
}

.section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__title {
  color: #eeeeee;
  text-transform: uppercase;
  font-size: 12.8rem;
  line-height: 0.9;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.66);
  letter-spacing: 2px;
  line-height: 0.88;
}

.hero__title::after {
  content: "";
  display: block;
  width: 12rem;
  height: 6px;
  margin-top: 1.6rem;
  background: linear-gradient(90deg, #f58634, #ffd27a);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(245, 134, 52, 0.18);
}

.hero__subtitle {
  color: #daa520;
  font-size: 3.6rem;
  font-weight: 200;
  margin-bottom: 3.6rem;
  background: linear-gradient(90deg, #ffd27a, #f58634);
  background-clip: text;
  color: transparent;
  font-weight: 300;
  margin-bottom: 3.6rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero__button:link,
.hero__button:visited {
  background-color: #f58634;
  color: #fff;
  padding: 0.8rem 2.4rem;
  font-size: 2rem;
  font-weight: 300;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(245, 134, 52, 0.14),
    inset 0 -2px 8px rgba(255, 255, 255, 0.03);
  display: inline-block;
  transition: all 0.3s;
  margin-right: 1.6rem;
}

.hero__button:hover,
.hero__button:active {
  box-shadow: inset 0 0 0 3px #ddd;
  opacity: 0.98;
  background-color: transparent;
}

.hero__secbutton:link,
.hero__secbutton:visited {
  color: #fa8b3c;
  background-color: #e2e2e2;
  padding: 0.8rem 2.4rem;
  border-radius: 6px;
  font-size: 2rem;
  transition: all 0.3s;
}

.hero__secbutton:active,
.hero__secbutton:hover {
  background-color: transparent;
  box-shadow: inset 0 0 0 3px #f58634;
  color: #fff;
}

.box {
  position: absolute;
  top: 50vh;
  transform: translateY(-70%);
  left: 5.2rem;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 10px;
  padding: 2.4rem 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  transform: translateY(-60%);
}

/* section about us */

.section-about {
  background: url(lowImgs/aboutbg.webp);
  background-size: cover;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6.4rem 0;
  gap: 8rem;
  max-width: 160rem;
  margin: 0 auto;
}

.about_img {
  width: 100%;
  max-width: 50rem;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.about_text_box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: left;
  max-width: 56rem;
  padding: 0 4rem;
  justify-content: center;
  border-right: 2px solid #f58634;
}

.about__title {
  position: relative;
  padding-bottom: 1.2rem;
  color: #ddd;
  font-size: 3.8rem;
}
.about__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8rem;
  height: 6px;
  background: linear-gradient(90deg, #f58634, #ffd27a);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(245, 134, 52, 0.12);
}

.about__text {
  font-size: 2rem;
  color: #ccc;
}

.about_logo {
  height: 4.2rem;
  margin-top: 2.4rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

/* section products */

.section-products {
  background: linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.2rem 0 6.4rem 0;
}

.products {
  max-width: 110rem;
  margin: 0 auto;
  padding: 3.2rem 0;
}

.products_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem;
}

.product_img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.products__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 8px 30px rgba(2, 2, 2, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.1);
}

.product_textbox {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card_header {
  font-size: 1.8rem;
  color: #d7d7d7;
}

.card_para {
  font-size: 1.6rem;
  color: #d8d8d8;
}

.card_list {
  list-style: square;
  padding-left: 2.4rem;
  color: #d8d8d8;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card_btn:link,
.card_btn:visited {
  margin-top: 2.4rem;
  background: linear-gradient(90deg, #ff6a00, #ff8a33);
  padding: 0.8rem 1.6rem;
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.card_btn:active,
.card_btn:hover {
  background: none;
  box-shadow: inset 0 0 0 2px #ff6a00;
  color: #fff;
}

.products_header {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  margin-top: 3.2rem;
}

/* section services */

.section-services {
  background: #0d0d0d;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
  max-width: 110rem;
  margin: 0 auto;
  text-align: center;
}

.services__title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.services__subtitle {
  color: #b0b0b0;
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.services__grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.service {
  flex: 1 1 30%;
  background: #141414;
  padding: 3rem 2rem 4rem;
  border-radius: 12px;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 106, 0, 0.15);
  border-color: rgba(255, 106, 0, 0.3);
}

.service__icon {
  width: 6.6rem;
  height: 6.6rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #ff6a00, #ff8a33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__icon img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1);
}

.service__title {
  color: #f1f1f1;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.service__desc {
  color: #bdbdbd;
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 30rem;
  margin: 0 auto;
}

/* section accordion */
.section-faq {
  background-color: #f7f8fa;
  padding: 9rem 2rem;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 95rem;
  width: 100%;
}

.faq-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 6rem;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.faq-item.active {
  border-top: 3px solid #ff8b3385;
  box-shadow: 0 4px 14px rgba(137, 2, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  padding: 2.5rem 3rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-number {
  font-weight: 700;
  color: #9ca3af;
  flex-shrink: 0;
  width: 3.5rem;
}

.faq-text {
  flex: 1;
  transition: color 0.3s ease;
}

.faq-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: #ff8b3385;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f9fafb;
  color: #374151;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 3rem;
}

.faq-answer p {
  line-height: 1.6;
  font-size: 1.6rem;
}

.faq-answer ul {
  margin: 2rem 0;
  line-height: 1.6;
  font-size: 1.6rem;
}

.faq-answer li {
  margin: 0.3rem 0;
}

.faq-item.active .faq-number {
  color: #ff8b3385;
}

.faq-item.active .faq-text {
  color: #ff8b33b0;
}

.faq-item.active .faq-answer {
  max-height: 61rem;
  padding: 1rem 3rem 1.5rem;
}

.faq-answer-content {
  font-size: 1.6rem;
  line-height: 1.6;
}

.faq-section {
  margin: 1.5rem 0;
}

.faq-section strong {
  margin-bottom: 0.5rem;
}

.faq-answer ul {
  margin: 0 0 0 2rem;
  padding: 0;
}

.faq-answer .note {
  margin-top: 0.8rem;
  font-style: italic;
  opacity: 0.9;
}

/* section contact */
.section-contact {
  background: linear-gradient(135deg, #fd7717bc, #ff8b3385);
  padding: 8rem 2rem;
}

.container {
  max-width: 110rem;
  margin: 0 auto;
}

.contact {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  background: #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* FORM STRANA */
.contact__form {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__title {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
}

.contact__subtitle {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 3rem;
}

.form__group {
  margin-bottom: 2rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1.5rem;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: #ff7b1a;
  box-shadow: 0 0 0 3px rgba(255, 123, 26, 0.15);
  outline: none;
}

.btn-submit {
  margin-top: 1rem;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(90deg, #ff6a00, #ff8a33);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

/* MAPA STRANA */
.contact__map {
  flex: 1;
  min-height: 40rem;
  position: relative;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* section footer */
.footer {
  background: #0a0a0a;
  color: #d6d6d6;
  padding: 6rem 2rem 2rem;
  font-size: 1.5rem;
  line-height: 1.7;
}

.footer__container {
  max-width: 110rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 3rem;
}

.footer__brand {
  max-width: 38rem;
}

.footer__logo {
  width: 14rem;
  margin-bottom: 1.5rem;
}

.footer__text {
  color: #a8a8a8;
  font-size: 1.8rem;
}

.footer__heading {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer__list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #b8b8b8;
}

.footer__list a,
.footer__list a:link,
.footer__list a:visited {
  color: #b8b8b8;
  text-decoration: none;
}

.footer_contact_icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #ff8b33;
}

.footer__address-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #b8b8b8;
  margin-bottom: 1.2rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  color: #888;
  font-size: 1.4rem;
}

.footer__workhours {
  gap: 0;
}

.workhours__heading {
  margin-top: 2.8rem;
}

.section--hidden {
  opacity: 0;
  transform: translate(8rem);
}
