@font-face {
  font-family: 'Rubik Doodle Shadow';
  src: url('fonts/RubikDoodleShadow-Regular.woff2') format('woff2');
  font-weight: 400; /* Normal weight */
  font-style: normal;
}

/* Hero Section */
.hero-about {
  position: relative;
  width: 100%;
  height: auto;
  padding: 150px 40px 80px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

/* Desktop e Tablet */
.projects-img {
  width: 80%;        
  max-width: 850px;   /* 👈 max su desktop */
  height: auto;
  z-index: 5;
  margin-top: 120px;
}

/* Mobile View */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    position: relative;
    padding-top: 5px;
  }

  .projects-img {
    width: 100vw;       /* 👈 prende tutta la larghezza dello schermo */
    max-width: 100%;    /* 👈 rimuove limiti */
    height: auto;
    object-fit: contain;
    padding: 70px 10px;    /* 👈 margine laterale opzionale per respiro */
  }
}

/* Services Grid */
.flowing-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
  background-color: #050010c3;
  margin-bottom: 70px;
}

.flowing-row {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-top: 1px solid #004DFF;
  border-bottom: 0.5px solid #004DFF;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}

.flowing-track {
  display: inline-block;
  font-family: 'Monument Extended', sans-serif;
  font-size: 36px;
  color: white;
  transform: translateX(0);
  transition: transform 10s linear;
}

/* Quando ci passo sopra parte lo scorrimento */
.flowing-row:hover .flowing-track {
  transform: translateX(-100%);
}

/* Responsive */
@media (max-width: 768px) {
  .flowing-track {
    font-size: 20px;
  }
}

/* Footer */
.footer {
  width: 100%;
  background-color: #ffffff; 
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.footer-content {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-link img {
  width: 40px;
  height: 40px;
}
.footer-link p {
  font-size: 16px;
  font-family: 'Monument Extended', sans-serif;
  color: #000;
  font-weight: 400;
}