/* Legacy / shared old selectors kept for safe transition.
   Later we can remove only after checking no view uses them. */
/****************************************************/
/* NavBar START style-5.css ***********************/
/**************************************************/

/* Import Font Awesome for specific icons */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.woff2")
    format("woff2");
}

.fa {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-angle-left:before {
  content: "\f104"; /* Unicode for the angle-left icon */
}

.fa-angle-down:before {
  content: "\f107"; /* Unicode for the angle-down icon */
}

.rating__icon {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.rating__icon--star:before {
  content: "\f005"; /* Unicode for the star icon */
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.v-center {
  align-items: center;
}

.menuListStyleNone {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
#header {
  position: relative;
  height: 130px;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: top 0.3s;
}
#headerMenu {
  /* position: fixed; */
  /* top: 0; */
  width: 100%;
  background-color: #fff;
  /* background-color: #333; */
  /* color: white; */
  /* padding: 1em; */
  /* padding-bottom: 10x; */
  height: 130px; /* Adjust this height as needed */
  box-sizing: border-box;

  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

#headerMenu.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#headerMenu.visible {
  position: fixed;

  opacity: 1;
  transform: translateY(0);
}
.green-line {
  transition: margin-top 0.5s ease-in-out;
}

.green-line.shifted {
  margin-top: 130px; /* Adjust this value to match the header's height */
}
/* header */
.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  /* padding: 15px; */
  padding-left: 60px;
  background-color: #1f1f1f;
}
.header .item-left {
  flex: 0 0 14%;
}
.logo_header {
  display: block;
  width: auto; /* Set the specific width for the logo_header image */
  height: 180px; /* Ensure the height adjusts automatically */
}
.header .logo a {
  width: 100%;
  margin: 0 auto;
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
.header .item-center {
  flex: 0 0 70%;
}
.header .item-right {
  flex: 0 0 12%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #b1f1c4;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.green-line {
  width: 100%;
  height: 2px; /* άλλαξέ το αν το θες πιο έντονο */
  background-image: repeating-linear-gradient(
    to right,
    #7fcfa1 0%,
    #95e3b4 8%,
    #95e3b4 18%,
    #b1f1c4 27%,
    #d9fbe6 35%,
    #f2fff8 40%,
    #d9fbe6 50%,
    #b1f1c4 58%,
    #95e3b4 67%,
    #7fcfa1 77%,
    #8ad9aa 83%,
    #b1f1c4 88%,
    #c9f7da 93%,
    #7fcfa1 100%
  );
}

.titleGoldSmall {
  margin-top: 28px;
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
  color: #5b946c;
  font-size: 4rem;
  font-weight: 600;
  padding: 4px;
}
.titleGold {
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
  font-size: 6.6rem;
  font-weight: 600;
  padding: 4px;
}

.titleBoldInText {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.7;
  margin: 10px 0;
}

.custom-paragraph {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 10px 0;
  padding: 30px;
  /* width: 70%; */
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}
.item-right-phone {
  color: #b1f1c4;
}
/*responsive*/

/****************************************************/
/* NavBar END style-5.css *************************/

/*Page*/
.page-logo {
  display: flex;
  justify-content: center; /* οριζόντια */
  align-items: center; /* κάθετα */
}

.page-logo img {
  max-height: 290px;
  width: auto;
  border-radius: 1.25rem;
}
.menu-card__date {
  font-weight: 400;
  font-size: 0.9em;
  opacity: 0.75;
}
.page-text-link:link,
.page-text-link:visited {
  text-decoration: none;
  font-weight: 700;
  color: #4b905f;
  transition: all 0.3s;
}
.page-text-link:hover,
.page-text-link:active {
  text-decoration: underline;
}
