/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#e67e22
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* position: relative; */
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  /* Only works if there is nothing absolutely positioned in relation to body */
  /* overflow-x: hidden; */
  /* background-color: #000000; */
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* max-width: 120rem; */
  padding: 0 10px;
  margin: 0 auto;
}
/* style-5.css
 .container {
  max-width: 95%;
  margin: auto;
} */
.grid-footer {
  display: grid;
  width: 80%;
  margin: 0 auto;
  gap: 1rem;
}
.grid {
  display: grid;
  width: 100%;
  /* column-gap: 2.4rem; */
  /* row-gap: 2.6rem; */
}
.grid > div {
  border: 0px solid #ccc;
  /* padding-bottom: 20px; */
}
.grid-footer-social > div {
  border: 0px solid #ccc;
  padding-bottom: 0px;
}
.grid-footer-social {
  display: grid;
  max-width: 25%;
  margin: 0 auto;
  column-gap: 2.4rem;
  row-gap: 9.6rem;
  /* background-color: #e1b453; */
}

/* to evgala giati epireaze to logo sto footer
.grid > div img {
  max-width: 100%;
  height: auto;
  display: block;
   Ensure images don't break grid layout 
} */

.full-width {
  grid-column: span 2;
}
.grid-blog {
  display: grid;
  column-gap: 2rem;
  row-gap: 4rem;
}
/**/
.grid:last-child {
  margin-bottom: 0;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid--sidebar-right-cols-blog {
  grid-template-columns: repeat(1, 1fr);
}

.grid--1-cols {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid--4-cols,
.grid--4-cols-footer-social {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

/* Κάθε child div */
.grid--5-cols > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ή center αν θες να κεντραριστεί */
  height: 100%;
}

.grid--6-cols {
  grid-template-columns: repeat(6, 1fr);
}
.grid--center-v {
  align-items: center;
}
.heading-hot-therapies {
  font-style: normal;
  font-weight: 300;
  color: #fff;
}
.heading-hot-therapies {
  font-size: 3rem;
  line-height: 1.2;
}

.heading-primary,
.heading-secondary,
.heading-tertiary,
.heading-blog-text {
  font-style: normal;
  font-weight: 600;
  color: #4e4e4e;
}

.heading-primary {
  font-size: 6.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.heading-blog-text {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.heading-cart {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.subheading {
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 100;
  /* color: #e67e22; */
  /* text-transform: uppercase; */
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}
.text-page-link {
  text-decoration: none;
  padding: 0.2rem;
  background-color: #e1b453;
  margin-top: 1rem;
}
.text-page-link:link,
.text-page-link:visited {
  display: inline-block;
  color: #000;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s;
}
.text-page-link:hover,
.text-page-link:active {
  /* color: #ef7f1a; */
  /* text-decoration: underline; */
  background-color: #edc671;
}
.btn-small,
.btn-small:link,
.btn-small:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 100;
  padding: 1.2rem 2.6rem;
  /* border-radius: 9px; */
  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--intro:link,
.btn--intro:visited {
  background-color: #222;
  border-radius: 10px;
  color: #000;
}

.btn--intro:hover,
.btn--intro:active {
  background-color: #333;
  color: #000;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}
.text-blog-link {
  text-decoration: none;
  padding: 0.4rem;
  background-color: antiquewhite;
}
.text-blog-link:link,
.text-blog-link:visited {
  display: inline-block;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.text-blog-link:hover,
.text-blog-link:active {
  /* color: #ef7f1a; */
  /* text-decoration: underline; */
  background-color: #f2dec1;
}
.link:link,
.link:visited {
  display: inline-block;
  color: #ef7f1a;
  font-weight: 100;
  text-decoration: none;
  /* border-bottom: 1px solid currentColor; */
  /* padding-bottom: 2px; */
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #ef7f1a;
  /* font-weight: 100; */
  /* border-bottom: 1px solid transparent; */
}
.link-white:link,
.link-white:visited {
  display: inline-block;
  color: #ffffff;
  font-weight: 300;
  text-decoration: none;
  /* border-bottom: 1px solid currentColor; */
  /* padding-bottom: 2px; */
  transition: all 0.3s;
}

.link-white:hover,
.link-white:active {
  color: #e0e0e0;
  /* font-weight: 100; */
  /* border-bottom: 1px solid transparent; */
}
.btn-link:link,
.btn-link:visited {
  text-decoration: none;
  color: #333;
}
.btn-link:hover,
.btn-link:active {
  text-decoration: none;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #e67e22;
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
.margin-bottom-sm {
  margin-bottom: 1.8rem !important;
}
.margin-top-md {
  margin-top: 4.8rem !important;
}
.margin-top-sm {
  margin-top: 1.8rem !important;
}
.center-text {
  text-align: center !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.left-text {
  text-align: left;
}
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
strong {
  font-weight: 500;
}

/* Youtube START */
.videoContainerPlayer {
  width: 100%;
  height: 100%;
  min-width: 600px;
  min-height: 400px;
  border: 0;
}

@media (max-width: 768px) {
  .videoContainerPlayer {
    width: 100%;
    height: auto;
    min-width: 100%;
  }
}
/* Youtube END */
.spaceTwoButtons .btn:first-of-type {
  margin-right: 10px;
}
.btnCenter {
  /* margin: 0 auto; */

  width: fit-content;
}
