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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background:black;
}


/* CONTENITORE PRINCIPALE */
.contenitore {
  max-width: 2560px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}



/* CONTENUTO */
.contenuto {
  flex: 1;
  position: relative;
}

/* SEZIONI */
.sezione {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
}

.sezione {
  opacity: 0;
  pointer-events: none;
  }



.sezione.attiva {
  display: flex;
  position: absolute;
  opacity: 1;
  pointer-events: auto;
}







/* ---------------------------------
Barra di Navigazione
--------------------------------------- */
.barra-navigazione {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.tab {
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.7);
  transition: 0.3s;
}

.tab:hover {
  color: white;
}

.tab.attivo {
  color: #f5a3b7; /* rosa soft */
}

.accento {
  color: #f5a3b7;
  FONT-WEIGHT:600;
}


.menu {
  display: flex;
  gap: 60px;
}

.hamburger {
  display: none;
}

.hamburger span {
  width: 35px;
  height: 4px;
  background: #f4a3b7;
  display: block;
}



/* ------------- Barra Navigazione Mobile ------------------ */

@media (max-width: 768px) {


  .barra-navigazione {
      padding:0;
  }
  

  /* mostra hamburger */
  .hamburger {
    display: flex;
    position: absolute;
    flex-direction: column;
    right: 20px;
    top:20px;
    z-index: 20;
    gap:6px;
    
  }

  /* NASCONDI MENU DI DEFAULT */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  /* QUANDO APERTO */
  .menu.aperto {
    opacity: 1;
    pointer-events: auto;
  }

  .tab {
    font-size: 20px;
    letter-spacing: 6px;
  }
}



/* ---------------------------------------
Sezione Iniziale
------------------------------------------ */


.home {
  position: relative;
  background-color: black;
  overflow: hidden;
  min-height:650px;
}


.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/immagini/sfondo-home.png") center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}





.contenuto-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 2;
  text-align: center;
}


.logo-selene {
  width: 420px;
  max-width: 85%;
}

/* -------- PIATTAFORME ----------- */

.piattaforme {
  display: flex;
  align-items: center; /* CENTRA VERTICALMENTE */
  justify-content: center;
  gap: 45px;
}

.piattaforme img {
  display: block;
  opacity: 0.8;
  transition: 0.3s;
}

.piattaforme img:hover {
  opacity: 1;
  transform: scale(1.05);
}


.piattaforme a:nth-child(1) img {
  width:150px;
}

.piattaforme a:nth-child(2) img {
  width:150px;
}


.piattaforme a:nth-child(3) img {
  width:150px;
}





/* --------- SOCIAL -------------- */
.social {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

.social a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.social a:hover {
  opacity: 1;
}

.social {
  gap: 30px;
}


.social img {
  height: 28px;
  opacity: 0.7;
  transition: 0.3s;
}

.social img:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* ASTERISCO SNAP E TELEGRAM */
.social a:nth-child(4)::after,
.social a:nth-child(5)::after {
  content: "*";
  font-size: 20px;
  position: absolute;
  top: -5px;
  margin-left:10px;
}


.asterisco {
  position: relative;
}

.asterisco::after {
  content: "*";
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 120px;
  color: white;
}

/* ---------- Crediti ------------- */
.footer-home {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  max-width:450px;
  font-size: 10px;
  line-height: 1.25;
  color: rgba(255,255,255,0.7);
  text-align: right;
  font-weight:200;

}

.footer-home a {
    text-decoration:none;
}

.footer-home b {
  color: rgba(255,255,255,0.9);
  font-weight:500;
}

.footer-home a {
  color:white;
    font-weight:500;
}

.footer-home a:nth-of-type(1) {
  color: #ffb4c8;
}





/* ---------- Iniziale MOBILE --------------- */
@media (max-width: 768px) {

  .logo-selene {
    width: 200px;
  }

  .piattaforme {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-home {
    font-size: 9px;
    max-width: 90%;
  }

}





/* ---------------------------------------
Sezione Vita
------------------------------------------ */

.about {
  width: 100%;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  position: relative; 
  overflow: hidden;  
}


.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/immagini/bio.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 0;
}


.testo-vita {
  position: relative;
  z-index: 1; 
  width: 60%;
  max-width: 800px;
  padding: 80px 40px;
  text-align: left;
}

.testo-vita h2 {
  color:#ffb4c8;
  font-size:18px;
  font-weight:600;
  margin-bottom:20px;
}

.testo-vita p {
  color:#c7c7c7;
  font-size:13px;
  font-weight:100;
  line-height:17px;
}

.testo-vita p b {
  color:white;
  font-weight:500;
}






/* ------------ Sezione Vita Mobile ---------------- */

@media (max-width: 760px) {

  .about {
    align-items: flex-start;
    overflow:scroll;
  }

  .about::before {
    opacity:0;
  }

  .testo-vita {
    width: 100%;
    padding: 60px 20px;
  }
}





/* ---------------------------------------
Sezione dello Streaming
------------------------------------------ */

.stream {
  width: 100%;
  height: 100vh;
  background: url('assets/immagini/trasmissione.jpg') center/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}


.stream::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* 👈 QUI controlli l'opacità */
  z-index: -1;
}

.contenitore-stream {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  background:gree;
  margin-top:53px;
}

.contenitore-stream iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 5px solid #ffb4c8;
  border-radius: 12px;
  opacity:.9;

}


.testo-stream {
  display: flex;
  gap:20px; 
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
  color: white;
  margin-top:10px;
}

.regole,.orari {
  flex:1;
  background:blu;
}


.testo-stream h2 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight:500;
  color:#ffb4c8;
}


.testo-stream ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.testo-stream li {
  color:white;
  font-size:13px;
  font-weight:500;
  line-height:17px;
}


.testo-stream p {

  color:#c7c7c7;
  font-size:13px;
  font-weight:100;
  line-height:17px;
}

.testo-stream p b {
  color:white;
  font-weight:500;
}


.seguimi {

    font-size:14px;
  line-height:12px;
    color:white;
    font-weight:600;
}



/* ------------- Streaming Mobile ------------------ */

@media (max-width: 768px) {

.contenitore-stream iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 5px solid #ffb4c8;
  border-radius: 12px;
  opacity:.9;

}
  
}









/* ---------------------------------------
Sezione del Blog
------------------------------------------ */

.blog {
background-color:black;
}

.iframe-blog {
  width: 100%;
  height: 100%;
  border: none;
}



/* ---------------------------------------
Sezione dei Contributi
------------------------------------------ */


.tribute {

  background-color: black;
  overflow: hidden;
}


.tribute::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/immagini/contributi.jpg") center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}


.contenitore-tribute {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center; /* centro verticale */
  align-items: flex-end;
  padding-right: 7%;
  z-index: 1;
  width: 100%;
  height: 100%;
  gap:3%;
}

/* BLOCCO GENERICO */
.blocco {
  display: flex;
  justify-content: space-between;
  max-width: 530px;
}

.blocco h2 {
  color: #ffb4c8;
  font-size: 20px;
  margin-bottom: 10px;
}

.blocco p {
  color:#c7c7c7;
  font-size:13px;
  font-weight:100;
  line-height:17px;
}





/* TESTO ALTO */
.blocco-testo-alto {
  display: flex;
  background:re;
  flex-direction: column;
  margin-top:30px;
}




/* METODI */
.blocco-metodi {
  display: flex;
  gap: 2%;
  background:blu;
}

.metodo {
  text-align: center;
  background:yello;
  margin-bottom:10px;
  width:32%;
}

.metodo img {
  height: 45px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: 0.3s;
}

.metodo img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.metodo p {
  font-size: 12px;
}






/* TESTO BASSO */
.blocco-testo-basso {
  display: flex;
  text-align:right;
  background:gree;
  flex-direction: column;
}

.blocco-testo-basso h2 {
  text-decoration:underline;
}










/* SINISTRA */
.blocco-sinistra {
 position:relative;
 display: flex;
 align-self: flex-start;
 text-align:center;
 background:viole;
 flex-direction: column;
 margin-left: 25%;
}

.blocco-sinistra .titolo-tip {
  font-size: 18px;
  font-weight:500;
  margin-bottom: 15px;
  color:white;
}

.piattaforme-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:30px;
  }

.piattaforme-tip img {
width:140px;
  opacity: 0.8;
  transition: 0.3s;
}

.piattaforme-tip img:hover {
  opacity: 1;
  transform: scale(1.05);
}



/* ------------- Contributi Mobile ------------------ */

@media (max-width: 768px) {

  .tribute::before {
    background-position: 20% center;
    opacity: 0.25;
  }

  .contenitore-tribute {
    align-items: center;   
    padding-right: 0;
  }

  .blocco {
    width: 100%;
    margin: 0 auto; /* 👉 QUESTO è il centraggio */
    padding: 0 16px; /* 👉 spazio interno */
    box-sizing: border-box; /* 👉 fondamentale */
  }

   .metodo p {
     display:none;
   }

  .blocco-testo-basso {
    margin-top:-4%;
  }

  .blocco-testo-basso br {
    display:none;
  }

  .blocco-sinistra {
    align-self: center; 
    margin-left:0;
    margin-top:5%;
  }
  
  
}

















