/* google font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

/* button large generico */


  /* STILE PULSANTE ISOLATO (senza influenzare altri elementi) */
  .chalet-btn {
    border-radius: 5px;
    background-color: #4F2C1D;
    opacity: 0.8;
    border: none;
    color: rgb(219,219,219);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    width: auto;
    transition: all 0.5s;
    cursor: pointer;
    margin: auto;
  }

  .chalet-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }

  .chalet-btn span:after{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .chalet-btn:hover span {
    padding-right: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

 
  .chalet-btn:hover span:after {
    opacity: 1;
    right: 0;
}

  /* Titoli e sottotitoli*/
  .times-new-roman {
	font-family: "Times New Roman", Times, serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Ombra leggera */
  }
  
  .pre-title {
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
	  color: rgb(209, 209, 209);
  }
  
  .grey-title{
	font-size: 46px;
    text-align: center;
	color:rgb(119, 119, 119);
  }

  .grey-subtitle{
	font-size: 18px;
    text-align: center;
	text-transform: uppercase;
  color:rgb(119, 119, 119);
  }

  .brown-title{
    font-size: 46px;
    text-align: center;
    color:rgba(79, 44, 29, 0.8);
  }
  .brown-subtitle{
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color:rgba(79, 44, 29, 0.8);
  }

  /* Override per smartphone (max-width: 767px) */
  @media (max-width: 767px) {
    .pre-title,
    .grey-title,
    .grey-subtitle {
      color: rgb(100, 100, 100); /* Grigio scuro su mobile */
    }
    .pre-title{
      font-size: 18px;
    }
  }
