@font-face {
  font-family: "ff-good-pro";
  src: url("/fonts/FFGoodPro-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

main {
  margin-bottom: 150px;
}

/* Dizajni i banerit - Banner.vue */
#banner {
  height: 100vh;
  background-color: #edf0d6;
  background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      transparent 100%
    ),
    url("/imazhet/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 80px 20px 80px;
}

#banner h1 {
  font-family: "ff-good-pro";
  font-size: 6rem;
  font-weight: 700;
  color: white;
  line-height: 30px;
}

#banner img {
  max-width: 100%;
  width: 120px;
}

#butonat_e_porosive {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#butonat_e_porosive a {
  color: #edf0d6;
  background-color: #2b4616;
  padding: 1rem 2.5rem;
  border-radius: 15px;
  text-transform: uppercase;
  font-family: "GT America Trial", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.7px;
  box-shadow: 0 0 0 #2b4616;
  transition: all 0.3s ease;
}

#butonat_e_porosive a:hover {
  box-shadow: 0 0 15px #edf0d6;
  transform: translateY(-2px);
  background-color: #edf0d6;
  color: #2b4616;
}

@media screen and (max-width: 770px) {
  #banner {
    gap: 50px;
  }
  #banner {
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 100%
      ),
      url("/imazhet/banner.webp");
    background-size: cover;
  }

  #butonat_e_porosive {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 500px) {
  #banner h1 {
    font-size: 4rem;
  }

  #butonat_e_porosive a {
    font-size: 1.25rem !important;
  }
}

/* Dizajni i seksionit te mireseardhjes */
#welcome {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 170px;
  margin-bottom: 220px;
  padding: 0 80px;
}

#welcome h2,
.description_card h3 {
  width: 100%;
  display: inline-block;
  font-family: "GT America Trial", sans-serif;
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: #2b4616;
  margin-bottom: 10px;
}

#welcome span {
  width: 100%;
  display: inline-block;
  font-family: "GT America Trial", sans-serif;
  font-size: 24px;
  color: #2b4616;
  font-weight: 600;
  text-align: center;
  margin-top: -5px;
}

#welcome p,
.description_card p {
  width: 100%;
  display: inline-block;
  font-family: "GT America Trial", sans-serif;
  font-size: 24px;
  color: #2b4616;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
  margin-top: 30px;
}

#welcome img {
  max-width: 100%;
  width: 300px;
  margin-top: 100px;
}

@media screen and (max-width: 1300px) {
  #welcome {
    margin-top: 80px;
    margin-bottom: 120px;
  }

  #welcome h2,
  .description_card h3 {
    font-size: 36px;
  }

  #welcome p,
  #welcome span,
  .description_card p {
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  #welcome {
    padding: 0 20px;
  }

  #welcome h2,
  .description_card h3 {
    line-height: 40px;
  }

  #welcome span {
    margin-top: 5px;
  }
}

.description_card {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  margin-bottom: 70px;
}

.description_card img {
  width: calc(45% - 15px);
  box-shadow: 5px 5px 10px gray;
  max-height: 60vh;
  object-fit: cover;
}
.border_round_left {
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
}
.border_round_right {
  border-top-right-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}
.description_card .text_content {
  width: calc(55% - 15px);
}

#porosite img {
  order: 2;
}

#porosite .text_content {
  order: 1;
}

.text_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
}

.description_card a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2b4616;
  border: 3px solid #2b4616;
  color: #edf0d6;
  border-radius: 10px;
  font-family: "GT America Trial", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

.description_card a:hover {
  background-color: #edf0d6;
  color: #2b4616;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 104, 59, 0.3);
}

.description_card p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 1300px) {
  .description_card a {
    padding: 8px 20px;
  }

  .text_content {
    padding: 0 60px;
  }
}

@media screen and (max-width: 960px) {
  .description_card {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .description_card img {
    width: 60%;
  }

  #porosite img {
    order: 1;
  }

  #porosite .text_content {
    order: 2;
  }

  .description_card .text_content {
    width: 70%;
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  .description_card img {
    width: 100%;
    border-radius: 0 !important;
  }

  .description_card .text_content {
    width: 90%;
  }
}
