@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --yellow: #ffea00; /* Prava drečava šlep žuta boja koja sija */
  --yellow-glow: rgba(255, 234, 0, 0.5);
  --black: #0a0a0a;
  --dark-surface: #141414;
  --white: #ffffff;
  --light-color: #b0b0b0;
  --light-bg: #1a1a1a;
  --separator: #FFFFFF00;
  --box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.6);
  --border: 0.1rem solid rgba(255, 234, 0, 0.3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background-color: var(--black);
  color: var(--white);
}

html::-webkit-scrollbar {
  width: 1.2rem;
}

html::-webkit-scrollbar-track {
  background: var(--black);
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 0.5rem;
}

section {
  padding: 6rem 10%;
}

img {
  height: auto;
  max-width: 100%;
}

.heading {
  margin-bottom: 3.5rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding-left: 1.5rem;
  border-left: 0.8rem solid var(--yellow);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.2rem 3.5rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  border-radius: 0.4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 1.5rem var(--yellow-glow);
  box-shadow: 0 0 1.5rem var(--yellow-glow);
}

.btn:hover {
  background: var(--white);
  color: var(--black);
  -webkit-transform: translateY(-0.3rem);
  transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 0 2.5rem rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 2.5rem rgba(255, 255, 255, 0.4);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(1rem);
  border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}

.header .logo img {
  width: 150px;
  margin: auto;
}

.header .navbar a {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
  margin: 0 1.2rem;
  transition: color 0.2s linear;
}

.header .navbar a:hover {
  color: var(--yellow);
}

.header .icons {
  display: flex;
}

.header .icons div {
  height: 4.8rem;
  width: 4.8rem;
  line-height: 4.8rem;
  font-size: 1.5rem;
  background: var(--light-bg);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  margin-left: 1rem;
  border-radius: 0.4rem;
  transition: all 0.2s ease;
}

.header .icons a {
  height: 4.8rem;
  width: 15rem;
  line-height: 4.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 1rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 1rem var(--yellow-glow);
  transition: all 0.2s ease;
}

.header .icons div:hover {
  background: var(--yellow);
  color: var(--black);
}

.header #menu-btn {
  display: none;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--dark-surface);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
  border-left: 1px solid rgba(255, 102, 0, 0.3);
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.85);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  cursor: pointer;
  font-size: 3.5rem;
  color: var(--white);
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-info #close-contact-info:hover {
  color: var(--yellow);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--yellow);
  cursor: pointer;
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.contact-info .info i:hover {
  background: var(--yellow);
  color: var(--black);
}

.contact-info .info h1 {
  font-size: 2rem;
  color: var(--white);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.8rem;
  background: var(--light-bg);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s ease;
}

.contact-info .share a:hover {
  background: var(--yellow);
  color: var(--black);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(10, 10, 10, 0.95)),
    color-stop(60%, rgba(10, 10, 10, 0.7)),
    to(transparent)
  );
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
}

.home .slide .content {
  width: 60rem;
  position: relative;
  z-index: 2;
  padding-left: 5%;
}

.home .slide .content h1 {
  font-size: 5.5rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.home .slide .content h1 span {
  color: var(--yellow);
}

.home .slide .content p {
  font-size: 1.6rem;
  color: var(--light-color);
  line-height: 1.8;
  padding: 1.5rem 0;
  font-weight: 400;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 6rem;
  width: 6rem;
  background: var(--dark-surface);
  border: 1px solid rgba(255, 102, 0, 0.3);
  transition: background 0.2s ease;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next:hover::after,
.home .swiper-button-prev:hover::after {
  color: var(--black);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--white);
  font-weight: bold;
}

.separator {
  width: 100%;
  height: 50px;
  background-image: 
    linear-gradient(45deg, #0a0a0a 25%, transparent 25%), 
    linear-gradient(-45deg, #0a0a0a 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #0a0a0a 75%), 
    linear-gradient(-45deg, transparent 75%, #0a0a0a 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  margin-top: -3rem;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.home .swiper-button-prev {
  right: 6rem;
}

.about {
  background: var(--black);
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
}

.about .row .video {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 102, 0, 0.3);
}

.about .row .video video {
  width: 100%;
  display: block;
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .content h1, 
.about .row .content h2 {
  font-size: 3.2rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .row .content p {
  font-size: 1.6rem;
  color: var(--light-color);
  line-height: 1.8;
  padding: 0.8rem 0;
}

.about .box-container {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(18rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--dark-surface);
  padding: 3rem 2rem;
  border-radius: 0.8rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.about .box-container .box:hover {
  transform: translateY(-0.5rem);
  border-color: var(--yellow);
}

.about .box-container .box h1 {
  font-size: 4rem;
  color: var(--yellow);
  text-transform: capitalize;
  font-weight: 800;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.6;
  padding-top: 0.8rem;
}

.services {
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 102, 0, 0.15);
  border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(28rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2.5rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--black);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.services .box-container .box:hover {
  border-color: var(--yellow);
  transform: translateY(-0.5rem);
}

.services .box-container .box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.services .box-container .box img {
  height: 6rem;
  width: 6rem;
  margin-bottom: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--yellow-glow));
}

.services .box-container .box h1 {
  font-size: 2rem;
  color: var(--white);
  text-transform: capitalize;
  padding: 1.2rem 0;
  font-weight: 700;
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.8;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(32rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 2.5rem;
}

.projects .box-container .box {
  cursor: initial;
  background: var(--dark-surface);
  border-radius: 0.8rem;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 38rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--dark-surface);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.projects .box-container .box .content .info {
  padding: 2rem;
}

.projects .box-container .box .content .info h1 {
  font-size: 2rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.6;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  height: 7.5rem;
  font-size: 2.8rem;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.projects .box-container .box .content i:hover {
  background: var(--white);
  color: var(--black);
}

.reviews {
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 102, 0, 0.15);
  border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}

.reviews .slide p {
  padding: 2rem;
  background: var(--black);
  border: var(--border);
  border-radius: 0.8rem;
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.8;
  box-shadow: var(--box-shadow);
}

.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2.5rem;
  height: 2rem;
  width: 2rem;
  background: var(--black);
  border-right: var(--border);
  border-bottom: var(--border);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.reviews .slide .user h1 {
  font-size: 2rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
}

.reviews .slide .user .stars {
  padding-top: 0.5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--box-shadow);
  min-height: 35rem;
}

.contact .row form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
  background: var(--dark-surface);
  padding: 3rem;
  border-radius: 0.8rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.contact .row form h1 {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact .row form .box {
  margin: 1rem 0;
  width: 100%;
  padding: 1.5rem 0.5rem;
  background: transparent;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  font-size: 1.6rem;
  color: var(--white);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.footer {
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 102, 0, 0.3);
  padding: 5rem 10% 2rem 10%;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2.5rem;
}

.footer .box-container .box h1 {
  font-size: 2.2rem;
  color: var(--white);
  padding: 1rem 0;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.footer .box-container .box .links {
  font-size: 1.5rem;
  display: block;
  color: var(--light-color);
  padding: 0.8rem 0;
  transition: color 0.2s ease;
}

.footer .box-container .box .links:hover {
  color: var(--yellow);
  padding-left: 0.5rem;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  padding: 0.8rem 0;
}

.footer .box-container .box p i {
  padding-right: 0.8rem;
  color: var(--yellow);
}

.footer .box-container .box .share {
  padding: 1rem 0;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.8rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  margin-right: 0.8rem;
  text-align: center;
  display: inline-block;
  transition: all 0.2s ease;
}

.footer .box-container .box .share a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.footer .box-container .box form .email {
  margin-bottom: 1rem;
  width: 100%;
  background: var(--black);
  border: var(--border);
  border-radius: 0.4rem;
  padding: 1.2rem;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: none;
}

.footer .box a {
  color: var(--light-color);
}

.footer .box a:hover {
  color: var(--yellow);
}

.credit {
  font-size: 1.6rem;
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--light-color);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
  margin-top: 4rem;
  margin-left: -10%;
  margin-right: -10%;
  margin-bottom: -5rem;
}

.credit .copyright {
  font-size: 1.2rem;
  display: flex;
  text-align: right;
  justify-content: right;
  color: var(--light-color);
}

.credit .copyright a {
  color: var(--yellow);
}

.credit span {
  color: var(--yellow);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 4rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 4rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .home .slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
    width: 90%;
    padding-left: 0;
  }
  .home .slide .content h1 {
    font-size: 3.8rem;
  }
  .home .slide::before {
    background: rgba(10, 10, 10, 0.85);
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h1,
  .about .row .content h2 {
    font-size: 2.8rem;
  }
  .home .slide .content h1 {
    font-size: 3.2rem;
  }
}