@import "navigation.css";
@import "scroll_to_top.css";
@import "slider.css";
@import "results.css";
@import "about_me.css";
@import "footer.css";

@font-face {
  font-family: "naslovi_podnaslovi_TheSeasonsBold";
  src: url("/fonts/fonnts.com-The-Seasons-Bold.otf");
}
@font-face {
  font-family: "naslovi_podnaslovi_TheSeasonsLight";
  src: url("/fonts/fonnts.com-The-Seasons-Light.otf");
}
@font-face {
  font-family: "pisani_RomateHood";
  src: url("/fonts/RomateHood-p73Ed.otf");
}
@font-face {
  font-family: "mali_tekstovi_CormorantGaramond";
  src: url("/fonts/CormorantGaramond-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #faf9f8;
}
/*
==================================
annimations 
==================================
*/
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}
.hidden1 {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.blur {
  filter: blur(5px);
}
/* MOBILE FIRST  */
.page_wrapper {
  max-width: 375px;
  margin: 0 auto;
}

section.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

section.header .profile_wrapper {
  position: relative;
  max-width: 250px;
  display: block;
  margin: 50px auto;
}

section.header video.profile {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

section.header .profile_wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #F4EADE;
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}

section.header .text {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 300px;
  transition-delay: 0.2s;
}

section.header .text p.header_txt {
  margin: 0 auto;
  text-align: center;
  letter-spacing: 2px;
  font-family: naslovi_podnaslovi_TheSeasonsBold;
  font-size: 30pt;
}
section.header .text p.header_txt > span {
  font-size: 16pt;
  font-family: naslovi_podnaslovi_TheSeasonsBold;
}

section.header .text p.description_txt {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 16pt;
  letter-spacing: 1px;
  font-family: CormorantGaramond;
}

section.header .text .contact_me {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section.header .text .contact_me img {
  width: 40px;
  height: 40px;
}

section.header .text .contact_me,
section.header .text .contact_me p {
  margin: 5px;
  font-size: 16pt;
  text-decoration: none;
  color: black;
  font-family: CormorantGaramond;
}

section.header .text .instagram_highlights {
  position: relative;
  right: -50%;
  top: 50px;
  transform: translateX(-50%);

}
section.header .text .instagram_highlights img.point_arrow {
  max-width: 80px;
  rotate: 65deg;
  position: absolute;
  top: -50px;
  left: -35px;
}
section.header .text .instagram_highlights .highlights {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.header .text .instagram_highlights .highlights a {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: black;
  font-family: CormorantGaramond;
}
section.header .text .instagram_highlights .highlights a div {
  padding: 30px;
  margin: 10px;
  border-radius: 50px;
  border: 1px solid black;
  position: relative;
  z-index: 3;
}
section.header .text .instagram_highlights .highlights a div::after {
  content: "";
  background-color: #dbdee200;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  z-index: -1;
  padding: 33px;
}
section.header .text .instagram_highlights .highlights a:nth-child(1) > div {
  background-color: #d6ccc2;
}
section.header .text .instagram_highlights .highlights a:nth-child(2) > div {
  background-color: #f5ebe1;
}
section.header .text .instagram_highlights .highlights a:nth-child(3) > div {
  background-color: #e3d5ca;
}
section.header .text .instagram_highlights .highlights a:nth-child(4) > div {
  background-color: #d5bfb1;
}
section.header .text .instagram_highlights p.highlight_desc{
  padding: 10px;
  text-align: center;
  font-family: CormorantGaramond;
  font-weight: bold;
}

/* Veći ekran (npr. tablet) */
@media (min-width: 768px) {
  .page_wrapper {
    max-width: 750px;
  }

  section.header {
    max-height: 150vh;
  }
  section.header .profile_wrapper {
    max-width: 300px;
  }
  section.header .text p.header_txt {
    font-size: 25pt;
  }
  section.header .text p.header_txt span {
    font-size: 20pt;
  }
  section.header .text .instagram_highlights {
  position: relative;
  right: -50%;
  top: 20px;
  transform: translateX(-50%);

}
section.header .text .instagram_highlights img.point_arrow {
  max-width: 50px;
  rotate: 65deg;
  position: absolute;
  top: -20px;
  left: -20px;
}
}

/* Još veći ekran (npr. desktop) */
@media (min-width: 1200px) {
  .page_wrapper {
    max-width: 1200px;
  }
  section.header {
    max-height: 100vh;
  }
  section.header .profile_wrapper {
    max-width: 350px;
  }

  section.header .proffile_wrapper::after {
    top: 50px;
    left: -50px;
  }

  section.header .text {
    max-width: 500px;
  }

  section.header .text p.header_txt {
    letter-spacing: 5px;
    font-size: 40pt;
  }
  section.header .text p.header_txt > span {
    font-size: 25pt;
  }

  section.header .text p.description_txt {
    font-size: 17pt;
  }
  section.header .text .instagram_highlights {
  position: relative;
  left: 0%;
  top: 40px;
  transform: translateX(0%);

}
section.header .text .instagram_highlights img.point_arrow {
  max-width: 80px;
  rotate: 65deg;
  transform: scaleY(-1);
  position: absolute;
  top: -70px;
  left: 57%;
}
}
