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

	body {
	  font-family: 'Open Sans', sans-serif;
	  line-height: 1.6;
	  background-color: #fff;
	  color: #2f495e;
	}

	.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 38px;
  padding-right: 38px;
  box-sizing: border-box;
}
	.site-header {
	   height: 80px;
  	display: flex;
  	align-items: center;
  	background-color: #fff;
  	border-bottom: 1px solid #e6e6e6;
 	 font-family: 'Poppins', sans-serif;
	  position: sticky;
 	 top: 0;
 	 z-index: 999;
 	 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	}
	.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 38px;
  padding-right: 38px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}	
	.logo-area {
  display: flex;
  align-items: center;
  height: 100%;
}
	.logo {
  height: 48px;
  display: block;
  object-fit: contain;
}
	.site-name {
	  font-weight: 600;
	  letter-spacing: 0.1em;
	  color: #2f495e;
	  font-size: 1rem;
	}
	.main-nav ul {
	  display: flex;
	  gap: 30px;
	 list-style: none;
	}
	.main-nav a {
  text-decoration: none;
  color: #2f495e;
  font-weight: 500;
  font-size: 0.85rem; 
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  padding: 8px 0;
}
	.main-nav a:hover {
  color: #c2a562;
  font-weight: 600;
}
	.main-nav a.active {
  color: #c2a562;
  font-weight: 600;
}

.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 10px 0;
  min-width: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  border-radius: 6px;
  text-align: center;
}

.has-dropdown:hover .dropdown {
  display: block;
}


.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #2f495e;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown li a:hover {
  background-color: #f4f0ea;
  color: #c5a25f;
}

	.cta-button {
	  display: inline-block;
	  padding: 12px 25px;
	  border: 1px solid #c2a562;
	  background-color: #c2a562;
	  color: white;
	  text-transform: uppercase;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 300;
	  font-size: 0.85rem;
	  letter-spacing: 0.1em;
	  text-decoration: none;

	}

	.cta-button:hover {
	  background-color: #a88e4c;
	}


	/* CTA mobile: inizialmente nascosta */

	.cta-mobile {
	  display: none; /* sarà attivato da media query */
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  background-color: #c2a562;
	  color: white;
	  text-align: center;
	  padding: 15px 0;
	  font-weight: 600;
	  font-size: 0.9rem;
	  text-transform: uppercase;
	  text-decoration: none;
	  z-index: 1000;
	}


	/* Bottone hamburger */

	.menu-toggle {
	  display: none;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  gap: 5px;
	  width: 40px;
	  height: 40px;
	  background: none;
	  border: none;
	  cursor: pointer;
	  padding: 0;
	  z-index: 1001;
	}
	.menu-toggle .bar {
	  display: block;
	  width: 24px;
	  height: 2px;
	  background-color: #37566b;
	  border-radius: 1px;
	  transition: all 0.3s ease;
	}
	.hero {
	  background-color: #f1e4cc;
	  padding: 100px 20px;
	  text-align: center;
	}
	.hero-heading {
	  font-family: 'Cormorant Infant', serif;
	  font-size: 2.2em;
	  line-height: 1.5;
	  color: #37566b;
	  margin-bottom: 40px;
	}
	.hero-author {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 300;
	  font-size: 0.95em;
	  letter-spacing: 0.08em;
	  color: #7a5f2a;
	  text-transform: uppercase;
	}


.highlighted-wrapper {
  text-align: center;
}

.highlighted-badge {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  background-color: #2f495e;
  color: #fdfaf7;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 2.0rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  display: inline-block;
  margin-bottom: 30px;
}

	  background-color: #fff;
	  padding: 100px 20px;
	}

	/* Header ampio sopra le colonne */

	.about-header {
	  max-width: 1200px; /* come .container */
	  margin: 0 auto 80px auto;
	  padding: 0 20px;
	  text-align: left;
	}
	.about-wrapper {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: space-between;
	  gap: 40px;
	}

	/* Griglia testi + immagine */

	.about-body {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0 20px;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: space-between;
	  gap: 60px;
	}
	.about-bio {
	  padding-bottom: 80px;
	}
	.about-text {
	   flex: 1;
	  display: flex;
	  flex-direction: column;
	  justify-content: center; /* ✅ centra il contenuto rispetto all’immagine */
	  max-width: 600px;
	}
	.about-image {
	 flex: 1 1 300px;
	  text-align: center;
	}
	.about-image img {
	  max-width: 100%;
	  height: auto;
	}
	.section-label {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 300;
	  font-size: 0.8rem;
	  letter-spacing: 0.1em;
	  color: #d7c8ab;
	  margin-bottom: 10px;
	  text-transform: uppercase;
	  transition: color 0.3s ease;
	}
.home-page .section-label {
  padding-top: 60px !important;
}
	.about-title {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 100;
	  font-size: 4.25rem; /* ~111pt */
	  line-height: 1.1;
	  color: #c7a869;
	  margin-bottom: 30px;
	  transition: color 0.3s ease;
	}
	.about-subtitle {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 200;
	  font-size: 2.5rem; /* più piccolo di .about-title */
	  color: #d7c8ab;
	  margin-bottom: 40px;
	  line-height: 1.4;
	  transition: color 0.3s ease;
	  text-align: left;
	}
	.about-description {
	  font-family: 'Poppins', sans-serif !important;
		font-weight: 200;
	  font-size: 1rem;
	   margin-bottom: 40px;
	  line-height: 1.6;
	}
	.about-description strong {
	  font-weight: 600;
	}


	/* Stato statico di default: solo desktop */
	.about-description,
	.about-invito-desc {
	  color: #7a5f2a;
		font-weight: 200;
	  transition: color 0.3s ease;
	}
	.about-invito {
	  font-size: 1.5rem;
	  color: #c2a562;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 400;
	  margin-bottom: 10px;
	}
	.about-invito-desc {
	  font-size: 1rem;
	  font-family: 'Poppins', sans-serif;
	  margin-bottom: 30px;
	}
	.about-invito-desc em {
	  font-style: italic;
	}
	.about-invito-desc strong {
	  font-weight: 600;
	}

	.btn-outline {
	  display: inline-block;
	  padding: 14px 36px;
	  border: 1px solid #c2a562;
	  color: #c2a562;
	  text-transform: uppercase;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 500 !important;
	  font-size: 0.95rem;
	  letter-spacing: 0.15em;
	  text-decoration: none;
	  background-color: transparent;
	  transition: all 0.3s ease;
	  text-align: center;
	}

	.btn-outline:hover {
	  background-color: #c2a562;
	  color: white !important;
	  font-weight: 500;
	}

	
	/* -------------------------------------- */
	/* SERVIZI                                */
	/* -------------------------------------- */

	.services {
	  background-color: #f9f7f4;
	  padding: 100px 20px;
	}

	.services .section-label {
	  color: #d7c8ab;
	  text-align: center;
	  font-weight: 300;
	  letter-spacing: 0.1em;
	  text-transform: uppercase;
	  font-size: 0.8rem;
	  margin-bottom: 10px;
	}

	.services-title {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 100;
	  font-size: 4.25rem; /* ~111pt */
	  line-height: 1.2;
	  color: #c7a869;
	  margin-bottom: 60px;
	  transition: color 0.3s ease;
	  text-align: center;
	}


	.services-grid {
	  display: flex;
	  flex-direction: column;
	  gap: 60px;
	  padding-inline: clamp(20px, 5vw, 80px);
	}

	.service-item {
	  display: flex;
	  align-items: center; /* ✅ centratura verticale */
	  gap: 40px;
	}


	.service-item:hover h4 {
	  color: #c2a562;
	  transition: color 0.3s ease;
	}

.service-item .cta-wrapper {
  margin-top: 20px;
}


	.service-image img {
	  width: 100px;
	  height: auto;
	  flex-shrink: 0;
	  border-radius: 0;
	}


	.service-text h4 {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 200;
	  font-size: 2.2rem;
	  color: #37566b;
	  margin-bottom: 10px;
	  line-height: 1.3;
	  transition: color 0.3s ease;
	}


	.service-text p {
	  font-family: 'Poppins', sans-serif;
	  font-size: 1rem;
	  font-weight: 200;
	  line-height: 1.6;
	  color: #7a5f2a;
	  transition: color 0.3s ease;
	  margin: 0;
	}

.spacer-lg {
  height: 80px;
}

	/* -------------------------------------- */
	/* CHI SONO PAGE                             */
	/* -------------------------------------- */



	.chisono-section {
	  background-color: #ffffff;
	  padding: 100px 20px;
	}

	.chisono-title {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 100;
	  font-size: 3.5rem;
	  color: #c7a869;
	  text-align: center;
	  margin-bottom: 40px;
	}

	.chisono-intro {
	  font-family: 'Poppins', sans-serif;
	  font-size: 1.1rem;
	  color: #7a5f2a;
	  line-height: 1.7;
	  text-align: center;
	  max-width: 800px;
	  margin: 0 auto 60px auto;
	}

	.chisono-body {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0 20px;
	  display: flex;
	  flex-wrap: wrap;
	  gap: 60px;
	  align-items: flex-start;
	  justify-content: space-between;
	}

	.chisono-content {
	  flex: 1 1 600px;
	}

	.chisono-content h2 {
	  font-family: 'Poppins', sans-serif;
	  font-size: 2rem;
	  color: #37566b;
	  margin-bottom: 20px;
	}

	.chisono-content p {
	  font-family: 'Open Sans', sans-serif;
	  font-size: 1rem;
	  color: #2f495e;
	  line-height: 1.6;
	  margin-bottom: 20px;
	}

	.chisono-image {
	  flex: 1 1 400px;
	  text-align: center;
	}

	.chisono-image img {
	  max-width: 100%;
	  height: auto;
	  border-radius: 8px;
	}


	.about-intro {
	  text-align: center;
	  margin-bottom: 60px;
	  padding-top: 100px;
	}

	.about-intro .section-label {
	  color: #d7c8ab;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 300;
	  font-size: 0.8rem;
	  letter-spacing: 0.1em;
	  text-transform: uppercase;
	  margin-bottom: 10px;
	}

	.about-intro .about-title {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 100;
	  font-size: 4rem;
	  color: #c7a869;
	  line-height: 1.1;
	  margin-bottom: 20px;
	}

	.about-intro .about-subtitle {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 200;
	  font-size: 2rem;
	  color: #d7c8ab;
	  line-height: 1.4;
	  max-width: 900px;
	  margin: 0 auto;
	}

	.about-page .about-subtitle {
	  text-align: center;
	}
  

	/* -------------------------------------- */
	/* SERVIZI PAGE */
	/* -------------------------------------- */



	.servizi-page .services {
	  padding-top: 30px;
	}

	.servizi-section {
	  background-color: #fff;
	  padding: 100px 20px;
	}

	.servizi-section h1 {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 100;
	  font-size: 3rem;
	  color: #c7a869;
	  text-align: center;
	  margin-bottom: 40px;
	}

	.servizi-section p {
	  font-family: 'Open Sans', sans-serif;
	  font-size: 1.1rem;
	  color: #7a5f2a;
	  line-height: 1.7;
	  text-align: center;
	  max-width: 1000px;
	  margin: 0 auto 30px auto;
	}

	.servizi-list {
	  max-width: 1000px;
	  margin: 80px auto 0 auto;
	  padding: 0 20px;
	  display: flex;
	  flex-direction: column;
	  gap: 60px;
	}

	.servizio-item h2 {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 200;
	  font-size: 2rem;
	  color: #37566b;
	  margin-bottom: 15px;
	  text-align: center;
	}

	.servizio-item p {
	  font-family: 'Open Sans', sans-serif;
	  font-size: 1rem;
	  color: #2f495e;
	  line-height: 1.6;
	  text-align: center;
	  max-width: 700px;
	  margin: 0 auto;
	}

	/* SERVIZI – Sezione finale con sfondo bianco */
	.servizi-page .contact-cta {
	  background-color: #ffffff;
	}


	.servizi-page .about-intro.servizi-section {
	  padding-bottom: 30px;
	}

 .unico-page .about-intro.servizi-section,
.felicita-page .about-intro.servizi-section {
  padding-bottom: 16px;
  margin-bottom: 0px;
}

.unico-page .servizio-description-wrapper,
.felicita-page .servizio-description-wrapper {
  padding: 0 5px;
  text-align: center;
}


/* ===========================================================
   BIBLIOTECA – SEZIONE INTRO
   =========================================================== */

.biblioteca-page .library-intro {
  text-align: center;
  padding: 80px 20px 40px 20px;
  background-color: #fff;
}

.biblioteca-page .library-title {
 	  font-family: 'Poppins', sans-serif;
	  font-weight: 100 !important;
	  font-size: 4.25rem; /* ~111pt */
	  line-height: 1.1;
	  color: #c7a869;
	  margin-bottom: 30px;
	  transition: color 0.3s ease;
}

.biblioteca-page .library-subtitle {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200;
  font-size: 1rem;
  color: #2f495e;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================================================
   BIBLIOTECA – LAYOUT A COLONNE: TESTO + LIBRI SCROLLABILI
   =========================================================== */

.library-text-scroll {
  padding: 100px 0;
  background-color: #fff;
}

.library-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.library-description {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 200;
  font-size: 0.9rem;
  flex: 1 1 40%;
  position: sticky;
  top: 120px;
  color: #2f495e;
  line-height: 1.8;
}

.library-scroll {
  flex: 1 1 60%;
  height: 700px;
  overflow-y: scroll;
  padding-right: 10px;
  scroll-behavior: smooth;
  scrollbar-width: auto;
}

.library-scroll::-webkit-scrollbar {
  width: 10px;
}

.library-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.library-scroll::-webkit-scrollbar-thumb {
  background-color: #c2a562;
  border-radius: 6px;
}

.book-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.book-grid-fixed .book-item {
  text-align: center;
}

.book-grid-fixed .book-item img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.book-grid-fixed .book-item img:hover {
  transform: scale(1.05);
}

.book-grid-fixed .book-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #2f495e;
  margin-top: 10px;
}

.book-grid-fixed .book-author {
  display: block;
  font-size: 0.85rem;
  color: #7a5f2a;
  font-weight: 200;
}

.library-quote {
  text-align: left;
  font-style: italic;
  font-size: 1.4rem;
  color: #c2a562;
  margin: 40px 0;
}

/* Hero contatti Page */

.contact-hero {
  background-color: #fff;
  padding: 100px 20px 60px 20px;
  text-align: center;
}

.contact-hero .section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #d7c8ab;
  text-transform: uppercase;
  margin-bottom: 10px;
}



.contact-hero .contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 10px auto;
  color: #7a5f2a;
  transition: color 0.3s ease;
}

.contact-hero .contact-subtitle strong {
	  font-weight: 600;
	}


/* Sezione principale con due colonne */
.contact-main {
  background-color: #f9f7f4;
  padding: 100px 20px;
}

.contact-flex {
 display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
}

.contact-form h2,
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 2rem;
  color: #37566b;
  margin-bottom: 30px;
}


.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 0px;
  color: #2f495e;
}

.contact-form input,
.contact-form textarea {
 width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #2f495e;
  background-color: #fff;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #37566b;
  opacity: 0.6;
  font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c2a562;
  box-shadow: 0 0 0 2px rgba(194, 165, 98, 0.2);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form button {
  align-self: start;
  margin-top: 10px;
}


.contact-info p,
.contact-info a {
  font-family: 'Poppins', sans-serif;
	font-weight: 100;
  font-size: 1rem;
  color: #2f495e;
  line-height: 1.8;
  text-decoration: none;
}



.contact-info p {
  font-family: 'Poppins', sans-serif;
	font-weight: 100;
  font-size: 1rem;
  color: #2f495e;
  margin-bottom: 16px;
}

.contact-info a {
  color: #37566b;
  text-decoration: none;
}

.contact-info a:hover {
  color: #7a5f2a;
}

.contact-info {
  margin-top: 30px;
  display: inline-block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


	.testimonials {
	  background-color: #ffffff;
	  padding: 100px 20px;
	}
	.section-label.text-center {
	  text-align: center;
	}
	.section-label.text-center {
	  text-align: center;
	}
	.testimonials {
	  background-color: #ffffff;
	  padding: 100px 20px;
	}
	
	.testimonials-grid {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 40px;
	  max-width: 1200px;
	  margin: 0 auto;
	  padding-inline: clamp(20px, 5vw, 60px);
	}
	.testimonial-card {
	  background-color: #f8f8f8;
	  border: 1px solid #ced2d6;
	  border-radius: 4px;
	  padding: 40px 30px;
	  text-align: center;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}
	.testimonial-avatar {
	  width: 80px;
	  height: 80px;
	  margin-bottom: 20px;
	}
.testimonial-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%; /* rende l'immagine circolare */
  border: 1px solid #c2a562; /* opzionale: bordo oro */
  display: block;
}
	.testimonial-text {
	  font-family: 'Poppins', sans-serif;
	  font-size: 1rem;
	  color: #2f495e;
	  line-height: 1.6;
	  font-style: italic;
	  margin-bottom: 20px;
	}
	.testimonial-author {
	  font-size: 0.9rem;
	  font-weight: 600;
	  color: #2f495e;
	  text-transform: uppercase;
	  letter-spacing: 0.05em;
	  margin-bottom: 10px;
	}
	.testimonial-link {
	  font-family: 'Poppins', sans-serif;
	  font-size: 0.85rem;
	  color: #c2a562;
	  text-transform: uppercase;
	  letter-spacing: 0.08em;
	  text-decoration: none;
	  transition: color 0.3s ease;
	}
	.testimonial-link:hover {
	  color: #7a5f2a;
	}
	.testimonial-cta {
	  text-align: center;
	  margin-top: 60px;
	}



/* ------------------------------------------
   PAGINA TESTIMONIANZE – STILE PERSONALIZZATO
--------------------------------------------- */

.testimonianze-page .testimonials-intro {
  text-align: center;
  padding: 120px 20px 60px 20px;
  background-color: #fff;
}

.testimonianze-page .testimonials-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 4rem;
  color: #c7a869;
  line-height: 1.2;
  margin-top: 10px;
}

.testimonianze-page .testimonial-block {
  padding: 60px 0;
  background-color: #ffffff;
}

.testimonianze-page .testimonial-body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonianze-page .testimonial-avatar {
  flex-shrink: 0;
  margin-right: 30px;
}

.testimonianze-page .testimonial-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%; /* rende l'immagine circolare */
  border: 1px solid #c2a562; /* opzionale: bordo oro */
  display: block;
}

.testimonianze-page .testimonial-content {
  flex: 1;
}

.testimonianze-page .testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #2f495e;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonianze-page .testimonial-text.collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  opacity: 0.7;
}

.testimonianze-page .testimonial-author {
  font-weight: 600;
  color: #2f495e;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.testimonianze-page .read-more-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #c2a562;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.testimonianze-page .read-more-btn:hover {
  color: #7a5f2a;
}


	.desktop-only-br {
  display: inline;
}

	
	.avatar-bg {
	  width: 74px;
	  height: 74px;
	  border-radius: 50%;
	  overflow: hidden;
	  position: relative;
	}

	.avatar-bg img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	}


	.btn-full-gold {
	  display: inline-block;
	  background-color: #c2a562;
	  color: white;
		border: 0;
	  padding: 16px 40px;
	  font-size: 0.95rem;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 500;
	  letter-spacing: 0.08em;
	  text-transform: uppercase;
	  text-decoration: none;
	  transition: background-color 0.3s ease;
	}

	.btn-full-gold:hover {
	  background-color: #a88e4c;
	}

	.contact-cta {
	  background-color: #f8f6f3;
	  padding: 100px 20px;
	}

	.contact-wrapper {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: space-between;
	  max-width: 1200px;
	  margin: 0 auto;
	  gap: 40px;
	}

	.contact-content {
	  flex: 1 1 600px;
	  text-align: center;
	}

	.contatti-page .connect-title {
	  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 4.25rem; 
  line-height: 1.1;
  color: #c7a869;
  margin-bottom: 30px;
  transition: color 0.3s ease;
  text-align: center;
}

	.contact-text {
	   font-family: 'Poppins', sans-serif !important;
		font-weight: 200;
	  font-size: 1rem;
	   margin-bottom: 40px;
	  line-height: 1.6;
	}

	.about-description strong {
	  font-weight: 600;
	}

	.contact-illustration {
	  flex: 1 1 300px;
	  text-align: center;
	}

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

	.img-desktop {
	  display: block;
	}

	.img-mobile {
	  display: none;
	}


/* --- PRIVACY POLICY STYLES --- */

.privacy-content {
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: 'Poppins', sans-serif;
  color: #2f495e;
  line-height: 1.7;
}

.section-title {
  font-family: 'Cormorant Infant', serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #c2a562;
}

.privacy-content section {
  margin-bottom: 2.5rem;
}

.privacy-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: #2f495e;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.styled-list {
  list-style: disc;
  padding-left: 1.5rem;
}

 .site-footer {
	  background-color: #ffffff;
	  padding: 60px 20px;
	  text-align: center;
	  font-family: 'Poppins', sans-serif;
		font-weight: 200;
	}

	.footer-logo {
	  width: 250px;
	  margin-bottom: 20px;
	}

	.footer-content p,
	.footer-content a {
	  font-size: 1rem;
	  line-height: 1.6;
	  color: #b38c4f;
	  transition: color 0.3s ease;
	  text-decoration: none;
	}

	.footer-meta,
	.footer-credit {
	  font-size: 0.75rem !important;
	  margin-top: 20px;
	  color: #b38c4f;
	}


	.footer-meta a,
	.footer-credit a {
	  font-size: 0.75rem !important;
	  margin-top: 20px;
	  color: #b38c4f;
	}


	.footer-content a:hover {
	  color: #7a5f2a;
	}

	.mobile-spacer {
	  display: none;
	}

.with-gap {
  margin-bottom: 40px; /* oppure 60px o quello che preferisci */
}

.related-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.related-services .service-item {
  flex: 1 1 calc(50% - 40px); /* 2 colonne su desktop */
  max-width: 500px;
  background-color: #fdfaf7;
  padding: 20px;
  box-sizing: border-box;
}

.related-services .service-image img,
.felicita-services .service-image img {
 width: auto;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.related-services .service-text {
  margin-top: 15px;
}

.related-services .service-text h4 {
  font-size: 1.3rem;
  color: #c2a562;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.related-services .service-text p {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #2f495e;
  margin-bottom: 10px;
}

.related-link {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: #c2a562;
  text-decoration: none;
  font-weight: 500;
}

.related-link:hover {
  color: #7a5f2a;
}


	/* Mobile styles */

	@media (max-width: 991px) {

	  .main-nav {
		display: none;
		flex-direction: column;
		background-color: #fff;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		box-shadow: 0 8px 16px rgba(0,0,0,0.1);
		z-index: 999;
	  }

	  .main-nav.open {
		display: flex;
	  }

	  .main-nav ul {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
	  }

	 .cta-mobile {
		display: block;
	  }

	.desktop-only {
	  display: none !important;
	}

	  .menu-toggle {
		display: flex;
	  }
		
		
	  .section-label {
		color: #7a5f2a;
	  }
		
	  .about-description,
	  .about-invito-desc {
		color: #37566b;
	  }
	  .about-header {
	  padding: 0 5vw;
	  text-align: center;
	}
	  .about-title {
	  font-size: 2.2rem;
	  line-height: 1.2;
	  text-align: center;
	}
	  .about-subtitle {
	  font-size: 1.3rem;
	  line-height: 1.4;
	  text-align: center;
	  margin-top: 20px;
	}

		  .about-body {
		flex-direction: column;
		align-items: center;
		text-align: center;
	  }

	  .about-image,
	  .about-text {
		flex: 1 1 100%;
		max-width: 100%;
	  }

	  .about-text p,
	  .about-text a {
		text-align: center;
	  }

	.service-item {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	}
	.service-image img {
		margin-bottom: 20px;
	  }
	.service-text h4 {
		font-size: 1.1rem;
	  }
	.service-text p {
		font-size: 0.95rem;
	  }
	.services-title {
		font-size: 2.5rem;
		color: #7a5f2a;
	  }
	.service-text h4 {
		font-size: 1.4rem;
		color: #7a5f2a;
		text-align: center;
	  }
	.service-text p {
		color: #37566b;
		text-align: center;
	  }

		.servizio-description-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
		
	 .chisono-title {
		font-size: 2.2rem;
	  }
	 .chisono-intro {
		font-size: 1rem;
		padding: 0 10px;
	  }
	 .chisono-body {
		flex-direction: column;
		gap: 40px;
	  }
	 .chisono-content h2 {
		font-size: 1.6rem;
	  }
	 .chisono-content p {
		font-size: 0.95rem;
	  }
		.about-intro .about-title {
	  font-size: 2.2rem;
	}

	.about-intro .about-subtitle {
	  font-size: 1.3rem;
	}

	  .testimonials-grid {
	  grid-template-columns: 1fr;
	  gap: 30px;
	}
	  .testimonials-title {
		font-size: 2.5rem;
		color: #7a5f2a;
	  }

	  .img-desktop {
		display: none;
	  }
	  .img-mobile {
		display: block;
		width: 80px;
		margin: 0 auto 10px auto;
	  }
	  .contact-wrapper {
		flex-direction: column;
		text-align: center;
	  }
	  .contact-cta {
		padding: 40px 20px;
	  }
	
	  .contact-text {
		margin-bottom: 16px;
		font-size: 1rem;
	  }

	  .contact-illustration {
		order: -1;
		margin-bottom: 0px;
		  flex: 1 1 0px;
	  }
	  .contact-illustration img {
		height: auto;
	  }

		.contact-content {
	  flex: 1 1 0px;

	}
		
		 .contact-flex {
    flex-direction: column;
    gap: 40px;
  }

 .contatti-page .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .contatti-page .contact-info {
    text-align: center;
  }

  .contatti-page .contact-info  {
    width: 100%;
    text-align: center;
  }
		
		.contact-hero .contact-subtitle {
    color: #37566b;
  }
		
		
	.mobile-spacer {
		display: block;
		height: 40px; /* o la misura che preferisci */
		background-color: transparent;
	  }

	  .footer-meta,
	  .footer-credit {
		font-size: 0.8rem;
	  }

		 .site-footer {
		padding-bottom: 90px;
	  }
		
	  .library-split {
    flex-direction: column;
  }

  .library-description {
    position: static;
    width: 100%;
  }

  .library-scroll {
    height: auto;
    overflow: visible;
  }

   
	}


	@media (min-width: 992px) {

		.section-label:hover {
		color: #7a5f2a;
	  }

		 .about-title:hover {
		color: #7a5f2a;
	  }

		 .about-subtitle:hover {
		color: #c7a869;
	  }

		 .about-header {
		text-align: left;
	  }

	  .about-description:hover,
	  .about-invito-desc:hover {
		color: #37566b;
	  }

		.services-title:hover {
		color: #7a5f2a;
	  }

		  .service-text h4:hover {
		color: #7a5f2a;
	  }

	 .service-text p:hover {
		color: #37566b;
	  }

	  .service-image img {
		width: 400px;
	  }

		.service-text {
	  max-width: 480px;
	}

	 .contact-hero .contact-subtitle:hover {
    color: #37566b;
  }
}	

  .contatti-page .connect-title:hover {
    color: #7a5f2a;
  }
		



	@media (max-width: 768px) {
		
	.container {
    padding-left: 20px;
    padding-right: 20px;
  }
		
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }
		
 .servizi-section h1 {
		font-size: 2.2rem;
	  }

	  .servizi-section p {
		font-size: 1rem;
	  }

	  .servizio-item h2 {
		font-size: 1.5rem;
	  }

	  .servizio-item p {
		font-size: 0.95rem;
	  }
		
  .book-grid-fixed {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .biblioteca-page .library-title {
    font-size: 2.2rem;
  }

  .biblioteca-page .library-subtitle {
    font-size: 1rem;
  }

  .book-grid-fixed .book-title {
    font-size: 0.9rem;
  }

  .book-grid-fixed .book-author {
    font-size: 0.8rem;
  }
		
 .contact-hero .contact-subtitle {
    font-size: 1rem;
  }

.contact-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
		
.contact-form h2 {
    text-align: center;
  }

  .btn-full-gold {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .contact-form button.btn-full-gold {
    display: block;
    width: fit-content;
    margin: 20px auto;
  }

  .btn-outline {
    margin: 20px auto;
    display: inline-block;
  }

  .contact-info {
    margin-top: 40px;
  }
		
	 .desktop-only-br {
    display: none;
  }
  .testimonianze-page .testimonial-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonianze-page .testimonial-avatar {
    margin-bottom: 20px;
  }

  .testimonianze-page .testimonial-content {
    text-align: left;
  }
		.related-services .service-item {
    flex: 1 1 100%;
  }
		
	}


@media screen and (max-width: 420px) {
  .highlighted-badge {
    font-size: 1.2rem;
    padding: 6px 14px;
  }
}

body.biblioteca-page .site-footer,
body.about-page .site-footer,
body.servizi-page .site-footer,
body.privacy-page .site-footer,
body.testimonianze-page .site-footer {
  background-color: #fdfaf7 !important;
}
