/*
Theme Name: SiChef Tailwind Light
Theme URI: https://sichef.me
Author: Brian + ChatGPT
Description: Minimal Tailwind CSS theme (fondo blanco, botones verdes) pensado para la landing de SiChef.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sichef-tailwind-light
*/

/* Base */
body {
  background-color: #f9fafb; /* slate-50 */
  color: #020617;           /* slate-950 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Tamaño base + scroll suave */
html {
  font-size: 110%;
  scroll-behavior: smooth;
}

/* En mobile lo dejamos normal para que no se haga gigante */
@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
}

/* HEADER + ZOOM FIGHTDENT */
#fd-header {
  transition: transform 0.3s ease-out, opacity 0.2s ease-out, box-shadow 0.2s ease-out;
}

.fd-header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Zoom suave sólo para esta landing, sin usar transform */
.fd-zoom-desktop {
  zoom: 1.05; /* ~+5% / +10% visual */
}

/* En mobile / tablets chicas desactivamos el zoom para evitar líos */
@media (max-width: 1023px) {
  .fd-zoom-desktop {
    zoom: 1;
  }
}
/* Columna "A medida FightDent" en verde fluor */
.fd-col-fd {
  color: #bef264 !important; /* lime-300 casi neón */
  text-shadow: 0 0 8px rgba(190, 242, 100, 0.55);
}

