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


/* ===================================
   HERO ABOUT SECTION
===================================*/

.about-hero {
  padding: 160px 8% 10px;
  background: black;
  color: white;
}

.about-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

/* --- POLAROID --- */

.about-polaroid {
  position: relative;
  padding: 20px 20px 60px;
  transform: rotate(-5deg);
  max-width: 380px;
}

.about-polaroid img {
  width: 100%;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: black;
  letter-spacing: 2px;
}

/* --- INTRO TEXT --- */

.about-intro {
  max-width: 600px;
}

.about-intro h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
}
.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #dddddd;
}

/* ===============================
   DOUBLE DASH DIVIDER
=================================*/

.about-divider {
  width: 85%;
  margin: 80px auto;
  height: 16px;
  position: relative;
}

.about-divider::before,
.about-divider::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 4px dashed;
}

.about-divider::before {
  top: 0;
  border-color: #ffffff; /* blu scuro */
}

/* ===================================
   JOURNEY SECTION
===================================*/

.about-journey {
  padding: 40px 12% 100px;
  background: black;
  color: white;
}

.journey-container {
  max-width: 900px;
}

.about-journey h2 {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
}

.about-journey p {
  font-size: 18px;
  line-height: 1.9;
  color: #d0d0d0;
}


/* ===================================
   RESPONSIVE
===================================*/

@media (max-width: 1024px) {

  .about-hero-container {
    flex-direction: column;
    text-align: left;
    gap: 60px;
  }

  .about-polaroid {
    transform: rotate(0);
  }

  .about-intro h1 {
    font-size: 36px;
  }

  .about-journey h2 {
    font-size: 34px;
  }

}

@media (max-width: 480px) {

  .about-intro p,
  .about-journey p {
    font-size: 16px;
  }

}
/* ===============================
   WORKED WITH SECTION
=================================*/

.worked-with {
  text-align: center;
  padding: 70px 40px;
}

.worked-title {
  font-family: 'Rubik Doodle Shadow', cursive;
  font-size: 64px;
  letter-spacing: 2px;
  color: #070707;
  margin-bottom: 100px;
}

/* --- Contenitore loghi --- */
.worked-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* --- Riga di loghi --- */
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

/* --- Singoli loghi --- */
.logo-row img {
  height: 40px;       /* 👈 più piccoli */
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  opacity: 0.95;
}

/* Effetto hover */
.logo-row img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .worked-title {
    font-size: 50px;
    margin-bottom: 60px;
  }

  .logo-row {
    gap: 50px;
  }

  .logo-row img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .logo-row {
    gap: 40px;
    justify-content: center;
  }

  .logo-row img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .worked-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .logo-row {
    gap: 30px;
  }

  .logo-row img {
    height: 35px;
  }
}
/* ===============================
   MY EXPERTISE — SCROLL BLUR
=================================*/

.expertise-section {
  background-color: black;
  color: #faf9f6;
  padding: 200px 10%;
  position: relative;
  overflow: hidden;
}

.expertise-title {
  font-family: 'Rubik Doodle Shadow';
  letter-spacing: 2px;
  font-size: 60px;
  color: #faf9f6;
  margin-bottom: 100px;
  text-align: left;
}

.expertise-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* --- Lista --- */
.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 400;
  opacity: 0;
  filter: blur(15px);
  transform: translateY(40px);
  margin-bottom: 20px;
  transition: all 0.8s ease;
}

.expertise-list li.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* --- Personaggi --- */
.expertise-characters {
  position: relative;
  width: 250px;
}

.char {
  position: absolute;
  width: 250px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
}

.char.show {
  opacity: 1;
  transform: translateY(0);
}

.char1 {
  top: 180px;
  right: 400px;
}

.char2 {
  top: 380px;
}

.char3 {
  top: 640px;
  right: 400px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
    align-items: center;
  }
  .expertise-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
  }
  .expertise-list li {
    font-size: 28px;
  }

  .char {
    width: 120px;
    right: 0;
  }
}

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

.footer-content {
  display: flex;
  gap: 150px;
  align-items: center;
  flex-wrap: wrap;
  background-color: black;
}
.footer-content img.footer-logo {
  height: 60px;
  margin-right: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
}
.footer-link p {
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #ffffff;
  font-weight: 400;
}
.logo-email {
  height: 24px;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-link {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .gradient-text {
    font-size: 14px;
    text-align: center;
  }
}