@charset "utf-8";
/* CSS Document */

/* Mostra un messaggio quando il dispositivo è in landscape */
@media screen and (orientation: landscape) {
  .rotate-message {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
}

@media screen and (orientation: portrait) {
  .rotate-message {
    display: none;
  }
}

/* ------------------------------------------- EFFETTO HOVER SU PRODUCT DESIGN */
.productDesign .imageList {
    transition: transform 0.3s ease; /* Aggiunge una transizione fluida */
}

.productDesign .imageList:hover {
    transform: scale(1.1); /* Ingrandisce l'immagine del 10% al passaggio del mouse */
}

/* ------------------------------------------- EFFETTO HOVER SU BRANDFOLIO */
.brandfolio .image-container {
  position: relative;
  display: inline-block; /* Rispetta il layout della griglia esistente */
  overflow: visible; /* Permette all'immagine ingrandita di sovrapporsi senza clipping */
  float: left;
  width: 15%;
  margin: 2.5%;
}

.brandfolio .imageList {
  display: block;
  width: 100%; /* Assicura che entrambe le immagini abbiano la stessa larghezza */
  height: auto; /* Mantiene le proporzioni */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Animazione fluida e veloce */
}

.brandfolio .imageList-bw {
  opacity: 1;
  position: relative;
  z-index: 1; /* L'immagine in bianco e nero è visibile per impostazione predefinita */
}

.brandfolio .imageList-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Stessa dimensione dell'immagine in bianco e nero */
  height: 100%; /* Allinea perfettamente all'immagine in bianco e nero */
  opacity: 0;
  transform: scale(1); /* Dimensione iniziale */
  z-index: 2; /* L'immagine a colori appare sopra durante l'hover */
}

.brandfolio .image-container:hover .imageList-bw {
  opacity: 0; /* Scompare l'immagine in bianco e nero */
}

.brandfolio .image-container:hover .imageList-color {
  opacity: 1; /* Appare l'immagine a colori */
  transform: scale(1.1); /* Ingrandimento del 10% */
}

/* ------------------------------------------- HOMEPAGE ALTERNATIVE MENU */
.nav.menuAlternativoHomepage {
    list-style: none;
    padding: 0;
    margin: 0;
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nav.menuAlternativoHomepage li {
    position: relative;
    float: left;
    width: 50%;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* MODIFICA: Aggiunte le seguenti righe per eliminare il gap */
    display: block;
    line-height: 0;
    font-size: 0;
}

.nav.menuAlternativoHomepage li:hover {
    /* transform: translateY(-8px) scale(1.02); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); */
}

.nav.menuAlternativoHomepage a {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    /* MODIFICA: Aggiunta altezza 100% per occupare tutto lo spazio del li */
    height: 100%;
}

.nav.menuAlternativoHomepage img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
    /* MODIFICA: Aggiunte le seguenti righe per eliminare il gap verticale */
    display: block;
    vertical-align: top;
    height: 100%;
}

.nav.menuAlternativoHomepage a:hover img {
    transform: scale(1.1);
    filter: brightness(0.6) contrast(1.2) blur(1px);
}

.nav.menuAlternativoHomepage .image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /*text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.3); */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    /* border-radius: 12px; */
    padding: 20px 30px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    white-space: nowrap;
    letter-spacing: 1px;
}

.nav.menuAlternativoHomepage a:hover .image-title {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Effetto particelle animate */
.nav.menuAlternativoHomepage a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease;
    z-index: 1;
}

.nav.menuAlternativoHomepage a:hover::before {
    left: 100%;
}

/* Effetto glow sui bordi */
.nav.menuAlternativoHomepage a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* border-radius: 12px; */
    /* border: 2px solid transparent; */
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav.menuAlternativoHomepage a:hover::after {
    opacity: 0.6;
}

/* Animazione pulsante */
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.nav.menuAlternativoHomepage a:hover .image-title {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .nav.menuAlternativoHomepage {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav.menuAlternativoHomepage .image-title {
        font-size: 1.4rem;
        padding: 15px 20px;
    }
    
    .nav.menuAlternativoHomepage img {
        height: 200px;
    }
}

/* Stili aggiuntivi per varianti colore per ogni elemento */
.nav.menuAlternativoHomepage .item-258 .image-title {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    /* border-color: rgba(102, 126, 234, 0.3); */
}

.nav.menuAlternativoHomepage .item-259 .image-title {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
    /* border-color: rgba(240, 147, 251, 0.3); */
}

.nav.menuAlternativoHomepage .item-251 .image-title {
    background: linear-gradient(135deg, rgba(17, 205, 239, 0.2), rgba(17, 205, 239, 0.2));
    /* border-color: rgba(17, 205, 239, 0.3); */
}

.nav.menuAlternativoHomepage .item-260 .image-title {
    background: linear-gradient(135deg, rgba(250, 208, 196, 0.2), rgba(255, 209, 148, 0.2));
    /* border-color: rgba(250, 208, 196, 0.3); */
}

/* ------------------------------------------- HOMEPAGE COVER CLOUDS */
.coverHomepage {
  position: relative;
  float: left;
  width: 100%;
  background-color: #FFF;
}

.custom.coverHomepage p {
  height: 0px;
  padding: 0px;
  margin: 0px;
}

.custom.coverHomepage .puppet {
  position: relative;
  width: 100%;
  float: left;
  background-image: url('../../../images/users/elementi_sito/clouds_home.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -30vh;
}

/* PARALLASSE */
.puppet {
    height: 450px; /* Altezza del div, regolala come necessario */
    background-image: url('/images/users/elementi_sito/puppet/luca-renzi-realcism-puppet-01.png');
    background-size: cover; /* Copre l'intero div */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Effetto parallasse base */
    position: relative;
}

.custom.coverHomepage img {
  position: relative;
  float: right;
  width: 50%;
  min-width: 700px;
  min-height: 600px;
  max-width: 769px;
  max-height: 660px;
  margin: 2% 5% 2% 5%;
}


#videoFrame {
  height: 600px;
  width: 100%;
  border: none;
  overflow: hidden;
}

/* ------------------------------------------- HOMEPAGE BOLLE */
.homeBolle {
  position: relative;
  float: left;
  width: 100%;
}

.bolla-top {
  position: relative;
  float: right;
  width: 30vw;
}

.bolla-bottom {
  position: relative;
  float: left;
  width: 50vw;
  top: 10vh;
}

.homeBolle .body {
  position: absolute;
  float: left;
  width: 45vw;
  right: 0;
  top: 30vh;
  z-index: 1;
}

.homeBolle .body p,
.homeBolle .body p .giallo,
.homeBolle .body p .azzurro {
  text-align: left;
  font-family: realcism-montserrat-lightItalic;
  font-size: 1.5vw;
  line-height: 2.5vw;
}

.homeBolle .body p .giallo {
  color: #f2db35;
}

.homeBolle .body p .azzurro {
  color: #32ffff;
}

.menu-menuAlternativo {
  position: relative;
  float: left;
  width: 30%;
  background-image: url('../../../images/users/elementi_sito/bolle/element.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 5vw;
  margin-top: 25vh;
}

.menu-menuAlternativo li {
  text-align: left;
}

.menu-menuAlternativo a {
  text-transform: capitalize;
  font-size: 2vw;
  line-height: 3vw;
  font-family: realcism-montserrat-lightItalic;
}

.moduletable-articoloHome {
  position: relative;
  float: left;
  width: 30%;
  background-image: url('../../../images/users/elementi_sito/bolle/circle.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 35%;
  left: -20%;
}

.moduletable-puppet {
  position: relative;
  float: right;
  width: 50%;
  margin-top: -50%;
}

.moduletable-puppet .puppet-right {
  position: relative;
  float: left;
  width: 100%;
}

.moduletable-articoloHome h3 {
  font-family: realcism-montserrat-lightItalic;
  font-size: 6vw;
  line-height: 7vw;
  text-align: right;
  text-transform: capitalize;
  margin: 0px;
}

.moduletable-articoloHome .bt-introtext {
  font-family: realcism-montserrat-lightItalic;
  text-align: left;
}

.moduletable-articoloHome .readmore {
  position: relative;
  float: left;
  width: 30%;
  margin: 3% 35%;
  border-bottom: 1px solid #FFF;
}

.moduletable-articoloHome .readmore a {
  font-family: realcism-montserrat-lightItalic;
  text-transform: lowercase;
  font-size: 1.5vw;
}

.moduletable-beTheOne {
  position: relative;
  float: left;
  width: 30%;
  background-image: url('../../../images/users/elementi_sito/bolle/circle.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 30%;
  padding: 2% 0px;
  text-align: center;
}

.moduletable-beTheOne img {
  width: 70%;
}

.moduletable-beTheOne .readmore {
  position: relative;
  float: left;
  width: 30%;
  margin: 3% 35%;
  border-bottom: 1px solid #FFF;
}

.moduletable-beTheOne .readmore a {
  font-family: realcism-montserrat-lightItalic;
  text-transform: lowercase;
  font-size: 1.5vw;
}

/* ------------------------------------------- MENU */
#nav {
  position: relative;
  float: right;
  /* margin-right: 5vw; */
  width: auto;
}

#nav ul {
  padding: 0vh 0px;
  box-shadow: none;
}

a.sidr-class-toggle-sidr-close:before {
  background: transparent;
}

a.sidr-class-toggle-sidr-close:before,
#nav a {
  font-family: realcism-montserrat-bold !important;
  /* font-family: realcism-regular !important; */
  line-height: 20px;
  font-size: 12px !important;
  text-transform: uppercase !important;
}

#gruemenu > ul > li > a {
  padding: 18px 12px 21px 12px
}

.sidr-class-current .sidr-class-home,
.sidr-class-home:hover,
#nav .active .home,
#nav .home:hover {
  color:#fd53fc !important;
}

.sidr-class-current .sidr-class-about,
.sidr-class-about:hover,
#nav .active .about,
#nav .about:hover {
  color:#f2db35 !important;
}

.sidr-class-current .sidr-class-brandfolio,
.sidr-class-brandfolio:hover,
#nav .active .brandfolio,
#nav .brandfolio:hover {
  color:#32ffff !important;
}

.sidr-class-current .sidr-class-works,
.sidr-class-works:hover,
#nav .active .works,
#nav .works:hover {
  color:#0fe699 !important;
}

.sidr-class-current .sidr-class-writings,
.sidr-class-writings:hover,
#nav .active .writings,
#nav .writings:hover,
.sidr-class-current .sidr-class-lookbook,
.sidr-class-lookbook:hover,
#nav .active .lookbook,
#nav .lookbook:hover {
  color:#f01966 !important;
}

/* ------------------------------------------- HOMEPAGE */
#totalWidth {
  position: relative;
  float: left;
  width: 90vw;
  margin: 0vh 5vw;
}

#totalWidth .body {
  position: relative;
  float: left;
}

#totalWidth .puppet {
  width: 27vw;
  text-align: center;
}

#totalWidth .puppet img {
  position: relative;
  float: left;
  width: 60%;
  margin: 0px 20%;
}

#totalWidth .body {
  width: 60vw;
  text-align: left;
}

#totalWidth .body p,
#totalWidth .body p span {
  text-align: left;
  font-style: italic;
  font-size: 1.9vw;
  line-height: 2.9vw;
}

#totalWidth .body h4 {
  font-family: realcism-montserrat;
  /* font-family: realcism-regular; */
  text-transform: capitalize;
  color: #ff49ff;
  font-size: 20px;
}

#totalWidth .body .viola {
  color: #ff49ff;
}

#totalWidth .body .giallo {
  color: #f2db35;
}

.custom-directMail {
  position: relative;
  float: left;
  width: 90%;
  margin: 0px 5% 0px 5%;
  /*
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  */
}

.custom-directMail p {
  font-family: realcism-montserrat-lightItalic;
  font-size: 4vw;
  /* text-align: left;
  padding: 0px 5%; */
}

.custom-directMail a {
  font-size: 4vw;
  color: #ff49ff;
  font-family: realcism-montserrat-lightItalic;
  text-decoration: none;
}

.custom-directMail a:hover {
  color: #FFF;
}

/* ------------------------------------------- BRANDFOLIO, FASHION, LOOKBOOK */
.top .brandfolio,
.top .fashion,
.top .lookbook {
}

/* .imageList {
  position: relative;
  float: left;
}

.brandfolio .imageList {
  width: 15%;
  margin: 2.5%;
} */

.brandfolio p.titolo1,
.brandfolio p.titolo2,
.brandfolio p.titolo3,
.brandfolio p.titolo3 span{
  color: #32ffff;
  margin: 5px 0px;
  font-family: 'realcism-montserrat-alternates-semiboldItalic';
}

.brandfolio p.titolo1 {
  /* font-family: 'realcism-montserrat-semibold'; */
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: lowercase;
  margin-bottom: 20px;
}

.brandfolio p.titolo2 {
  font-style: italic;
  font-size: 14px;
  letter-spacing: 6px;
}

.brandfolio p.titolo3,
.brandfolio p.titolo3 span {
  /* font-family: 'realcism-montserrat-semiboldItalic'; */
  font-size: 30px;
  letter-spacing: 2px;
}

.brandfolio p.descrizione {
  padding: 0 10%;
}


.fashion .imageList {
  width: 30vw;
  margin: 1.5vw;
}

.brandfolio .elenco {
  position: relative;
  float: left;
  width: 90%;
  margin: 0px 5%;
}


/* ------------------------------------------- WORKS */
.backgroundWorks {
  position: absolute;
  width: 100vw;
  height: 60vh;
  background-color: #000;
  left: 0px;
  bottom: 1;
  z-index: -1;
}

.moduletable-pageWorks {
  position: relative;
  float: left;
  width: 90vw;
  margin: 0px 5vw;
}

.pageWorks .bt-inner {
  background-color: #FFF;
  padding: 0px;
  margin: 0 10px;
}

.pageWorks .bt-cs .bt-inner img {
  outline: 0px;
  border: 0px;
  margin: 0px;
  max-width: 100%;
}

.pageWorks .bt-title,
.pageWorks .bt-introtext {
  text-transform: uppercase;
  font-size: 16px;
  color: #000 !important;
  text-align: left !important;
  padding: 10px 10%;
}

.pageWorks .bt-title {
  width: 100%;
  text-align: left;
  font-family: realcism-montserrat-bold;
}

.pageWorks .bt-introtext {
  font-family: realcism-montserrat;
}

.pageWorks .readmore {
  text-align: left;
  padding: 10px 10% 30px 10%;
}

.pageWorks .readmore a,
.pageWorks .readmore a:hover {
  font-family: realcism-regular;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000 !important;
}

.bt-row-separate {
  border: 0px;
}

/* articoli */
.articoliWorks {
  position: relative;
  float: left;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.item-page-posters .articoliWorks .titolo,
.item-page-posters .articoliWorks .articolo {
  display: none;
}

.articoliWorks .titolo,
.articoliWorks .articolo,
.articoliWorks .titolo2,
.articoliWorks .articolo2 {
  position: relative;
  float: left;
  text-align: left;
}

.articoliWorks .titolo {
  font-family: realcism-montserrat-bold;
  width: 35%;
  font-size: 5vw;
  line-height: 5vw;
  padding: 5% 5% 5% 0px !important;
  margin: 0px;
  color: #000 !important;
}

.articoliWorks .titolo.speciale {
  font-size: 4vw;
  line-height: 4vw;
  padding: 0% 5% 0% 0px !important;
}

.articoliWorks .articolo.speciale {
  padding: 0% 0px 0% 5%;
}

.articoliWorks .articolo,
.articoliWorks .articolo2 {
  width: 55%;
  padding: 5% 0px 5% 5%;
}

.articoliWorks .titolo2,
.articoliWorks .articolo2 {
  width: 100% !important;
  /* padding: 3% 0px !important; */
}

.articoliWorks .articolo p,
.articoliWorks .articolo2 p {
  color: #000;
  text-align: left !important;
  /* padding: 0px !important; */
}

.articoliWorks .articolo h2 {
  font-family: realcism-montserrat-semibold;
  text-align: left !important;
  padding: 0px !important;
  font-size: 2vh;
  line-height: 4vh;
  color: #000 !important;
  letter-spacing: 0px;
}

.galleriaWorks,
.mokupWorks {
  position: relative;
  float: left;
  width: 100%;
}

.articoliWorks .mokupWorks img {
  position: relative;
  float: left;
  width: 47.5%;
  margin: 2.5% 0px;
}

.articoliWorks .mokupWorks img.left {
  margin-right: 2.5%;
}

.articoliWorks .mokupWorks img.right {
  margin-left: 2.5%;
}

.articoliWorks .galleriaWorks img {
  position: relative;
  float: left;
  width: 100%;
  margin: 2.5% 0%;
}

.articoliWorks .galleriaWorks img.scopri-teramo_10,
.articoliWorks .galleriaWorks img.scopri-teramo_11,
.articoliWorks .galleriaWorks img.scopri-teramo_12,
.articoliWorks .galleriaWorks img.scopri-teramo_13 {
  position: relative;
  float: left;
  width: 47.5%;
  margin: 2.5% 0px;
}

.articoliWorks .galleriaWorks img.scopri-teramo_11,
.articoliWorks .galleriaWorks img.scopri-teramo_13 {
  float: right;
}

/*
.product-design .galleriaWorks img {
  position: relative;
  float: left;
  width: 100%;
  margin: 2.5% 0%;
}

.product-design .galleriaWorks .imageListContainer {
  position: relative;
  float: left;
  width: 20%;
  margin: 2.5%;
} 
*/

.lookbook,
.posters,
.productDesign {
  /* margin-top: -5%; */
  margin-top: 5%;
}

.lookbook .imageListContainer,
.posters .imageListContainer,
.productDesign .imageListContainer{
  position: relative;
  float: left;
  width: 20vw;
  margin: 0vw 2.1vw 0vw 2.5vw;
}

.posters .imageListContainer {
  margin: 0vw 2.1vw 2.5vw 2.5vw;
}

.lookbook .imageListContainer img,
.posters .imageListContainer img,
.productDesign .imageListContainer img {
  width: 100%;
}

img.speciali {
  position: relative;
  float: left;
  width: 100%;
  margin: 0px 0px 10% 0px;
}

/* ------------------------------------------- WRITINGS */
.gifHeader {
  position: relative;
  float: right;
  width: 35%;
}

#article .writings p {
  padding: 0px !important;
}

.readMoreWritings .bt-cs a.prev,
.readMoreWritings .bt-cs a.next {
  background: none !important;
  color: #f30d63 !important;
  font-family: realcism-regular !important;
  font-size: 30px !important;
  text-indent: 0px !important;
  text-decoration: none;
  top: 47% !important;
  display: block !important;
}

/* ------------------------------------------- ABOUT */
.page-about div[itemprop="articleBody"] {
  
}

.page-about {
  margin-top: 10vh;
}

.page-about .speak {
  font-family: realcism-regular !important;
  color: #fd53fc !important;
}

.custom-about p {
  height: 0px;
  margin: 0px;
  padding: 0px;
  line-height: 0px;
}

#bg-about {
  position: fixed;
  width: 90vw;
  height: 100vh;
  margin: 0px 5vw;
  z-index: -1;
  background-image: url('../../../images/users/elementi_sito/bg-wall.png');
  background-size: contain;
  background-position: top left;
}

/* ------------------------------------------- PAGINAZIONE */
.blog .pagination {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

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

.pagination ul {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

.pagination ul li {
  display: inline;
  list-style: none;
  margin: 0px 1% 0px 1%;
}

/* ------------------------------------------- CONDIVISIONE SOCIAL */
.bt-social-share {
  border: 0px;
  background-color: transparent;
}

/* ------------------------------------------- YOUTUBE VIDEO, INSTAGRAM */
.moduletable-ytvideo,
.moduletable-instagram {
  position: relative;
  float: left;
  width: 90vw;
  margin: 5vh 5vw;
}

.moduletable-ytvideo h3,
.moduletable-instagram h3 {
  font-family: realcism-montserrat-lightItalic;
  font-size: 3vw;
  text-align: right;
  text-transform: lowercase;
  text-decoration: underline;
  margin-right: 1.5%;
}

.titleH3 {
  position: relative;
  float: left;
  width: 98%;
  font-family: realcism-montserrat-lightItalic;
  font-size: 1.7vw;
  text-align: right !important;
}

.yt-video {
  position: relative;
  float: left;
  width: 30.3%;
  height: 300px;
  margin: 5% 1.5%;
}

.moduletable-ytvideo p a {
  font-family: realcism-montserrat-lightItalic;
  text-align: left;
}

.instagram_item {
  width: 23% !important;
  padding: 1% !important;
}

.instagram_item a {
  line-height: 0px !important;;
}