/*
Theme Name: Mazzanti Base Child - Base
*/

:root {
  --color-text: rgb(99, 99, 99);
  --color-header: rgb(99, 99, 99);
  --color-footer: rgb(99, 99, 99);
  --color-link: rgb(99, 99, 99);
}

body {
  color: var(--color-text);
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.625;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 100;}
h2 { font-size: 2.2rem; font-weight: 100; }
h3 { font-size: 1.6rem; font-weight: 100; }
h4 { font-size: 1.2rem; font-weight: 100; }
p  { margin-bottom: 1.2rem; }

img {
  max-width: 100%;
  height: auto;
}
/*impostazione dei titoli*/
.title {
  font-family: 'Roboto', sans-serif;
  font-weight: 300; /* Light */
  letter-spacing: 0.02em;
  text-transform: uppercase; /* opzionale */
  margin-top: 3em;
}
.title--xl { font-size: 3rem; }
.title--lg { font-size: 2rem; }
.title--sm { font-size: 1.2rem; }
/* per il footer in fondo */
html, body {
  height: 100%;
  margin: 0;
}

body > .site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > .site-wrapper > main {
  flex: 1;
}
/*vorrebbe essere comune a tutti i container*/
.container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem 2rem 2rem;
}
/* Linea di separazione leggera */
.footer-separator {
    border: none;
    border-top: 1px solid #ccc; /* colore leggero */
    margin: 0.5em 0;              /* spazio verticale */
}

/* Logo centrato */
.footer-logo {
    text-align: center;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}
.footer-separator {
    border: none;          /* Rimuove eventuali bordi predefiniti */
    border-top: 1px solid #e7e7e7; /* Linea sottile e grigia */
    
}
