/* ==== ABOUT PAGE ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
/* --- HERO --- */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 55vh;
  background: url('../images/inv_result.webp') center/cover no-repeat; /* schimbă imaginea după nevoie */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: clamp(60px, 10vw, 140px) 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero-content h1 span {
  color: #e63946; /* accent roșu elegant */
}

.about-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #eee;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* --- CONTENT SECTION --- */
.about-content {
  background: #fff;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  color: #222;
}

.about-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111;
  margin-bottom: 0.8rem;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #e63946;
  border-radius: 2px;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- LISTA --- */
.about-content ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.about-content li {
  position: relative;
  font-size: 1rem;
  color: #444;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}

.about-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e63946;
  font-weight: 700;
}

/* --- CTA BUTTON --- */
.about-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.show-inventory-btn {
  background: #e63946;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.show-inventory-btn:hover {
  background: #c62839;
  transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .about-hero {
    min-height: 45vh;
    padding: 80px 1rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .about-content {
    padding: 2rem 1.5rem;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content h2 {
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-content ul {
    text-align: left;
  }
}

@media (max-width: 400px) {
  .about-hero {
    padding: 60px 1rem;
  }

  .about-hero-content h1 {
    font-size: 1.8rem;
  }

  .show-inventory-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
