/* src/styles/branding.css */
/* Fuentes de marca */
/* Fonts Importing */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap");

/* Variables de marca (claro) */
:root {
  /* Core backgrounds and foregrounds */
  --background: 54 100% 95%; /* Amarillo claro (casi crema) */
  --foreground: 0 0% 10%; /* Negro puro */

  /* Principal Fonts */
  --font-sans: "Space Grotesk", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;

  --primary: 50 100% 50%; /* Amarillo fuerte */
  --primary-glow: 50 100% 60%;
  --secondary: 0 100% 50%; /* Rojo fuerte (branding NOW) */

  --muted: 240 10% 92%;
  --muted-foreground: 0 0% 30%;

  /* Específicos hostel */
  --brand-main: 50 100% 50%;
  --brand-alt: 0 0% 100%;
  --brand-accent: 0 0% 10%;

  --destructive: 0 100% 40%;
  --border: 0 0% 15%;

  --sidebar-background: 0 0% 100%;
  --sidebar-foreground: 0 0% 10%;
  --sidebar-primary: 0 0% 10%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 50 100% 50%;
  --sidebar-accent-foreground: 0 0% 10%;
  --sidebar-border: 0 0% 20%;
  --sidebar-ring: 0 0% 10%;
}
