/*!
Theme Name: Primhotel
Author: Paolo Pizzuti
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
*/


:root {
    --main-dark-color: #59453c;
    --medium-color: #c9b7a6;
    --light-color: #F8F4EF;
}
body,html {
    background-color: var(--light-color);
}
body {
    font-family: var(--wp--preset--font-family--jost);
}

h1 {
    font-family: var(--wp--preset--font-family--cormorant-garamond);
}




section.intro-home .section-content {
    position: relative;
    height: 120vh;
    min-height: 1024px;
  }
  section.intro-home .section-content picture.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
  }
  section.intro-home .section-content picture.bg-image:before,
  section.intro-home .section-content picture.bg-image:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    /* background: linear-gradient(0deg, rgba(89, 69, 60, 1), rgba(89, 69, 60, 0)); */
  }
  section.intro-home .section-content picture.bg-image:before {
    /* background: linear-gradient(0deg, rgba(89, 69, 60, 1), rgba(89, 69, 60, 0)); */
    height: 40%;
    z-index: 10;
  }
  section.intro-home .section-content picture.bg-image:after {
    height: 100%;
    background: linear-gradient(0deg, #F8F4EF, rgba(248, 244, 239, 0) 35%);
    /* background: linear-gradient(0deg, red, rgba(248, 244, 239, 0) 35%); */
    z-index: 9;
  }
  section.intro-home .section-content picture.bg-image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
  }