/*--- Generale ---*/
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100;
    src: url('../font/raleway-v37-latin-100.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: italic;
    font-weight: 100;
    src: url('../font/raleway-v37-latin-100italic.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    src: url('../font/raleway-v37-latin-300.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: italic;
    font-weight: 300;
    src: url('../font/raleway-v37-latin-300italic.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: url('../font/raleway-v37-latin-500.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: italic;
    font-weight: 500;
    src: url('../font/raleway-v37-latin-500italic.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Cormorant';
    font-style: italic;
    font-weight: 300;
    src: url('../font/cormorant-v24-latin-300italic.woff2') format('woff2');
}
html, body {
    height: 100%;
    margin: 0;
    font-size: 100%;
}
body {
    font-family:"Raleway", "Open Sans", sans-serif;
    color: #384149;
    font-weight: 300;
}
a {
    color: #149ddd;
    text-decoration: none;
}
a:hover {
    color: #37b3ed;
    text-decoration: none;
}
/*--- Arrow-back button ---*/
.arrow-back {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}
.arrow-back.active {
    visibility: visible;
    opacity: 1;
}
.arrow-back img {
    width: 60px;
}
.arrow-back img:hover {
    opacity: 0.8;
}
/*--- Header ---*/
#main {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../../images/massage-swedish-21.webp) fixed center center;
    background-size: cover;
    background-attachment: fixed;
    background-position: top left;
}
@media (max-width: 1199px) {
    #header {
        left: -300px;
    }
}
/*--- Menu Principale ---*/
.nav-home{
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.nav-home li a {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    margin-right: 16px;
    position: relative;
}
.nav-home li a, .nav-home li a:focus {
    display: flex;
    padding: 0;
    white-space: nowrap;
    transition: 0.3s;
}
.nav-home li a:before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease;
    background: #fff;
    visibility: hidden;
}
/*--- Icone social landing ---*/
.icone-social {
    margin-top: 14px;
    margin-bottom:40px;
    display: flex;
}
.icone-social img, #social-contact img {
    width: 35px;

    margin: 5px 0;
}
.icone-social img:hover, #social-contact img:hover {
    opacity: 0.8;
}
.instagram{
    padding: 1px;
}
.icone-social a {
    display: flex;
    margin-right: 18px;
}
/*--- Landing Section ---*/
#landing {
    width: 100%;
    height: 100vh;
    padding-left: 6%;
    background: url("../../images/copertina_cri.webp");
    /*background: url("../../images/copertina_hands.webp");*/
    
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /* Proprietà che centrano il contenuto */
    display: flex;             /* 1. Abilita il modello Flexbox */
    flex-direction: column;    /* 2. Allinea il contenuto verticalmente */
    justify-content: center;   /* 3. Centra gli elementi lungo l'asse principale (verticale) */
}
#landing:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#landing .landing-container {
    position: relative;
    z-index: 2;
}
#landing h1 {
    font-size: 6.5rem;
    font-weight: 300;
    font-family: 'Cormorant', serif;
    font-style: italic;
    color: #fff;
    margin-bottom: 26px;
}
#landing p {
    color: #fff;
    /*margin-bottom: 0.8rem;*/
    font-size: 24px;
    font-style: italic;
}
#landing p span {
    /*padding-bottom: 4px;*/
    letter-spacing: 1px;
    font-size: 1.2rem;
}
@media (min-width: 1024px) {
    #landing {
        background-attachment: fixed;
    }
}
@media (max-width: 768px) {
    #landing h1 {
        font-size: 3.5rem;
    }
    #landing h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}
@media(max-width : 500px){
    #landing{
        background: url("../../images/copertina_cri_2small.webp");
        /*background: url("../../images/copertina_hands_small.webp");*/
        
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }
}
@media(min-width : 401px){
    #landing .landing-container {
        min-width: 420px;
    }
}
/*--- Generale Sezioni ---*/
section {
    overflow: hidden;
}
.section-title h2 {
    font-size: 32px;
    position: relative;
    color: #173b6c;
    font-weight: 500;
}
.section-title h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: #a5a748;
    margin: 5px 10px;
}
#video_preview .section-title h2 {
    margin: 30px 0;
}
@media(max-width : 600px){
    .section-title h2{
        font-size: 28px;
    }
}
/*--- Io e il massaggio ---*/
#about  {
    padding-top: 60px;
}
#about img {
    margin-top: 12px
}
@media(max-width : 400px){
    .nav-home li a {
        font-size: 16px;
        margin-right: 16px;
    }
}
/*--- Massaggi ---*/
.contactDetail {
    padding: 20px 8px;
}
.contactDetail img {
    width: 100%;
    border-radius: 3px;
    margin: 8px auto;
}
.contactDetail h3 {
    color: #173b6c;
    font-size: 1.7em;
    font-weight: 500;
    margin: 8px 0;
}
.contactDetail h5 {
    font-size: 1.25em;
    font-weight: 500;
    margin: 6px 0;
}
.action_call{
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
    font-weight: 500;
}
.contactDetail p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 10px 0;
    line-height: 1.4;
}
.contactDetail .present{
    /*font-size: 1.3em;*/
    line-height: 1.3;
}
.claim {
    font-weight: 500;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .action_call, modal_detail a {
        font-size: 15px;
    }
    .contactDetail p {
        font-size: 14px;
    }
    .contactDetail .present{
        font-size: 14px;
    }
}
@media (max-width: 1367px) {
    .contactDetail p {
        font-size: 18px;
        line-height: 1.4;
    }
    .contactDetail .present{
        font-size: 18px;
        line-height: 1.4;
    }
}

/* --- GIFT CARD SECTION --- */
.giftcard-section {
    background-color: #faf7f5de;
    padding: 20px 20px;
    margin-top: 60px;
    border: 1px solid #e2d6ce;
    border-radius: 3px;
}

.giftcard-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    /*color: #5b3b2e;*/
    margin-bottom: 20px;
    font-weight: 600;
}

.giftcard-text {
    font-family: 'Cormorant', serif;
/*    font-size: 1.2em;
    color: #4d4d4d;
    margin-bottom: 30px;*/
    line-height: 1.6em;
}

.giftcard-btn {
    margin: 20px 0;
    display: inline-block;
    background-color: #b77963;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.giftcard-btn:hover {
    background-color: #9e6754;
    transform: scale(1.05);
}

/*--- CONTATTI ---*/
#contact {
    padding-bottom: 60px;
}
.contact-wrap {
    font-style: italic;
}
.normativa {
    width: 100%;
    height: 100%;
    font-style: italic;
}
.contact-wrap p {
    width: 100%;
    background-color: #fff;
    padding: 6px 20px;
    text-align: left;
    box-shadow: 1px 1px 1px 0  #5552523b;
    -webkit-box-shadow: 1px 1px 1px #5552523b;
    font-size: 1.6em;
    border-radius: 3px;
    border: 1px solid #e2e2e2;
}
#social-contact{
    background-color: #fff;
    margin: 1rem auto;
    padding: 0 20px;
    text-align: left;
    font-size: 28px;
    border-radius: 3px;
    border: 1px solid #e2e2e2;
    box-shadow: 1px 1px 1px 0  #5552523b;
    -webkit-box-shadow: 1px 1px 1px #5552523b;
}
#social-contact a{
    margin-right: 20px;
    font-size: larger;
}
.telnumb{
    color: black;
    font-weight: 500;
}
.whatsapp {
    color: #25D366;
    font-size: 0.9em;
}
.whatsapp img {
    height: 40px;
    padding-bottom: 8px;
    margin-top: 4px;
}
.contactDetail .whatsapp img {
    width: 5%;
    height: 26px;
    padding-bottom: 5px;
}
#video_single .whatsapp img {
    padding-bottom: 10px;
}
.whatsapp img:hover {
    opacity: 0.8;
}
.normativa h5 {
    margin-top: 30px;
    font-size: 0.9em;
}
.normativa {
    text-align: center;
    font-style: initial;
}
.normativa p {
    font-size: 14px;
    color: #9d9211;
}
@media screen and (max-width: 480px) {
    .normativa h5 {
        font-size: 16px;
        text-align: justify;
    }
    .normativa p {
        text-align: justify;
    }
}
@media screen and (min-width: 481px) and (max-width: 740px) {
    .normativa {
        padding: 4px;
    }
    .normativa p {
        text-align: justify;
    }
    .normativa h2 {
        margin-top: 4px;
        font-size: 12px;
    }
}
/*--- VIDEO ---*/
#video_preview{
    padding-bottom: 60px;
}
#video_preview .section-title{
    padding: 0;
}
#video_preview p{
    font-size: 1.1em;
    line-height: 1.3;
    margin-bottom: 30px;
}
.container-vid {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex-grow: 1; /* Questo farà "spingere" il footer verso il basso */
}
.thumb-vid{
    /*padding: 0 15px;*/
}
.thumb-vid p{
    margin: 4px 0;
}
.thumb-vid h5{
    font-size: 1.4em;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}
.thumb-vid p{
    margin: 4px 0;
}
video {
    max-width: 100%;
    height: auto;
}
@media(max-width :990px){
    .thumb-vid{
        /*padding: 5px ;*/
    }
}
#video_preview .contactDetail{
    padding: 0 3.5%;
}
#video_preview .action_call{
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
}
#video_preview .contactDetail p {
    font-size: 1.25em;
    font-style: italic;
    margin: 0 0 24px 0;
}
#video_single .contactDetail{
    padding: 0 8px;
}
#video_single .contactDetail h2{
    margin-top: 20px;
    padding: 6px 20px;
}
#video_single p{
    font-size: 1.25em;
}
#video_single p{
    font-size: 1.25em;
}
#video_single .contactDetail p{
    border: 0;
}
#video_single .section-title{
    /*padding: 0;*/
}
.link_vids{
    display: flex;
}
.contact_vid {
    padding:0;
}
.contact_vid h2 {
    font-size: 1.5em;
    padding: 0 8px;
}
.contact_vid p {
    font-size: 1.2em;
}
#video_single{
    padding: 24px 0;
}
#video_single .contact-wrap{
    padding: 0 10px;
}
#video_single h4{
    font-size: 1.5em;
    font-weight: 500;
    margin: 20px 0;
}
#video_single .contact-wrap p {
    font-size: 1.6em;
    padding: 6px 15px;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid lightgray;
}
@media screen and (max-width: 740px) {
    .contact-wrap p,  #video_single .contact-wrap p {
        font-size: 1.4em;
    }
    .contact-wrap p {
        padding: 4px;
    }
}
@media (min-width: 1199px) {
    .cont-vid-single{
        padding: 0 3%
    }
    #video_single h4 {
        font-size: 1.8em;
        font-weight: 500;
    }
}
.arrow-back-vids {
    width: 70px;
    transition: all 0.4s;
    margin: 2px auto;
}
.arrow-back-vids img:hover {
    opacity: 0.8;
}
/*--- FOOTER ---*/
footer {
    background-color: #F8F8F8;
    background-image: url("../../comps/pattern.webp");
    box-shadow: inset 0 16px 26px 0 rgba(88, 87, 87, 0.15);
    text-align: center;
    letter-spacing: 0.03em;
}
.footer-text{
    padding: 14px 2px;
}
.footer-text p{
    font-size: 14px;
    font-family: monospace;
}
.footer-text p a{
    color: #101010;
    text-transform: uppercase;
    font-size: 12px;
    transition: ease-in-out .2s;
}
.footer-text p a:hover{
    color: #101010d4;
    font-size: 13px;
}
@media (max-width: 1199px) {
    #footer {
        position: static;
        width: auto;
        padding-right: 15px;
    }
}