/*fonf-face*/

@font-face {
  font-family: BebasNeue;
  src: url('../font/BebasNeue-Regular.ttf');
}

@font-face {
  font-family: JosefinSans;
  src: url('../font/JosefinSans-Regular.ttf');
}

html {
  font-family: 'BabasNeue', sans-serif;
}

/*textarea*/

textarea {
  resize: vertical;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/*basic style*/

body {
  /*background-image: url('../img/patern.jpeg');*/
  /*background: linear-gradient(45deg, #115f69, #86bec2);*/
  /*background-size: cover;*/
  display: flex;
  justify-content: center;
  margin: 0;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-wrapper {
  height: 100vh;
  width: 100%;
}

.body-content {
  gap: 20px;
  width: 100%;
}

.body-text {
  height: 500px;
  width: 1000px;
  text-align: center;
  gap: 16px;
  justify-content: center;
  background: #fff;
  padding: 0 100px;
  font-size: 24px;
}

/*header style*/

.header-container {
  display: flex;
  justify-content: center;
  background: #fff;
  width: 100%;
  border-bottom: 2px solid #ccc;
}

.header-content-wrapper {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 1000px;
  padding: 10px;
}

.logo {
  width: 185px;
  height: 50px;
  background-image: url('../img/logo-1.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.logo-mobile {
  background-image: url('../img/logo-mini.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  display: none;
}

.menu-container {
  align-items: center;
  display: flex;
  gap: 4px;
}

.menu-item,
.footer-menu-item,
.our-team-text {
  font-family: sans-serif;
  text-decoration: none;
  color: #444444;
  padding: 4px 10px;
}

.menu-item:hover,
.menu-item-active {
  display: flex;
  align-content: center;
  justify-content: center;
  background: #f0eff4;
  color: #444444;
}

.menu-item:hover {
  opacity: 0.8;
}

/*parallax*/

.parallax-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 1000px;
}

.body-title,
.parallax-title {
  color: #0e3a53;
  margin: 0;
  font-size: 40px;
}

.parallax-title {
  color: #fff;
  text-shadow: -1px 0 #032f30, 0 1px #032f30, 1px 0 #032f30, 0 -1px #032f30;
}

.parallax-background-image-home {
  background-image: url('../img/background-about.jpg');
}

.parallax-background {
  min-height: 500px;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
}

.paralax-background-2 {
  background-image: url('../img/background.jpg');
}

/*button*/

.button {
  background: #032f30;
  border: 2px solid #0a7075;
  border-radius: 50px;
  color: #6ba3be;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
}

.button:hover {
  filter: brightness(0.7);
  color: #fff;
}

/*footer*/

.footer-container {
  font-size: 16px;
  width: 100%;
  border-top: 2px solid #ccc;
  display: flex;
  justify-content: center;
}

.footer-content-wrapper {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-content-menu {
  align-items: flex-end;
}

.footer-title {
  font-family: BebasNeue;
  font-size: 20px;
  padding: 6px 8px;
}

.footer-text,
.footer-menu-item {
  padding: 8px;
}

.footer-menu-item {
  text-decoration: underline;
}

.icon-whatsapp {
  text-decoration: none;
  color: #444444;
}

.icon-whatsapp > i {
  font-size: 18px;
}

.gap {
  gap: 8px;
}
/*image*/

.image-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  height: auto;
}

.image-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.img-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  padding: 20px;
  background: #fff;
  color: #000;
  font-size: 24px;
}

.reference-gallery {
  width: 100%;
}

.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  grid-template-rows: auto;
}

.gallery-photo {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 150px;
  text-decoration: none;
  overflow: hidden;
}

.gallery-photo > img {
  width: inherit;
  height: inherit;
  object-fit: fill;
  object-position: center;
}

/*form*/

.contact-form-page {
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 90vh;
}

.contact-form-container {
  display: flex;
  background-color: #031716;
  opacity: 0.85;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-height: 500px;
  width: 100%;
  max-width: 600px;
}

.contact-form-container-left-side {
  width: 40%;
  gap: 10px;
  justify-content: center;
}

.contact-form-container-right-side {
  width: 60%;
}

.contact-form-logo {
  background-image: url('../img/logo-mini.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
}

.contact-form-info {
  gap: 8px;
  color: #86bec2;
}

.contact-form-info > i {
  font-size: 24px;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.form-label,
.error-message {
  padding-left: 5px;
  display: flex;
  font-size: 16px;
  color: #6ba3be;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-sizing: border-box;
}

.error-message {
  color: red;
  height: 20px;
  font-size: 12px;
}

.about-us-content {
  align-items: flex-start;
  text-align: left;
}

.border {
  width: 100%;
  border-bottom: 2px solid #ccc;
}

/*our team*/

.our-team {
  gap: 16px;
}

.our-team-image-section {
  gap: 20px;
}

.our-team-image {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-team-nemanja {
  background-image: url('../img/team-nemanja.jpeg');
}

.our-team-lazar {
  background-image: url('../img/team-lazar.jpeg');
}

.our-team-text {
  font-size: 16px;
}

.menu-container-mobile {
  background: #fff;
  height: 100%;
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
}

.menu-mobile-hide {
  display: none !important;
}

.menu-item-mobile {
  text-decoration: none;
  color: #444444;
  width: 100%;
  padding: 24px 0;
  font-size: 24px;
  text-align: center;

}

.icon-open-menu {
  font-size: 24px;
  display: none;
}

.icon-close {
  height: 70px;
  align-self: flex-end;
  padding: 4px 10px;
  font-size: 24px;
}



/*reference*/

.reference-page {
  gap: 0;
}

.reference-page > .body-text {
  padding: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
}

.reference-page-text {
  text-align: left;
}

.reference-text {
  background: #0a7075;
  height: 200px;
  width: 100%;
}

.reference-text > div {
  width: 1000px;
  color: #cccccc;
}

.reference-wrapper,
.reference-subtitle-wrapper {
  width: 100%;
  gap: 10px;
}

.reference-subtitle {
  width: 100%;
  max-width: 200px;
  color: #0e3a53;
}

.reference-line {
  height: 2px;
  width: 100%;
  background: #86bec2;
}

.reference-content {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

.reference-content > ul,
.reference-description {
  width: calc(100% - 220px);
  text-align: left;
}

.reference-description {
  font-size: 16px;
  gap: 16px;
  align-items: flex-start;
}


.list-item {
  font-size: 14px;
  color: #222222;
}

.list-item-small-list {
  list-style: lower-alpha;
  padding: 8px 16px;
}

.list-item-bold {
  font-weight: bold;
}

iframe {
  margin-bottom: 20px;
}


/*responsive*/

@media only screen and (max-width: 1520px) {
  .page-wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 950px) and (orientation: landscape) {
  .body-text,
  .parallax-title-wrapper {
    width: auto;
  }

  .body-text {
    padding: 0 24px;
  }

  .parallax-title {
    padding: 0 16px;
  }

  .contact-form-page {
    height: auto;
    padding: 20px 0;
  }

  iframe {
    width: 800px;
    height: 530px;
  }

}

@media only screen and (max-width: 700px) {
  .body-content {
    gap: 10px;
  }

  .body-content.reference-page {
    gap: 0;
  }

  .logo-mobile {
    display: flex;
  }

  .logo {
    display: none;
  }

  .icon-open-menu {
    display: flex;
  }

  .menu-container {
    display: none;
  }

  .parallax-background {
    min-height: 200px;
    background-attachment: scroll;
  }

  .parallax-title-wrapper {
    gap: 0;
    width: auto;
  }

  .parallax-title {
    padding: 0 16px;
  }

  .parallax-title,
  .body-title {
    font-size: 24px;
  }

  .body-text {
    width: auto;
    min-height: 200px;
    height: auto;
    font-size: 16px;
    padding: 16px;
  }

  .image-section {
    overflow-x: scroll;
    overflow-y: hidden;
  }

  .img-text {
    bottom: 20px;
    left: 20px;
    padding: 8px;
    font-size: 16px;
  }

  .footer-content-wrapper {
    padding: 16px;
  }

  .footer-container {
    font-size: 14px;
  }

  .footer-title {
    font-size: 16px;
  }

  .our-team-image {
    width: 100px;
    height: 100px;
  }

  .contact-form-page {
    height: auto;
    padding: 20px 0;
  }

  .contact-form-container {
    flex-direction: column;
    max-width: 350px;
    max-height: none;
    gap: 16px;
  }

  .contact-form-container-left-side,
  .contact-form-container-right-side {
    width: 100%;
  }

  .reference-text > div {
    width: 100%;
    padding: 24px;
  }

  .reference-page > .body-text {
    text-align: left;
  }

  .reference-subtitle-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .reference-subtitle {
    max-width: unset;
  }

  .reference-content > ul {
    width: calc(100% - 24px);
  }

  .reference-description {
    width: 100%;

  }

  iframe {
    width: auto;
    height: auto;
  }
}

@media only screen and (max-width: 400px) {

  .contact-form-container {
    max-width: 250px;
  }
}

#form_error {
  background-color: #f8d7da;
  color: #721c24;
  display: none;
}

#form_success {
  background-color: #d4edda;
  color: #155724;
  display: none;
}

.form-message {
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 600px;
  text-align: center;
}
