/*
accents: #0e2442
gray: #c0c0c0

*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  font-size: 14pt;
  overflow-x: hidden;
}

h1 {
  font-weight: 300;
}

h2 {
  color: #0e2442;
  font-weight: 300;
  letter-spacing: 4px;
  text-decoration: none;
  text-decoration-color: #0e2442;
  font-size: 28pt;
  text-align: center;
}

h3 {
  text-align: center;
}

section {
  padding-top: 120px;
}

.heading-wrapper {
  background-color: #0e2442;
  color: white;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  padding: 10px;
  position: relative;
  height: 60px;
  box-sizing: border-box;
}

.cta-container a {
  text-decoration: none;
  border: 2px solid #0e2442;
  border-left: none;
  padding-right: 5px;
  color: #0e2442;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.cta-container:hover a {
  padding-right: 20px;
  background-color: #0e2442;
  color: white;
}

.cta-container:hover .cta-icon-container {
  background-color: #0e2442;
  color: white;
  border-color: white;
}

.cta-icon-container {
  background-color: white;
  width: 75px;
  height: 75px;
  font-size: 20pt;
  border: 5px solid #0e2442;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.cta-text-container {
  margin-left: 90px;
  width: 180px;
  height: 60px;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10pt;
}

.cta-container:hover .cta-text-container {
  margin-left: 100px;
}

.heading-img-container {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
}

#uvod {
  background-image: url("../images/rectangles.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 3 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

#uvod article {
  margin: 10px;
  padding: 20px;
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  font-size: 16pt;
}

@media screen and (max-width: 1023px) {
  #uvod article {
    font-size: 10pt;
  }
}

.why-us {
  background-image: url("../images/dark-cube-small.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 600px;
}

.why-us article {
  background-color: #0e2442;
  color: white;
  width: 300px;
  padding: 20px 10px;
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-us ul {
  list-style-type: none;
}

.chevrons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.chevrons-circle {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.chevrons-circle:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 415px) {
  .why-us article {
    width: 200px;
  }
}

@media screen and (min-width: 416px) {
  .why-us article {
    width: 250px;
  }
}

@media screen and (max-width: 1023px) {
  .why-us {
    min-height: 300px;
  }
  .why-us article {
    font-size: 2.3vw;
  }
}

.why-us ul {
  padding: 0px;
  margin: 0px;
}

.why-us li {
  margin: 20px 20px;
}

#prednosti {
  background: rgb(247, 247, 247);
  background: linear-gradient(
    180deg,
    rgba(247, 247, 247, 1) 0%,
    rgba(192, 192, 192, 1) 100%
  );
}

#prednosti ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#prednosti li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  min-width: 300px;
  aspect-ratio: 1;
  width: 20%;
  margin: 10px;
  background: rgb(14, 36, 66);
  background: linear-gradient(
    180deg,
    rgba(14, 36, 66, 1) 0%,
    rgba(8, 27, 54, 1) 100%
  );
  color: white;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #prednosti li {
    min-width: 150px;
    font-size: 6pt;
    margin: 2px;
  }
}

#detalji .col-6 {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#detalji .col-6:nth-of-type(1) {
  padding: 40px 0px 40px 40px;
  box-sizing: border-box;
}

#detalji article {
  background-color: #0e2442;
  color: white;
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.5);
}

#detalji ul {
  list-style: none;
}

#detalji li {
  margin-top: 10px;
}

#galerija {
  background-color: #0e2442;
  padding-bottom: 80px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
}

.image-container {
  width: 50%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#galerija img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 1024px) {
  .image-container {
    width: 33.33%;
  }
}

@media screen and (min-width: 1024px) {
  .image-container {
    width: 33.33%;
  }
}

#kontakt .col-6 {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#kontakt .col-6.underlayed {
  background-image: url("../images/kontakt-bg.png");
  background-size: contain;
}

.col-6.underlayed article {
  width: 310px;
  padding: 10px 0px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.col-6.underlayed h3 {
  font-weight: 300;
  color: #0e2442;
}

.form-container {
  display: flex;
  justify-content: center;
}

#kontakt form {
  background-color: #0e2442;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-width: 300px;
  width: 300px;
  box-sizing: border-box;
  box-shadow: 0px 10px 20px black;
}

#kontakt input,
#kontakt textarea {
  background-color: #0e2442;
  color: white;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
  text-indent: 10px;
}

#kontakt input,
#kontakt textarea {
  background-color: #0e2442;
  color: white;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
  text-indent: 10px;
  transition: all ease-in-out 0.3s;
}

#kontakt input {
  height: 50px;
}

#kontakt input:focus {
  height: 75px;
}

#kontakt textarea {
  height: 100px;
}
#kontakt textarea:focus {
  height: 150px;
}

#kontakt button {
  margin: 20px;
  padding: 10px;
  font-family: "Montserrat", serif;
  letter-spacing: 4px;
  font-size: 14pt;
  background-color: white;
  color: #0e2442;
  border: none;
  border-radius: 0px;
  outline: none;
  transition: all ease-in-out 0.3s;
}

#kontakt button:hover {
  background-color: #0e2442;
  color: white;
  letter-spacing: 6px;
  box-shadow: 0px 0px 10px black;
}

footer {
  width: 100%;
  background-color: #0e2442;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12pt;
  color: white;
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: 100px;
}

footer ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer li {
  margin-top: 10px;
  margin-left: 10px;
}

footer a {
  text-decoration: none;
  color: white;
  transition: all ease-in-out 0.3s;
}

footer a:hover {
  letter-spacing: 3px;
}

@media screen and (min-width: 1024px) {
  .heading-wrapper {
    width: 50%;
  }
  #kontakt form {
    width: 500px;
  }
}
