* {
  margin: 0;
  padding: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
}
body,
html {
  overflow-x: hidden;
  background-color: #141414;
}

.background-image {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/background.webp");
  background-color: gray;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh; /*U VH JE ZATO STO NEMA DRUGOG BOLJEG NACINA, POSTOTCI NE RADE*/
  margin-bottom: 150px;
  padding-bottom: 50px;
}
.first-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* HEADER*/
header {
  display: flex;
  width: 90%;
  padding-block: 40px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: white;
  transition: all 0.5s;
  font-weight: 700;
}

.header li a:hover,
.header .menu-btn:hover {
  color: #ff0050;
}

.logo {
  width: 10%;
}
#logo-img {
  width: 50%;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  padding: 28px 20px;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: 0.2s ease-out;
  width: 30px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 10px;
}

.header .menu-icon .navicon:after {
  top: -10px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 1201px) {
  .header li {
    text-align: center;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    display: flex;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

@media (max-width: 1200px) {
  .background-image {
    background-position: center right;
    height: auto;
    margin-bottom: 50px;
  }
  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .logo {
    text-align: center;
    margin-inline: auto;
  }
  .header li a {
    text-align: center;
  }
}

/*MAIN PAGE*/
.main_page {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main_page h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.main_page h3 {
  font-size: 2.25rem;
  margin-bottom: 1em;
  color: gray;
}
.main_page h3 span {
  color: white;
  font-size: 3rem;
}
.main_page button {
  border-radius: 10px;
  font-size: 1.125rem;

  width: fit-content;
  transform: skew(-3deg);
}
.main_page a {
  text-decoration: none;
  color: black;
  display: block;

  padding: 20px 30px;
}
@media (max-width: 1200px) {
  .main_page h1 {
    font-size: 3rem;
    text-align: center;
    padding-top: 90px;
  }
  .main_page h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 50px;
    width: 300px;
    margin-inline: auto;
  }
  .main_page button {
    margin-inline: auto;
    margin-top: 130px;
  }
}
@media (max-width: 300px) {
  .main_page h1 {
    line-height: 50px;
  }
}

/*ABOUT PAGE*/
#about-page {
  padding-top: 100px;
  height: 1000px;
  background-color: lightblue;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #141414;
  justify-content: center;
  align-items: center;
}
.first2-conts {
  display: flex;
  width: 80%;
  margin-inline: auto;
}
.first2-conts .container:first-child {
  border-right: solid 5px white;
}
.second2-conts .container:first-child {
  border-right: solid 5px white;
}
.container {
  background-color: #141414;
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container h2 {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 50px;
}
.container p {
  color: rgb(199, 191, 191);
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
  width: 400px;
}
.container img {
  width: 150px;
}
.second2-conts .container:last-child img {
  padding-top: 20px;
}
.first2-conts .container {
  border-bottom: solid 5px white;
}

.second2-conts {
  display: flex;
  width: 80%;
  margin-inline: auto;
}
@media (max-width: 1200px) {
  .container {
    border-top: 3px solid #fff;
  }
  .container:last-child {
    border-bottom: 3px solid #fff;
  }
  #about-page {
    height: auto;
  }
  .first2-conts {
    flex-direction: column;
    align-items: center;
  }
  .second2-conts {
    flex-direction: column;
    align-items: center;
  }
  .second2-conts {
    flex-direction: column;
    border: none;
  }
  .first2-conts .container:first-child {
    border-right: none;
  }
  .second2-conts .container:first-child {
    border-right: none;
  }
  .first2-conts .container {
    border-bottom: none;
  }
  .container p {
    width: 320px;
    margin-bottom: 20px;
  }
}
@media (max-width: 300px) {
  .container p {
    width: 260px;
  }
  .container {
    margin-bottom: 150px;
  }
}

/* QUOTE*/
.quote {
  width: 50%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  color: #fff;
  text-align: center;
}
.quote h3 {
  font-size: 2.25rem;
  margin-bottom: 1em;
}
.quote h4 {
  font-size: 1.5rem;
  color: #808080;
}
@media (max-width: 1200px) {
  .quote {
    width: 90%;
  }
  .quote h3 {
    font-size: 2.8rem;
  }
  .quote h4 {
    font-size: 1.6rem;
  }
}

/* COMMUNITY*/
.community {
  width: 100%;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.community-dio-container {
  display: flex;
  text-align: center;
  width: 60%;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding-block: 4rem;
  border-radius: 30px;
  box-shadow: 0px 6px 16px -4px rgba(255,255,255, 0.15);
}

.community-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.community-slika{
  width: 50%;
}
.community-text h3 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 2rem;
}
.community-slika img{
  width: 40%;
}
.community-text p {
  color: #808080;
  font-size: 1rem;
  width: 60%;
}
@media (max-width: 1400px) {
  /*Moro sam na 1400 stavit jer je 1200 premalo i lose izgleda*/
  .community{
    gap: 0px;
  }
  .community-dio-container {
    flex-direction: column;
    width: 80%;
  }
  .community-text {
    width: 90%;
  }
  .community-slika img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .community {
    gap: 200px;
  }
  .community-text h3 {
    font-size: 1.75rem;
  }
  .community-text p {
    font-size: 1rem;
  }
  .community-text {
    width: 100%;
  }
}

/* FORM DIO */
.form-page {
  width: 100%;
  padding-block: 150px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-page h1 {
  margin-bottom: 30px;
  font-size: 2.25rem;
  width: 600px;
  text-align: center;
}
.form-page h3 {
  font-size: 1.5rem;
  margin-bottom: 50px;
  text-align: center;
  width: 600px;
}

.form-page input[type="file"] {
  color: transparent;
}

input::file-selector-button {
  border-radius: 5px;
  font-size: 1rem;
  width: 50%;
  margin-inline: 25%;
  padding-block: 1rem;
  border: transparent;
  cursor: pointer;
  margin-bottom: 1rem;
}

.upload-line {
  border: none !important;
}

.form-page form {
  background-color: rgb(39, 37, 37);
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  padding-top: 50px;
  border-radius: 10px;
  margin-top: 2%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.form-page form input {
  width: 400px;
  border: transparent;
  border-bottom: solid 1px gray;
  background-color: rgb(39, 37, 37);
  margin-bottom: 70px;
  padding-top: 50px;
  color: white;
  display: flex;
}
.upload-form {
  padding-top: 20px !important;
}
.form-page p {
  font-size: 1.2rem;
}
.form-page form input::placeholder {
  color: rgb(199, 194, 194);
  font-size: 1rem;
}
.form-page textarea {
  width: 400px;
  border: none;
  border-bottom: solid 1px gray;
  margin-bottom: 50px;
  height: 50px;
  background-color: rgb(39, 37, 37);
  color: rgb(199, 194, 194);
  margin-top: 40px;
  font-size: 1rem;
}
form input:focus {
  outline: none;
  color: white;
}
textarea:focus {
  outline: none;
}
textarea::placeholder {
  color: rgb(199, 194, 194);
  font-size: 1rem;
}
form button {
  border-radius: 10px;
  font-size: 1.5rem;
  width: 140px;
  height: 50px;
  margin-bottom: 50px;
  border: transparent;
  cursor: pointer;
}
input .upload-form {
  width: 100%;
  text-align: center;
  margin-left: 10rem;
  background-color: red;
}
@media (max-width: 1400px) {
  .form-page {
    padding-top: 200px;
  }
  .form-page h1 {
    font-size: 2rem;
    margin-bottom: 60px;
  }
  .form-page h3 {
    font-size: 1.5rem;
    width: 300px;
    margin-bottom: 30px;
  }
  .form-page form {
    width: 100%;
    background-color: #141414;
  }
  .form-page form input {
    width: 250px;
    background-color: #141414;
  }
  .form-page textarea {
    width: 250px;
    background-color: #141414;
    height: 60px;
  }
}

/* FOOTER */
.footer {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  width: 100%;
  background-color: rgb(39, 37, 37);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding-block: 20px;
}
.content {
  display: flex;
  width: 80%;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
  padding-block: 60px;
}
.footer p:hover {
  cursor: pointer;
  text-decoration: underline;
}
.logo img {
  width: 150px;
}
.summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 150px;
}
.products-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 150px;
}

.social-links {
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
  text-align: center;
}
.socials {
  display: flex;
  flex-direction: column;
}
.first2 {
  margin-bottom: 20px;
}
.social-links .fa {
  font-size: 2rem;
  color: white;
  margin-inline: 40px;
}
.footer a {
  text-decoration: none;
  color: white;
}
.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .logo {
    display: none;
  }
  .content {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: center;
  }
  .footer {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .join {
    width: 30%;
  }
  .summary {
    width: 30%;
  }
  .products-summary {
    width: 30%;
  }
  .join h3 {
    display: none;
  }
  .first2 {
    margin: 0;
  }
  .social-links .fa {
    margin-bottom: 8px;
  }
}

