/* ============================================= */
/* project.css                                    */
/* Stili specifici del progetto.                  */
/* Questo file NON va nello starter —             */
/* viene creato da zero per ogni sito.            */
/* ============================================= */


/* ============================================= */
/* Colori extra                                   */
/* Aggiungere qui eventuali varianti colore       */
/* specifiche del progetto.                       */
/* ============================================= */

/* :root {
  --color-accent: oklch(...);
} */


/* ============================================= */
/* Sfondi sezioni con immagini                    */
/* Sostituire i percorsi con quelli reali.        */
/* ============================================= */

/* .bg-section-cta {
  background-color: var(--color-black);
  background-image: url("img/bg-section-cta.jpg");
} */

/* .bg-section-map {
  background-image: url("img/bg-section-map.jpg");
  height: 50vh;
} */

/* .bg-section-footer {
  background-image: url("img/bg-section-footer.jpg");
} */


/* ============================================= */
/* Voce CTA menu                                  */
/* Aggiungere la classe "menu-item-cta" al        */
/* menu item da WP Admin > Aspetto > Menu >       */
/* CSS Classes (opzione avanzata).                */
/* Per stili mobile specifici del progetto:       */
/* ============================================= */

/* .nav li.menu-item-cta a {
  color: var(--color-primary);
} */


/* ============================================= */
/* Header spacing specifico                       */
/* ============================================= */

/* #descrizione .content { padding: 80px 0 20px; }

@media only screen and (min-width: 640px) {
  #descrizione .content { padding: 100px 0 30px; }
}

@media only screen and (min-width: 1280px) {
  #descrizione .content { padding: 120px 0 40px; }
} */

/* ============================================= */
/* Book widget (floating booking bar desktop)     */
/* ============================================= */

/* #book {
  display: none;
}

@media only screen and (min-width: 1280px) {
  #book {
    display: block;
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 490px;
    margin: 0 auto;
    z-index: 1499;
  }
}

#book form {
  background: var(--color-white);
  box-shadow: 0 10px 20px 0 var(--color-black-shadow-25);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}

#book input {
  width: 314px;
  height: 60px;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-family-body);
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}

#book input.send {
  width: 157px;
  color: var(--color-black);
  background: var(--color-primary);
  cursor: pointer;
  border-left: 1px solid var(--color-white-900);
  position: relative;
  display: inline-block;
}

#book input.send:hover {
  color: var(--color-white);
  background: var(--color-primary-750);
} */


/* ============================================= */
/* Mobile bottom bar                              */
/* ============================================= */

/* #mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 33333;
  background: var(--color-primary-750);
  text-align: center;
  text-transform: uppercase;
  display: flex;
  box-shadow: 0 -5px 10px 1px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 1280px) {
  #mobile-bottom-bar { display: none; }
}

#mobile-bottom-bar a {
  color: var(--color-black);
  font-size: 24px;
  width: calc(100% / 3);
  padding: 9px;
}

#mobile-bottom-bar a:first-child { background: var(--color-primary); }

#mobile-bottom-bar a:last-child {
  color: var(--color-white);
  background: var(--color-black);
}

.menu-label {
  font-size: 18px;
  padding: 9px 0 0;
  display: block;
} */
