@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Pulsante back */
.btn-back-home {
  position: fixed;
  top: 25px;
  left: 25px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;

  color: white;
  font-size: 1.2rem;
  font-weight: 500;

  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(5px);

  transition: all 0.3s ease;
  z-index: 1000;
}


.btn-back-home:hover {
  background: #219150;
  border-color: #219150;
  color: #10221b;
}

.btn-back-home:hover::before {
  transform: translateX(-4px);
}


/* SEZIONE CHI SIAMO FULL SCREEN */
.about-full {
  background: #10221b; /* verde scuro uniforme */
  color: rgba(255,255,255,0.9);
  min-height: 100vh;
  padding: 60px 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Titolo e descrizione */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #219150;
  margin-bottom: 15px;
}

.about-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Box Google Maps */
.map-box {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-full {
    padding: 40px 20px;
  }
  .about-header h2 {
    font-size: 2rem;
  }
  .about-header p {
    font-size: 1rem;
  }
}
