/*-------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 4px solid #fff;
}

::-webkit-scrollbar-button {
  display: none;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
  font-family: Roboto-Regular;
  src: url("https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf");
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
li {
  src: url("https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf");
  font-family: Roboto-Regular;
  color: var(--holzhof-color-grey);
}
p,
a,
form {
  src: url("https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf");
  font-family: Roboto-Regular;
  color: var(--holzhof-color-grey);
}
form {
  src: url("https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf");
  font-family: Roboto-Regular;
}

/*--------------------------------------------------------------
# Colori 
--------------------------------------------------------------*/

:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

  /*UNICI STILI PER IL TESTO */
  --holzhof-font-family-roboto: Roboto-Regular;
  --holzhof-font-style-normal: normal;
  --holzhof-font-weight-normal: normal;
  --holzhof-font-weight-bold: bold;
  --holzhof-font-size-14: 14px;
  --holzhof-font-size-16: 16px;
  --holzhof-font-size-18: 18px;
  --holzhof-font-size-22: 22px;
  --holzhof-font-size-24: 24px;
  --holzhof-font-size-26: 26px;
  --holzhof-font-size-32: 32px;
  --holzhof-font-size-38: 38px;
  --holzhof-font-size-50: 50px;
  --holzhof-character-spacing-0: 0px;
  --holzhof-line-spacing-19: 19px;
  --holzhof-line-spacing-26: 26px;
  --holzhof-line-spacing-28: 28px;
  --holzhof-line-spacing-30: 30px;
  --holzhof-line-spacing-37: 37px;
  --holzhof-line-spacing-38: 38px;
  --holzhof-line-spacing-50: 50px;
  --holzhof-line-spacing-52: 52px;
  --holzhof-line-spacing-58: 58px;
  --holzhof-text-transform-uppercase: uppercase;

  /*UNICI COLORI DA UTLIZZARE NEL CSS*/
  --holzhof-color-a3a3a3: #a3a3a3;
  --holzhof-color-light-grey: #f2f2f2;
  --holzhof-color-dddddd: #dddddd;
  --holzhof-color-green: #95bb1f;
  --holzhof-color-white: #ffffff;
  --holzhof-color-grey: #575756;

  /*svg della freccia di holzhof*/
  --freccia-holzhof: url("../svg/freccia-holzhof-grigio-chiaro.svg");

  body {
    min-height: 100vh;
  }

  p {
    text-align: justify;
  }
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {
  --nav-color: #ffffff;
  --nav-hover-color: var(
    --holzhof-color-green
  ); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(
    --holzhof-color-green
  ); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
CSS COMUNI IN TUTTO IL SITO
---------------------------------------------------------------*/

.sfondo-grigio {
  background-color: var(--holzhof-color-light-grey);
  width: 100%;
  height: max-content;
  padding: 5rem 16% 5rem 16%;
  margin-bottom: 5rem;

  h1 {
    margin-top: 0 !important;
  }
}

.markdown {
  h1 {
    margin-top: 7vh;
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-bold);
    font-size: var(--holzhof-font-size-50);
    line-height: var(--holzhof-line-spacing-58);
    color: var(--holzhof-color-grey);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    opacity: 1;
  }

  em {
    font-style: var(--holzhof-font-style-normal);
    color: var(--holzhof-color-green);
    text-decoration: none;
  }

  h2 {
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-32);
    line-height: var(--holzhof-line-spacing-38);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
  }

  h3 {
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-26);
    line-height: var(--holzhof-line-spacing-30);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
  }

  p {
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
  }

  strong {
    font-style: var(--holzhof-font-style-normal);
    font-weight: var(--holzhof-font-weight-bold);
  }

  ul {
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;

    li {
      font-family: var(--holzhof-font-family-roboto);
      font-style: var(--holzhof-font-style-normal);
      letter-spacing: var(--holzhof-character-spacing-0);
      font-weight: var(--holzhof-font-weight-normal);
      font-size: var(--holzhof-font-size-16);
      line-height: var(--holzhof-line-spacing-28);
      color: var(--holzhof-color-grey);
      text-transform: none;
      text-decoration: none;
      list-style: none;
    }
    li::before {
      content: "";
      display: inline-block;
      height: 1rem;
      width: 1.5rem;
      background-image: url("../svg/fiore-pieno.svg");
      background-size: 0.7rem;
      background-repeat: no-repeat;
      background-position-y: bottom;
    }
    li h1, li h2, li h3, li h4, li h5, li h6 {
      display: inline;
    }
  }

  a {
    color: var(--holzhof-color-green);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    height: max-content;
    width: max-content;

    &:hover {
      color: var(--holzhof-color-green);
    }
  }
}

.bg-light-grey {
  padding: 0 0 7vh 0;
  position: relative;
  background: var(--holzhof-color-light-grey);

  p {
    text-align: center !important;
  }
}

.container-content {
  width: 100%;
  height: max-content;
  padding-left: 16%;
  padding-right: 16%;
}

.wide-container-content {
  width: 100%;
  height: max-content;
  padding-left: 5%;
  padding-right: 5%;
  background: url("../svg/symbol_dotten.svg");
}

.vedi-catalogo {
  width: 100%;
  height: 40vh;
  padding-left: 16%;
  padding-right: 16%;
  background-image: url("../images/home_ppt3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-style: var(--holzhof-font-style-normal);
  font-weight: var(--holzhof-font-weight-normal);
  font-family: var(--holzhof-font-family-roboto);
  letter-spacing: var(--holzhof-character-spacing-0);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;

  h2 {
    font-size: var(--holzhof-font-size-38);
    line-height: var(--holzhof-line-spacing-52);
    color: var(--holzhof-color-white);
    text-transform: uppercase;
  }

  a {
    color: var(--holzhof-color-white);
    font-size: var(--holzhof-font-size-18);
    line-height: var(--holzhof-line-spacing-26);
    height: max-content;
    width: max-content;

    &:hover {
      color: var(--holzhof-color-white);
    }

    img {
      height: 2rem;
      width: 1.3rem;
      margin-left: 4vw;
    }
  }
}

.left-text {
  text-align: left;
  margin-top: 7vh;
  margin-bottom: 7vh;
  font-family: var(--holzhof-font-family-roboto);
  font-style: var(--holzhof-font-style-normal);
  letter-spacing: var(--holzhof-character-spacing-0);
  opacity: 1;
  word-wrap: break-word;

  h2 {
    font-weight: var(--holzhof-font-weight-bold);
    font-size: var(--holzhof-font-size-50);
    line-height: var(--holzhof-line-spacing-58);
    color: var(--holzhof-color-grey);
    text-transform: uppercase;
    position: relative;
  }

  h3 {
    margin-top: 3vh;
    font-size: var(--holzhof-font-size-32);
    line-height: var(--holzhof-line-spacing-38);
    color: var(--holzhof-color-grey);
    position: relative;
  }

  span {
    color: var(--holzhof-color-green);
  }

  p {
    margin-top: 3vh;
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    color: var(--holzhof-color-grey);
    position: relative;
    text-transform: none;
  }
}

.blur-bg-image {
  display: none;
  position: fixed;
  padding: 7vh 5vw 7vh 5vw;
  width: 100%;
  height: 100%;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 999999;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  img {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 100%;
    border-radius: 20px;
    object-fit: contain !important;
    /*border: 7px solid var(--holzhof-color-green);*/
  }

  button {
    min-height: 48px;
    height: 4rem;
    min-width: 48px;
    width: 4rem;
    border: 0px;
    background-color: transparent;
    background-image: url("../svg/chiudi.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.nascosto {
  height: 0px !important;
  width: 0px !important;
  padding: 0px !important;
  display: none;
}

.gallery-piccola {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 17vh;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;

  div {
    border-radius: 0.7rem;
    background-image:
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      );
    background-position:
      left top,
      right top,
      left bottom,
      left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
    padding: 10px;
  }

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    cursor: pointer;
  }
}

.gallery-media {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 25vh;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;

  div {
    border-radius: 0.7rem;
    background-image:
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      );
    background-position:
      left top,
      right top,
      left bottom,
      left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
    padding: 10px;
  }

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    cursor: pointer;
  }
}

.gallery-grande {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 32vh;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;

  div {
    border-radius: 0.7rem;
    background-image:
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      );
    background-position:
      left top,
      right top,
      left bottom,
      left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
    padding: 10px;
  }

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    cursor: pointer;
  }
}

.vedi-altri {
  cursor: pointer;
}

.gallery-enorme {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 45vh;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;

  div {
    border-radius: 0.7rem;
    background-image:
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        90deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      ),
      repeating-linear-gradient(
        180deg,
        var(--holzhof-color-green),
        var(--holzhof-color-green) 2px,
        transparent 2px,
        transparent 12px
      );
    background-position:
      left top,
      right top,
      left bottom,
      left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
    padding: 10px;
  }

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    cursor: pointer;
  }
}

.label-gallery {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  justify-content: center;
  background-image: none !important;
  border-bottom-right-radius: 0.7rem !important;
  border-bottom-left-radius: 0.7rem !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  top: -4rem;
  z-index: 100;
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  height: 4rem;
  padding-top: 0.5rem;
  margin-bottom: auto;

  p {
    margin: 0;
  }
}

.vedi-altri {
  cursor: pointer;
}

.centered-text {
  text-align: center !important;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  li,
  p {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Bottoni contenuti
--------------------------------------------------------------*/

.cta-btn {
  font-size: var(--holzhof-font-size-16);
  display: inline-block;
  padding: 8px 50px;
  border-radius: 27px;
  transition: 0.5s;
  margin: 10px;
  background-color: var(--holzhof-color-green);
  color: var(--holzhof-color-white);
  border: 2px solid var(--holzhof-color-green);
  text-transform: uppercase;

  &:hover {
    font-size: var(--holzhof-font-size-16);
    display: inline-block;
    padding: 8px 50px;
    border-radius: 27px;
    transition: 0.5s;
    margin: 10px;
    background-color: var(--holzhof-color-white);
    color: var(--holzhof-color-green);
    border: 2px solid var(--holzhof-color-green);
  }
}

.cta-btn-w {
  font-size: 16px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 27px;
  transition: 0.5s;
  margin: 12px;
  background-color: var(--holzhof-color-green);
  color: #ffffff;
  border: 2px solid #ffffff;

  &:hover {
    font-size: 16px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 27px;
    transition: 0.5s;
    margin: 12px;
    background-color: #ffffff;
    color: var(--holzhof-color-green);
    border: 2px solid #ffffff;
  }
}

/* Solo immagine ------------------------------------------- */

.bottone_white {
  background: url("../images/pulsante_white.png") no-repeat;
  background-size: 40%;
  transition: 0.5s;
  padding: 0px 20px 20px 20px;
  margin: 20px;
  transition: 0.3s;

  &:hover {
    background: url("../images/pulsante_green.png") no-repeat;
    background-size: 40%;
    transition: 0.5s;
    padding: 0px 20px 20px 20px;
    margin: 20px;
    transition: 0.3s;
  }
}

.bottone_green {
  background: url("../images/pulsante_green.png") no-repeat;
  background-size: 40%;
  transition: 0.5s;
  padding: 0px 20px 20px 20px;
  margin: 20px;
  transition: 0.3s;

  &:hover {
    background: url("../images/pulsante_white.png") no-repeat;
    background-size: 40%;
    transition: 0.5s;
    padding: 0px 20px 20px 20px;
    margin: 20px;
    transition: 0.3s;
  }
}

/* Solo immagine xl ------------------------------------------- */

.bottone_white_xl {
  background: url("../images/pulsante_white_xl.png") no-repeat;
  background-size: 100%;
  transition: 0.5s;
  padding: 0px 30px 30px 30px;
  transition: 0.3s;
  top: -15px;
  left: 210px;
  margin-right: 10px;
  position: relative;

  &:hover {
    background: url("../images/pulsante_white_xl.png") no-repeat;
    background-size: 100%;
    transition: 0.5s;
    padding: 0px 30px 30px 30px;
    transition: 0.3s;
    top: -15px;
    left: 210px;
    margin-right: 10px;
    position: relative;
  }
}

.bottone_green_xl {
  background: url("../images/pulsante_green_xl.png") no-repeat;
  background-size: 100%;
  transition: 0.5s;
  padding: 0px 20px 20px 20px;
  margin: 20px;
  transition: 0.3s;

  &:hover {
    background: url("../images/pulsante_white_xl.png") no-repeat;
    background-size: 100%;
    transition: 0.5s;
    padding: 0px 20px 20px 20px;
    margin: 20px;
    transition: 0.3s;
  }
}

/* Immagine con bordo  -------------------------------------------*/

.bottone_green_bord {
  background: url("../images/pulsante_green.png") no-repeat;
  background-size: 20%;
  background-position: 35px;
  transition: 0.3s;
  padding: 15px 40px 15px 40px;
  transition: 0.3s;
  border-radius: 27px;
  border: 2px solid var(--holzhof-color-green);
  margin: 0px 0px 0px 30px;

  &:hover {
    background: url("../images/pulsante_white.png") no-repeat;
    background-size: 20%;
    background-position: 35px;
    transition: 0.3s;
    padding: 15px 40px 15px 40px;
    transition: 0.3s;
    border-radius: 27px;
    background-color: var(--holzhof-color-green);
  }
}

.bottone_white_bord {
  background: url("../images/pulsante_white.png") no-repeat;
  background-size: 20%;
  background-position: 35px;
  transition: 0.3s;
  padding: 15px 40px 15px 40px;
  transition: 0.3s;
  border-radius: 27px;
  border: 2px solid #ffffff;
  margin: 0px 0px 0px 30px;

  &:hover {
    background: url("../images/pulsante_green.png") no-repeat;
    background-size: 20%;
    background-position: 35px;
    transition: 0.3s;
    padding: 15px 40px 15px 40px;
    transition: 0.3s;
    border-radius: 27px;
    background-color: #fafafa;
  }
}

/*--------------------------------------------------------------
# Generali
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  width: 100%;
}

a {
  color: var(--holzhof-color-green);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--holzhof-color-green), transparent 25%);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Titolo grande della sezione
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;

  .section-title {
    position: relative;

    h2 {
      font-family: var(--holzhof-font-family-roboto);
      font-weight: var(--holzhof-font-weight-bold);
      font-size: var(--holzhof-font-size-50);
      line-height: var(--holzhof-line-spacing-58);
      font-style: var(--holzhof-font-style-normal);
      letter-spacing: var(--holzhof-character-spacing-0);
      color: var(--holzhof-color-grey);
      text-transform: uppercase;
      position: relative;
      opacity: 1;
    }

    span {
      color: var(--holzhof-color-green);
    }

    p {
      font-family: var(--holzhof-font-family-roboto);
      font-weight: var(--holzhof-font-weight-normal);
      font-size: var(--holzhof-font-size-32);
      line-height: var(--holzhof-line-spacing-38);
      font-style: var(--holzhof-font-style-normal);
      letter-spacing: var(--holzhof-character-spacing-0);
      color: var(--holzhof-color-grey);
      position: relative;
      opacity: 1;
    }
  }
}

/*--------------------------------------------------------------
# Sezione Galleria .hero 
--------------------------------------------------------------*/

.hero {
  padding: 0;

  .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
  }

  img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .carousel-item::before {
    content: "";
    background-color: color-mix(
      in srgb,
      var(--background-color),
      transparent 100%
    );
    position: absolute;
    inset: 0;
  }

  .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
  }

  h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
  }
}

/*--------------------------------------------------------------
# Sezione Puntini .about 
--------------------------------------------------------------*/

.about {
  .row {
    margin: 50px 0px 0px 0px;
  }

  span {
    color: var(--holzhof-color-green);
  }

  .image_in_tou_dotten {
    position: relative;
  }


  .dotten-sx .image_in_tou_dotten img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .dotten-dx .image_in_tou_dotten img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  /*Div destro con titolo in alto, testo centrale e immagine infondo ---------------------------------------*/

  .div-bottom-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    font-style: var(--holzhof-font-style-normal) !important;
    font-weight: var(--holzhof-font-weight-normal) !important;
    font-family: var(--holzhof-font-family-roboto) !important;
    letter-spacing: var(--holzhof-character-spacing-0) !important;
    text-align: right;
    color: var(--holzhof-color-grey) !important;
    opacity: 1;
    margin-bottom: 0px;

    h2 {
      font-size: var(--holzhof-font-size-38);
      line-height: var(--holzhof-line-spacing-50);
      text-transform: uppercase;
      padding-left: 75px;
    }

    p {
      font-size: var(--holzhof-font-size-16);
      line-height: var(--holzhof-line-spacing-28);
      padding-left: 75px;
    }

    img {
      border-radius: 10px;
      width: 85%;
    }
  }

  /*Div sinistro con titolo in alto, testo centrale e immagine infondo---------------------------------------*/

  .div-bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    font-style: var(--holzhof-font-style-normal) !important;
    font-weight: var(--holzhof-font-weight-normal) !important;
    font-family: var(--holzhof-font-family-roboto) !important;
    letter-spacing: var(--holzhof-character-spacing-0) !important;
    text-align: left;
    color: var(--holzhof-color-grey) !important;
    opacity: 1;
    margin-bottom: 0px;

    h2 {
      font-size: var(--holzhof-font-size-38);
      line-height: var(--holzhof-line-spacing-50);
      text-transform: uppercase;
      padding-right: 75px;
    }

    p {
      font-size: var(--holzhof-font-size-16);
      line-height: var(--holzhof-line-spacing-28);
      padding-right: 75px;
    }

    img {
      border-radius: 10px;
      width: 85%;
    }
  }

  /*Div sinistro con titolo in alto, testo centrale e immagine infondo---------------------------------------*/

  .div-bottom-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-style: var(--holzhof-font-style-normal) !important;
    font-weight: var(--holzhof-font-weight-normal) !important;
    font-family: var(--holzhof-font-family-roboto) !important;
    letter-spacing: var(--holzhof-character-spacing-0) !important;
    color: var(--holzhof-color-grey) !important;
    opacity: 1;
    margin-bottom: 0px;

    div {
      width: 85%;
      height: 100%;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      h2 {
        font-size: var(--holzhof-font-size-38);
        line-height: var(--holzhof-line-spacing-50);
        text-transform: uppercase;
      }

      p {
        font-size: var(--holzhof-font-size-16);
        line-height: var(--holzhof-line-spacing-28);
      }

      img {
        align-self: center;
        border-radius: 10px;
        width: 100%;
      }
    }
  }
}

.dotten-sx .image_in_tou_dotten::before, 
.dotten-dx .image_in_tou_dotten::before { 
  content: "";
  position: absolute;

  /* Dimensione dinamica al 90% del contenitore padre (l'immagine) */
  width: 100%;
  height: 100%;
  object-fit: cover; 
    
  /* Decide quale punto dell'immagine deve combaciare con il contenitore */
  /* (es: 0% 0% è in alto a sinistra, 100% 100% è in basso a destra) */
  object-position: 50% 50%;
  
  /* Stile del bordo classico */
  border-radius: 16px;
  pointer-events: none;
  /* 1. APPLICHIAMO IL COLORE TRAMITE VARIABILE */
  background-color: var(--holzhof-color-green);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='calc(100%25 - 6px)' height='calc(100%25 - 6px)' fill='none' rx='16' stroke='white' stroke-width='1' stroke-dasharray='10 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='calc(100%25 - 6px)' height='calc(100%25 - 6px)' fill='none' rx='16' stroke='white' stroke-width='1' stroke-dasharray='10 6'/%3E%3C/svg%3E");
}

.dotten-dx .image_in_tou_dotten::before {
  transform: translate(25px, -25px);
}

.dotten-sx .image_in_tou_dotten::before {
  transform: translate(-25px, -25px);
}

/*--------------------------------------------------------------
 Sezione Presentazione .call-to-action
--------------------------------------------------------------*/

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  background: #f2f2f2;

  img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .text-sx {
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
  }

  &:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .container {
    position: relative;
    z-index: 3;
  }

  h3 {
    font-style: var(--holzhof-font-style-normal);
    font-weight: var(--holzhof-font-weight-bold);
    font-size: var(--holzhof-font-size-38);
    line-height: var(--holzhof-line-spacing-58);
    font-family: var(--holzhof-font-family-roboto);
    color: var(--holzhof-color-grey);
    letter-spacing: var(--holzhof-character-spacing-0);
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
  }

  span {
    color: var(--holzhof-color-green);
  }

  p {
    color: var(--holzhof-color-grey);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-32);
    line-height: var(--holzhof-line-spacing-38);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-style: var(--holzhof-font-style-normal);
  }
}

/*-----------------------------------------------------------------
                            VISTA MOBILE
-----------------------------------------------------------------*/
@media (max-width: 999px) {
  /*RIDIMENSIONO TUTTI I TESTI PER UNA MIGLIORE ESPERIENZA MOBILE (potrebbe risultare pericoloso)*/
  h1 {
    font-size: var(--holzhof-font-size-32) !important;
    line-height: var(--holzhof-line-spacing-45) !important;
  }

  h2 {
    font-size: var(--holzhof-font-size-26) !important;
    line-height: var(--holzhof-line-spacing-37) !important;
  }

  h3 {
    font-size: var(--holzhof-font-size-22) !important;
    line-height: var(--holzhof-line-spacing-30) !important;
  }

  h4 {
    font-size: var(--holzhof-font-size-18) !important;
    line-height: var(--holzhof-line-spacing-26) !important;
  }

  p {
    font-size: var(--holzhof-font-size-14) !important;
    line-height: var(--holzhof-line-spacing-19) !important;
  }

  a {
    font-size: var(--holzhof-font-size-14) !important;
    line-height: var(--holzhof-line-spacing-19) !important;
  }

  /* BLOCCHI CON IMMAGINE E TESTO ALL'INIZIO DELLA PAGINA HOME*/
  .col-lg-7 .image_in_tou_dotten {
    display: none !important;
  }

  .col-lg-3 .image_in_tou_dotten {
    display: none !important;
  }

  .col-lg-7 {
    display: none !important;
  }

  .col-lg-3 {
    display: none !important;
  }

  .div-bottom-center {
    align-items: center !important;
    width: 100%;

    div {
      width: 100% !important;
      align-items: center;

      h2 {
        padding: 0 !important;
      }

      p {
        padding: 0 !important;
      }

      img {
        width: 100% !important;
      }
    }
  }

  .div-bottom-right {
    align-items: center !important;
    width: 100%;

    h2 {
      padding: 0 !important;
    }

    p {
      padding: 0 !important;
    }

    img {
      width: 100% !important;
    }
  }

  .div-bottom-left {
    align-items: center !important;
    width: 100%;

    h2 {
      padding: 0 !important;
    }

    p {
      padding: 0 !important;
    }

    img {
      width: 100% !important;
    }
  }

  /* MARGINE AI LATI DEI TESTI */
  .text-center {
    margin: 0 1rem 0 1rem !important;
  }

  /* CATALOGO */
  .vedi-catalogo {
    max-width: 100%;
    height: fit-content;
    min-height: 40vh;

    a {
      max-width: 100%;
    }
  }
}

@media (max-width: 999px) and (min-width: 601px) {
  /* GALLERY */
  .gallery-piccola {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .gallery-media {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grande {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-enorme {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1500px) and (min-width: 1000px) {
  .gallery-piccola {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .gallery-media {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 600px) {
  /* GALLERY */
  .gallery-piccola {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-media {
    grid-template-columns: 1fr;
  }

  .gallery-grande {
    grid-template-columns: 1fr;
  }

  .gallery-enorme {
    grid-template-columns: 1fr;
  }
}
