/* ==============================================
   ESTILOS MEJORADOS PARA ENLACES DE GALERÍA
   ============================================== */

/* Variables CSS para mayor visibilidad */
:root {
  --text-light: #ffffff;
  --primary-blue: #0066ff;
  --success-green: #00cc66;
  --accent-gold: #ffaa00;
  --transition-speed: 0.3s;
  --shadow-strong: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Estilo base para todos los enlaces - MÁS VISIBLE */
a {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  opacity: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
  transition: all var(--transition-speed) ease;
  text-shadow: var(--shadow-strong);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
}

/* Efecto hover más visible y llamativo */
a:hover {
  transform: translateY(-4px) scale(1.05);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* Efecto de subrayado más visible */
a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
  transition: all var(--transition-speed) ease;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

a:hover::after {
  width: 100%;
}

/* Enlaces especiales - MÁS DESTACADOS */
a.enlace-galeria {
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 700;
  border: 3px solid var(--primary-blue);
  background: rgba(0, 102, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

a.enlace-galeria:hover {
  color: #ffffff;
  background: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.6);
}

a.mi-enlace {
  color: var(--success-green);
  font-weight: 700;
  border: 3px solid var(--success-green);
  background: rgba(0, 204, 102, 0.1);
  box-shadow: 0 6px 20px rgba(0, 204, 102, 0.3);
}

a.mi-enlace:hover {
  color: #ffffff;
  background: var(--success-green);
  box-shadow: 0 10px 30px rgba(0, 204, 102, 0.6);
}

/* Enlaces con ID específico - SÚPER VISIBLE */
#otro-enlace {
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  border: 3px solid var(--accent-gold);
  background: rgba(255, 170, 0, 0.15);
  box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
}

#otro-enlace:hover {
  color: #000000;
  background: var(--accent-gold);
  text-shadow: none;
  box-shadow: 0 12px 35px rgba(255, 170, 0, 0.7);
}

/* Estados de foco para accesibilidad */
a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
  a {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  
  a.enlace-galeria {
    font-size: 1.4rem;
  }
  
  #otro-enlace {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  a {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }
}



/* Contenedor para el enlace de galería */
.gallery-link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: 100%;
}