@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}

h1,
h2 {
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: 6vw;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 1rem;
  font-weight: 400;
}

a,
p {
  font-size: 14px;
}

p {
  padding: 10px 0;
}

img {
  max-width: 100%;
  height: auto;
}

.something {
  font-family: "Inter", sans-serif;
  text-align: center;
  width: 100%;
}

.something span {
  font-weight: lighter;
}

/* stato iniziale pagina appena caricata */
.page-transition {
  opacity: 0;
  transition: opacity .4s ease;
}

/* quando attiva = visibile */
.page-transition.active-pg {
  opacity: 1;
}


/* header */
header {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px 25px 50px;
  justify-content: space-between;
  z-index: 9999999999999999;
  align-items: center;
  background: #000;
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.header-logo, .header-content {
    flex: 100%;
}

.header-content {
    display: flex;
      align-items: center;
      justify-content: space-between;
}

.menu-links {
  text-transform: uppercase;
  display: block;
  width: 70px;
  text-align: center;
}

.collaboriamo {
  width: 100%;
  text-align: right;
}

/* hero */
.hero-bg {
  z-index: -9;
  position: absolute;
  height: 100vh;
  width: 100%;
}

.hero-bg-img {
  opacity: 0.3;
}

.hero-content {
  height: 100vh;
}

.hero-logo {
  max-width: 20vw;
}

.hero-text {
  padding-top: 20vh;
  padding-bottom: 5vh;
  text-align: justify;
}

/* popup about */
.popup {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup .popuptext {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popuptext {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  overflow: hidden;
}

.popuptext.show {
  display: block;
}

.popup-header {
  position: relative;
  padding: 10px 20px;
  text-align: right;
}

.close {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.about-content {
  padding: 25px 25%;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}

.about-content p {
  color: #fff;
  margin: 0 auto 1em;
}

/* articoli, archive */
.main {
  background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url('/wp-content/themes/something/media/bg.gif');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.description {
  padding: 0 25px;
}

.wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100%;
}

.carousel.no-loop .wrapper {
    display: flex;
    gap: 20px;
    justify-content: center; /* o space-between */
}


.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10vh;
  height: 100%;
}

.box {
  padding: 0 10px;
}

.box h3 {
    font-weight: 700;
}

.box-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 45vh;
  width: 35vh;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.5s linear;
}

.show-overflow {
  overflow: visible;
}

.active {
  z-index: 9999;
}

.active .box-bg {
  height: 55vh;
  transition: height 0.5s linear;
  background-color: #a5a5a5;
}

/* contatti */
.contatti {
  height: 100vh;
  display: flex;
  align-items: end;
  background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url('/wp-content/themes/something/media/bg.gif');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contatti h2 {
  margin-top: 20px;
  text-align: right;
}

.instagram {
  text-align: right;
  display: block;
}

.instagram,
.email {
  font-weight: 400;
  font-size: 1.2rem;
}

.email-social {
    position: absolute;
    top: 35%;
    width: calc(100% - 50px);
}

/* articolo */

.main-article {
  padding-top: 120px;
}

.main-article h1 {
  text-align: right;
  line-height: 100%;
  font-size: 3rem;
}

.main-article h2 {
  text-align: right;
  line-height: 100%;
  font-weight: 200;
  font-size: 1.8rem;
  text-transform: none;
}

.main-article h3 {
  text-align: right;
  line-height: 100%;
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  padding: 30px 0;
}

.main-article .col-main-img {
  margin-left: -50px;
}

.main-article .col-main {
  padding: 25px;
}

.content * {
    text-align: left;
}

.content h2 {
    padding-top: 35px;
    text-align: left;
}

.main-article .row-gallery {
  margin: 0 -25px;
  padding: 0;
}

.main-article .img-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.main-article .img-pair img {
  max-width: 400px;
  width: 50vh;
  padding: 25px 0;
}

.main-article .main-info {
  text-align: right;
  padding: 0 0 60px;
  font-size: 0.8rem;
}

.grid-collection {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
}

.grid-collection img {
  height: auto;
  flex: 1;
  min-width: calc(100% / 3);
  border: 0;
  object-fit: cover;
}


/* footer */
.policy {
    text-align:center;
    width:100%;
}

.footer{
    padding-top:50px;
}

.footer img {
  opacity: 0.3;
}

.description-mobile {
    display:none;
}

.ed-h1 {
    font-size: 9rem !important;
}

@media only screen and (max-width: 700px) {
  .hero-content .align-items-center .col-2 {
      display: none;
  }
  
  .hero-content .align-items-center .col-8 {
      flex:100%;
      max-width: 100%;
  }
  
  .hero-logo {
      max-width: 100%;
  }
  
  .about-content {
      padding: 25px 5% 60px;
  }
  
  .description-mobile {
      display:block;
      padding:120px 5% 0;
  }
  
  .description {
      display:none;
  }
  
  .carousel {
      padding-top:0;
  }
  
  .box-bg {
      width: 20vh;
      height: 30vh;
  }
    
    .active .box-bg {
        height: 35vh;
    }
    
    .instagram,
.email {
  font-size: 1rem;
}

.col-mob {
    flex: 100%;
    text-align: center;
    margin: 0 auto;
}

.col-mob h1,
.col-mob h2 {
    text-align:left;
}

.email-social {
    top: 25%;
}

.main-article .col-main-img {
    margin-left:0;
}

.main-article .col-main {
    padding: 25px 0;
}

.ed-h1 {
    font-size:7rem !important;
}

.hero-bg-img-left, .hero-bg-img-center {
    display:none;
}

.hero-bg-img-right {
    flex: 100%;
  max-width: 100%;
}
}
