/* ==== BASE E FONT ==== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6faff;
  color: #1d3557;
  line-height: 1.6;
}

/* ==== IMMAGINE HERO ==== */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==== FASCIA BLU (SLOGAN) ==== */
.hero-text {
  background-color: #1d3557;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 0;
}

/* ==== SEZIONE LE NOSTRE LINEE ==== */
.linee {
  padding: 3rem 1rem 2rem;
  text-align: center;
  background-color: #ffffff;
}

.linee h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.linee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 2rem;
}

/* BOX DELLE LINEE CON SFONDO BLU + ICONE INGANDITE */
.linea-card {
  background: #b2c8e4; /* blu medio per contrasto */
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #102542;
  transition: transform 0.2s ease;
}

.linea-card:hover {
  transform: scale(1.04);
}

.linea-card img {
  max-width: 180px; /* INGRANDIMENTO */
  height: auto;
  margin-bottom: 1rem;
}

.linea-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

/* ==== BLOCCO INTRO/SEO ==== */
.intro-seo {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #1d3557;
}

.intro-seo h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

/* ==== FOOTER ==== */
footer {
  background: #edf2f7;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #1d3557;
}

/* ==== RESPONSIVE ==== */
@media screen and (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .intro-seo h2 {
    font-size: 1.5rem;
  }

  .linea-card img {
    max-width: 120px; /* ingrandite anche su mobile */
  }
}
/* ==== NAVBAR ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d3557;
  padding: 1rem 1.5rem;
  color: white;
}

.navbar .logo {
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==== MOBILE MENU ==== */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 1rem;
    background-color: #1d3557;
    padding: 1rem;
    border-radius: 8px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* ==== HERO PRODOTTO ==== */
.product-hero {
  background-color: #b2c8e4;
  text-align: center;
  padding: 3rem 1rem;
}

.product-hero.easy-sac-bg {
  background-color: #a2bddf;
}

.product-hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.product-hero-text p {
  font-size: 1.1rem;
}

/* ==== SEZIONE CONTENUTO ==== */
.product-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.product-info {
  flex: 1 1 400px;
}

.product-info ul {
  padding-left: 1.2rem;
  text-align: left;
}

.product-info h2 {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #1d3557;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #143148;
}

.product-img {
  flex: 1 1 300px;
  text-align: center;
}

.product-img img {
  max-width: 200px;
  height: auto;
}
