/* ESTUDIO.CSS - Fondo visible sin sombras */

body {
  background-image: url("../Usadas/Fondo-Estudio/enhanced_FondoEstudio.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

/* SIN OVERLAY */
body::before {
  display: none !important;
}

main.container {
  position: relative;
  z-index: 1;
}

.studio-title-section {
  background: transparent;
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: none;
  margin-bottom: 2rem;
  box-shadow: none !important;
}

.studio-title-section h1 {
  color: #000;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.studio-title-section p {
  color: #111;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.studio-img {
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
  border-radius: 8px;
  box-shadow: none !important;
  background: #fff;
  padding: 10px;
  border: 2px solid #fff;
}

.studio-img:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: none !important;
}

.card {
  backdrop-filter: none;
  transition: transform 0.3s ease;
  background: transparent;
  border-radius: 10px;
  box-shadow: none !important;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}

.card-title {
  color: #000;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.card-text {
  color: #111;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Tarjeta oscura de la llamada a la acción: mismo estilo pero con contraste invertido */
.bg-dark .card-title {
  color: #fff;
  text-shadow: none;
}

.bg-dark .card-text {
  color: #eee;
  text-shadow: none;
}

.btn-light {
  background-color: #fff !important;
  border: 2px solid #000 !important;
  color: #000 !important;
  font-weight: 600;
  box-shadow: none !important;
}

.btn-light:hover {
  background-color: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  box-shadow: none !important;
}

.studio-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .studio-img {
    height: 250px;
  }

  .studio-photo-grid {
    grid-template-columns: 1fr;
  }

  .studio-title-section {
    padding: 2rem 1rem;
  }

  .studio-title-section h1 {
    font-size: 2.5rem;
  }

  /* background-attachment: fixed da problemas de renderizado en móviles */
  body {
    background-attachment: scroll;
  }
}