:root{
  --green:#0b6b3a;
  --red:#bf1e2e;
  --cream:#fffdf8;
  --dark:#222;

  --max-width:1100px;
  --radius:12px;
  --gap:1.25rem;

  font-size:16px;
}

/* box type */
*{
  box-sizing:border-box;
}

/* body page */
body{
  margin:0;
  font-family:"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.5;
  color:var(--dark);
  background:linear-gradient(180deg,#fffaf0 0%,var(--cream) 100%);
  -webkit-font-smoothing:antialiased;
}

/* main container */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:1.25rem;
}

/* header section */
.header{
  background:white;
  border-radius:var(--radius);
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  padding:0.75rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

/* brand */
.brand{
  display:flex;
  align-items:center;
  gap:0.75rem;
  text-decoration:none;
  color:var(--dark);
}

.brand img{
  height:80px;
  width:80px;
  border-radius:6px;
  object-fit:cover;
}

.brand h1{
  margin:0;
  font-size:1.1rem;
  letter-spacing:0.5px;
}

/* navigation */
.nav{
  display:flex;
  gap:0.5rem;
  align-items:center;
}

.nav a{
  text-decoration:none;
  padding:0.5rem 0.75rem;
  border-radius:8px;
  color:var(--dark);
  font-weight:600;
}

.nav a:hover,
.nav a:focus{
  background:rgba(11,107,58,0.06);
}

/* hero area */
.hero{
  display:flex;
  grid-template-columns:1fr;
  gap:var(--gap);
  margin-top:1rem;
  align-items:center;
}

.hero-inner{
  background:linear-gradient(90deg,rgba(11,107,58,0.03),rgba(191,30,46,0.03));
  padding:1.25rem;
  border-radius:10px;

}

.hero img{
  width:100%;
  height:600px;;
  object-fit:cover;
  border-radius:8px;
}

.hero-img-italy{
    height:200px;
}
.hero h2{
  margin:0 0 .5rem 0;
}

.hero p{
  margin:0;
}

/* grid section */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:calc(var(--gap)*0.9);
  margin-top:1rem;
}

.card{
  background:white;
  padding:1rem;
  border-radius:10px;
  box-shadow:0 1px 6px rgba(0,0,0,0.04);
}

.card img{
  width:100%;
  object-fit:cover;
  border-radius:8px;
  /*height: 200px;*/
}

.card h3{
  margin:0.5rem 0 0.25rem 0;
}

/* main area */
main{
  margin-top:1rem;
}

/* footer */
footer{
  margin-top:1.5rem;
  padding:1rem;
  text-align:center;
  font-size:0.9rem;
  color:#444;
}

/* forms */
.form-row{
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
}

.form-row .field{
  flex:1 1 220px;
}

label{
  display:block;
  font-size:0.95rem;
  margin-bottom:0.35rem;
}

input[type="text"],
input[type="email"],
select,
textarea{
  width:100%;
  padding:0.6rem 0.7rem;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:1rem;
}

textarea{
  min-height:120px;
  resize:vertical;
}

button{
  padding:0.6rem 0.9rem;
  border-radius:8px;
  border:0;
  cursor:pointer;
  font-weight:600;
}

.btn-primary{
  background:var(--green);
  color:white;
}

.btn-secondary{
  background:#f2f2f2;
  color:var(--dark);
}

/* responsive stuff */
@media (max-width:900px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
  .hero img{
    height:220px;
  }
}

@media (max-width:600px){
  .grid{
    grid-template-columns:1fr;
  }
  .nav{
    display:none;
  }
  .header{
    padding:0.75rem;
  }
}