/* ===== PLACEHOLDER IMAGES ===== */
/* Fallback para cuando no hay imágenes reales */
.placeholder-img {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 3rem;
  position: relative;
}

.placeholder-icon {
  font-size: 4rem;
  opacity: 0.7;
}

.placeholder-text {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

/* Hero placeholders */
.hero-placeholder-1 {
  background: var(--primary-color);
}

.hero-placeholder-2 {
  background: var(--secondary-color);
}

.hero-placeholder-3 {
  background: var(--accent-color);
}



/* Features placeholders */
.feature-placeholder-1 {
  background: var(--primary-color);
}

.feature-placeholder-2 {
  background: var(--secondary-color);
}

.feature-placeholder-3 {
  background: var(--accent-color);
}

/* Project placeholders */
.project-placeholder-residential {
  background: var(--accent-color);
}

.project-placeholder-commercial {
  background: var(--primary-color);
}

.project-placeholder-renovation {
  background: var(--secondary-color);
}

/* Team placeholders */
.team-placeholder {
  background: var(--light-color);
  color: var(--primary-color);
}

.team-placeholder::after {
  content: attr(data-initials);
  font-size: 3rem;
  font-weight: var(--font-extra-bold);
}

/* Client placeholders */
.client-placeholder {
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--white-color);
}

.client-placeholder::after {
  content: attr(data-initials);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
}

/* Iconos para placeholders */
.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Texto para placeholders */
.placeholder-text {
  font-size: var(--normal-font-size);
  margin-top: 1rem;
  opacity: 0.9;
}

/* Hover effects para placeholders */
.placeholder-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsive placeholder adjustments */
@media screen and (max-width: 768px) {
  .placeholder-img {
    font-size: var(--small-font-size);
  }
  
  .placeholder-icon {
    font-size: 3rem;
  }
  
  .team-placeholder::after {
    font-size: 2rem;
  }
} 