
/* .roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */

/* // <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

  
  body {
    font-family: "Montserrat", "Raleway", "Roboto", sans-serif;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e0c49a;
  --secondary-color: red;
  --bs-carousel-control-color: black !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.rounded{
  border-radius: 0.75rem !important;
}

#menu{
  color: white;
  transition: color 0.3s ease;
}


#menu > li {
 display: flex;
 flex-direction: column;
 justify-content: center;
}

#menu > li > a{
 margin-bottom:0px;
}

#menu > li > a:hover{
  transition: 0.4s;
  color: var(--secondary-color) !important;
}

/* body { */
  /* font-family: Arial, sans-serif; */
/* } */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 100px;
  z-index: 1001;
  height: 10vh !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-servizi {
  background-color: white;
}

.header-servizi nav a {
  color: black;
  transition: color 0.3s ease;
}

header.scrolled {
  background-color: white;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

header.scrolled nav a {
  color: black;
  transition: color 0.3s ease;
}

.logo {
  font-weight: bold;
  font-size: 1.5em;
  color: #333;
  width: 25%;
}

.logo-img{
		width:25%;
	}

  .prenota-ora {
    margin-left: 1rem;           /* ms-3 */
    font-size: 1.25rem;          /* h5 */
    padding: 0.75rem 1.5rem;     /* py-3 px-4 */
    border-radius: 50rem;        /* rounded-pill */
    color: #fff !important;                 /* text-white */
    background-color: #e0c49a;
  }

.content{
	padding: 0;
  padding-top:0vh;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom:0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hamburger menu base */
.hamburger-container{
  display: none;
}


.hamburger {
  display: none;
  width: 30px;
  height: 21px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* Toggle animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  transition: transform 0.3s ease ;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  transition: transform 0.3s ease ;
}

.immagine-chi-siamo {
  width: 75%;
  height: 0;
  padding-bottom: 50%;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

.immagine-servizio {
  width: 25%;
  height: 0;
  padding-bottom: 15%;
  box-shadow: none;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

.benvenuto-animato {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.benvenuto-animato.show {
  opacity: 1;
  transform: translateY(0);
  transition: display 0.3s ease ;
}


.card-animata {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.card-animata.slide-in-left {
  transform: translateY(-100px);
}

.card-animata.show {
  opacity: 1;
  transform: translateY(0);
}

.container-servizi{
  margin-top: -55vh;
  width:100%;
}
.container-servizi-dettaglio{
  margin-top: -55vh;
  width:100%;

}
.card-container-servizio{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}



.card-servizio {
  width: 25%;
  border-radius: 0.75rem !important;/* Valore tipico per 'rounded' in Bootstrap 5 (potrebbe variare leggermente) */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Valore tipico per 'shadow' in Bootstrap 5 */
  background-color: #fff; /* O background: white; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 1rem; /* Valore tipico per 'p-3' in Bootstrap 5 */
}

.container-altri-servizi{
  width: 100%;
  padding-left: 3rem;   /* Valore tipico per 'px-5' in Bootstrap 5 */
  padding-right: 3rem;  /* Valore tipico per 'px-5' in Bootstrap 5 */
  gap: 3rem;            /* Valore tipico per 'gap-5' in Bootstrap 5 */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

.card-altri-servizi{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem; /* Valore tipico per 'gap-2' in Bootstrap 5 */
  width: 20%;
}

.container-listini {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1.5rem; /* Valore tipico per 'p-4' in Bootstrap 5 */
  gap: 1.5rem;   /* Valore tipico per 'gap-4' in Bootstrap 5 */
}

.listini{
    width: 50%;;
  }

    .header-listini{
    font-size: 1rem !important;
  }


.banner-container {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1000;
  left: 15%;
  top: 38%;
  width: 70%;
}

.home-prenota-button {
  background-color: #e0c49a;
  color: white;
  border-radius: 50rem; /* equivale a rounded-pill */
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); /* shadow di Bootstrap */
  font-size: 1.25rem; /* btn-lg */
  padding: 0.75rem 1.5rem; 
  width: 30%; 
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.chisiamo-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10vh;
  margin-bottom: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem; /* gap-3 */
}

.chisiamo-container > div{
  width:50%;
}

.not-show-lg{
    display: none !important;
  }

.container-contatti { 
    width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 3rem; /* Or whatever value corresponds to Bootstrap's mt-5 in your project, often 48px if 1rem = 16px */
}

.container-contatti > div {
  width:25%;
}

 #carosello-immagini {
     display: none;
 }
/* Responsive nav */

@media (max-width: 1500px) {
.container-servizi{
  margin-top: -35vh;
}
.container-servizi-dettaglio{
  margin-top: -25vh;
  width:100%;

}

}

@media (max-width: 1024px) {
 #carosello-immagini {
     display: inline-block;
 }

	header {
	  padding: 15px 30px;
	}
  #menu{
  color: black;
  transition: color 0.3s ease;
}
	
	.logo-img{
		width:50%;
	}
	.prenota-ora {
    margin-left: 0rem;     
  }
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
    padding: 20px 0 30px 0;
    display: none;
    transition: display 0.3s ease-in-out;
    margin-top: 10px;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
  }

  nav ul.show {
    display: flex;
    transition: display 0.3s ease ;
  }
  .hamburger-container{
    width: 75%;
    display: flex;
    justify-content: end;
  }

  .hamburger {
    display: flex;
  }

  .card-container-servizio{
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;    /* py-3 → 1rem sopra */
    padding-bottom: 1rem; /* py-3 → 1rem sotto */
    padding-left: 1.5rem;   /* px-5 → 3rem a sinistra */
    padding-right: 1.5rem;  /* px-5 → 3rem a destra */
    flex-direction: column;
  }

.container-servizi{
  padding-top:5vh;
  margin-top:10vh;
  background-color: #e0c49a;
}

  .card-servizio {
  width: 100%;
  }

  .immagine-servizio {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    box-shadow: none;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
  }

  .container-altri-servizi{
    flex-direction: column;
  }

  .card-altri-servizi{
    width:75%;
    margin:auto;
  }

  .container-listini {
  flex-direction: column;
  }

  .listini{
    width: 100%;
    font-size: 0.6rem !important;
  }

  .header-listini{
    font-size: 0.6rem !important;
  }

  .banner-container {
    left: 7%;
    width: 86%;
}
.home-prenota-button{
  width:75%
}

.chisiamo-container {
  width: 85%;
  margin-top: 5vh;
  margin-bottom: 4vh;
  flex-direction: column;
  text-align: center;
}

.chisiamo-container > div{
  width:100%;
  gap: 0.5rem !important;
}

.immagine-chi-siamo {
  width: 100%;
  padding-bottom: 55%;
}

  .not-show-sm{
    display: none !important;
  }

.not-show-lg{
    display: block !important;
  }


  .card-animata {
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  }
  
  .card-animata.slide-in-left {
    transform: translateY(-10px);
  }
  
  .card-animata.show {
    opacity: 1;
    transform: translateY(0);
  }

.container-contatti { 
    flex-direction: column;
    gap:3rem;
}

.container-contatti > div {
  width:50%;
  margin: auto;
}

.container-servizi-dettaglio{
  margin-top: 7vh;
  padding-top: 7vh;
  width:100%;
  background-color: #e0c49a;
}

}


@media (max-width: 767px) {
 #carosello-immagini {
     display: inline-block;
 }

	header {
	  padding: 15px 30px;
	}
  #menu{
  color: black;
  transition: color 0.3s ease;
}
	
	.logo-img{
		width:100%;
	}
	.prenota-ora {
    margin-left: 0rem;     
  }
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
    padding: 20px 0 30px 0;
    display: none;
    transition: display 0.3s ease-in-out;
    margin-top: 10px;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
  }

  nav ul.show {
    display: flex;
    transition: display 0.3s ease ;
  }
  .hamburger-container{
    width: 75%;
    display: flex;
    justify-content: end;
  }

  .hamburger {
    display: flex;
  }

  .card-container-servizio{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;    /* py-3 → 1rem sopra */
    padding-bottom: 1rem; /* py-3 → 1rem sotto */
    padding-left: 1.5rem;   /* px-5 → 3rem a sinistra */
    padding-right: 1.5rem;  /* px-5 → 3rem a destra */
    flex-direction: column;
  }

.container-servizi{
  padding-top:12vh;
  margin-top:-5vh;
  background-color: #e0c49a;
}

.container-servizi-dettaglio{
  padding-top:5vh;
  margin-top:10vh;
  background-color: #e0c49a;
}

  .card-servizio {
  width: 100%;
  }

  .immagine-servizio {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    box-shadow: none;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
  }

  .container-altri-servizi{
    flex-direction: column;
  }

  .card-altri-servizi{
    width:75%;
    margin:auto;
  }

  .container-listini {
  flex-direction: column;
  }

  .listini{
    width: 100%;
    font-size: 0.6rem !important;
  }

  .header-listini{
    font-size: 0.6rem !important;
  }

  .banner-container {
    left: 7%;
    width: 86%;
}
.home-prenota-button{
  width:75%
}

.chisiamo-container {
  width: 85%;
  margin-top: 5vh;
  margin-bottom: 4vh;
  flex-direction: column;
  text-align: center;
}

.chisiamo-container > div{
  width:100%;
  gap: 0.5rem !important;
}

.immagine-chi-siamo {
  width: 100%;
  padding-bottom: 55%;
}

  .not-show-sm{
    display: none !important;
  }

.not-show-lg{
    display: block !important;
  }


  .card-animata {
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  }
  
  .card-animata.slide-in-left {
    transform: translateY(-10px);
  }
  
  .card-animata.show {
    opacity: 1;
    transform: translateY(0);
  }

.container-contatti { 
    flex-direction: column;
    gap:3rem;
}

.container-contatti > div {
  width:100%;
  margin-left: 0;
}

}

.content p {
  max-width: 700px;
  line-height: 1.6;
}
