html {
    padding: 0px;
}

body {
  font-family: 'Inter', sans-serif;
  padding: 0px;
  margin: 0px;
}

a {
    color: white;
    text-decoration: none;
}

strong {
    font-weight: 600;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-2-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.grid-4-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.grid-4-xl-gap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.fullwidth {
    width: 100%;
}

.width-80 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.large-p {
    font-size: 24px;
}

.top-margin {
    margin-top: 24px;
}

.top-margin-2 {
    margin-top: 48px;
}

.top-margin-3 {
    margin-top: 80px;
}

.top-margin-4 {
    margin-top: 6px;
}

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

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

.white {
    color: white;
}

.black-bg {
    background-color: #373737;
}

.white-bg {
    background-color: white;
    color: black;
}

.grey-bg {
    background-color: #F3F3F3;
    color: black;
}

.card {
    padding: 35px 35px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #414141, #797979);
}

.card-white {
    padding: 35px 35px;
    border-radius: 12px;
    background-color: white;
	transition: all 0.3s ease;
}

.card-white:hover {
	transform: scale(1.05) translateY(-4px);
	
}

.card-big {
    padding: 45px;
    border-radius: 12px;
}

.border {
    border: solid 1px #F77522;
}

.hero-section {
    background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* overlay nero */
    url('images/me al lavoro.jpg') center/cover no-repeat;
}

.verdino {
    background-color: #F0F9E5;
}

.hero-title {
    font-size: 110px;
    line-height: 1.1em;
    font-weight: 900;
    letter-spacing: -3px;
    word-spacing: 8px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
}

.container {
    max-width: 850px;
    margin: 0 auto;  
}

.green-line {
    min-height: 1.5px;
    width: 100%;
    background-color: #7BC720;
}

.center-div {
  display: flex;
  justify-content: center; /* centra orizzontalmente */
  align-items: center;
}

h1 {
    font-size: 68px;
    margin: 0px;
    font-weight: 900;
    word-spacing: 0.1em;
}

h2 {
    font-size: 48px;
    margin: 0px;
    font-weight: 900;
    line-height: 1.1em;
}

h3 {
    font-size: 42px;
    margin: 0px;
    line-height: 1.1em;
}

h4 {
    font-size: 36px;
    margin: 0px;
    line-height: 1.1em;
}

h5 {
    font-size: 22px;
    margin: 0px;  
    line-height: 1.1em;
}

h6 {
    font-size: 18px;
    margin: 0px; 
    font-weight: 400;
    line-height: 1.1em;
}

p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4em;
}

a {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4em;
    margin-top: 18px;
}


ul {
    padding-left: 20px;
}

li {
    padding-bottom: 18px;
}

section {
    padding: 65px 8% 100px 8%;
}

button {
    border: none;
    background: linear-gradient(90deg, #a5d934, #95d934);
    color: black;
    padding: 22px;
    font-size: 21px;
    margin-top: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-6px);
    transform: scale(1.05);
    cursor: pointer;
    background-color: #7eb22a;
    color: white;
}

.secondary-btn {
    border: solid 2px black;
    background: none;
    color: black;
    padding: 22px;
    font-size: 18px;
    margin-top: 12px;
    font-weight: 600;
    border-radius: 12px;
}

.big-btn {
    border: none;
    background: linear-gradient(90deg, #a5d934, #95d934);
    color: white;
    padding: 22px 44px;
    font-size: 25px;
    letter-spacing: -1px;
    margin-top: 12px;
    font-weight: 900;
    border-radius: 12px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.25);
}

.yellow-button {
    border: none;
    background-color: #CFF127;
    color: black;
    padding: 16px 32px;
    font-size: 18px;
    margin-top: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.25);
}

.yellow {
    color: #CFF127;
}

.grey-p {
    color: #a1a1a1;
}

.center-flex {
    display: flex;
    justify-content: center; /* centra orizzontalmente */
    align-items: center;
}




@media (max-width: 768px) {
    
    section {
    padding: 60px 5% 70px 5%;
    }
    
    .hero-title {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    }
    
    h1 {
        font-size: 34px;
        line-height: 1.1em;
        font-weight: 900;
    }
    
    h2 {
        font-size: 30px;
        line-height: 1.1em;
        font-weight: 900;
    }
    
    h3 {
        font-size: 26px;
        line-height: 1.1em;
        font-weight: 900;
    }
    
    h4 {
        font-size: 24px;
        line-height: 1.1em;
        font-weight: 900;
    }
    
    h5 {
        font-size: 21px;
        line-height: 1.1em;
        font-weight: 600;
    }
    
    h6 {
        font-size: 16px;
        line-height: 1.1em;
        font-weight: 400;
    }
    
    .grid-2 {
      grid-template-columns: 1fr;        
    }
    
    .grid-2-1-2 {
      grid-template-columns: 1fr;        
    }
    
    .grid-3 {
      grid-template-columns: 1fr;  
    }
    
    .grid-4 {
      grid-template-columns: 1fr 1fr;  
    }
    
    .grid-4-1 {
    grid-template-columns: 1fr;
    }
    
    .grid-4-xl-gap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    }
    
    .gap-large {
    gap: 20px;
    }
    
    .hero-container {
    padding: 10vh 0;
    }
}

