/*
Theme Name: YAS Reforms Theme
Theme URI: https://example.com/
Author: Next Boost + ChatGPT
Author URI: https://example.com/
Description: Tema basado en los archivos HTML entregados (Inicio, Nosotros, Contacto). Usa Tailwind CDN y Bootstrap Icons. Incluye Customizer para 2 logos en el footer (h-14), creación de páginas y menú.
Version: 1.0.1
License: GPLv2 or later
Text Domain: yas-reforms-theme
*/

/* Puedes añadir reglas base aquí si lo necesitas. */
:root{
  --brand-600:#0ea5b7;
  --brand-700:#0a7f8c;
  --brand-50:#e6fbff;
  --accent-600:#0ea5b7;
}
.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease}
.reveal.active{opacity:1; transform:none}
.shadow-soft{box-shadow:0 10px 30px -12px rgba(2,25,39,.12)}
.mask-bottom{
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.8) 40%, #000);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.8) 40%, #000);
}
.nav-scrolled{box-shadow:0 8px 30px rgba(2,25,39,.08)}
.mask-top{
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 75%, rgba(0,0,0,.2) 96%, transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 75%, rgba(0,0,0,.2) 96%, transparent);
}

/* === ChatGPT: disable all animations & reveal === */
.reveal, .reveal * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
/* Optional: disable any animation/transition globally */
html * {
  animation: none !important;
  transition: none !important;
}
/* End ChatGPT block */
