
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.header {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
}
.header .logo {
  height: 60px;
}
.header nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  font-weight: 600;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../images/hero.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  transition: height 0.4s ease-in-out;
}

/* 💻 Desktop: aumenta l’altezza */
@media (min-width: 1200px) {
  .hero {
    min-height: 120vh;
  }
}

@media (min-width: 1600px) {
  .hero {
    min-height: 80vh;
  }
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
    text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px 60px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}






.hero-content {
  max-width: 700px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background: #00b894;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #019d7f;
}
.section {
  padding: 80px 20px;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.section.light {
  background-color: #fefefe;
  color: #333;
}
.section.dark {
  background-color: #0c2d3c;
  color: #f5f5f5;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #ffffff10;
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto 0;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.footer {
  text-align: center;
  padding: 30px;
  background: #fafafa;
  font-size: 0.9rem;
  color: #666;
}
