/* --- SPECS SECTION --- */
.spec-section {
  background: #202020;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
  text-align: center;
}

.spec-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* --- GRID LAYOUT --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

/* --- SPEC CARD --- */
.spec-card {
  width: 100%;
  height: 300px;
  max-width: 450px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 180, 100, 0.3);
}

/* --- ICON --- */
.spec-card i {
  font-size: 5rem !important;        /* 🚀 force big icon size */
  line-height: 1;
  color: #ffb347;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 25px rgba(255, 180, 100, 0.4);
}

.spec-card:hover i {
  transform: scale(1.2);
  color: #ffd27f;
  text-shadow: 0 0 35px rgba(255, 210, 120, 0.8);
}

/* Force larger SVG icon size in spec cards */
.spec-card .svg-inline--fa {
  height: 2em !important;        /* 💪 increase overall icon size */
  width: auto !important;        /* maintain correct aspect ratio */
  color: #ffb347;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 180, 100, 0.4));
}

.spec-card:hover .svg-inline--fa {
  transform: scale(1.2);
  color: #ffd27f;
  filter: drop-shadow(0 0 20px rgba(255, 210, 120, 0.7));
}

/* --- TEXT --- */
.spec-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

/* Optional: scale down slightly on smaller devices */
@media (max-width: 768px) {
  .spec-card i {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
  
  .spec-card {
    height: auto;
    padding: 40px 20px;
  }

  .spec-card i {
    font-size: 2rem;
  }
}
