/**
 * SISTEMA VISUAL Y VARIABLES GLOBALES
 * DE TU PUEBLO — Ushuaia
 */

/* Fuentes locales oficiales Passenger Sans */
@font-face {
    font-family: "Passenger Sans";
    src: url("../assets/fonts/PassengerSans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Passenger Sans";
    src: url("../assets/fonts/PassengerSans-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Passenger Sans";
    src: url("../assets/fonts/PassengerSans-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Passenger Sans";
    src: url("../assets/fonts/PassengerSans-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Passenger Sans";
    src: url("../assets/fonts/PassengerSans-Extrablack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Paleta Oficial */
    --bg-main: #0c0b0a;
    --bg-secondary: #151311;
    --orange: #f58220;
    --orange-hover: #ff9638;
    --text-primary: #f7f4ee;
    --text-secondary: #bdb7ae;
    --border: rgba(255, 255, 255, 0.12);
    --card-bg: #171513;

    /* Acentos Gastronómicos */
    --card-bg-hover: #221f1a;
    --orange-glow: rgba(245, 130, 32, 0.25);
    --orange-subtle: rgba(245, 130, 32, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-orange: rgba(245, 130, 32, 0.38);

    /* Tipografías */
    --font-display: "Passenger Sans", system-ui, -apple-system, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Espaciados y Radios */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-full: 9999px;

    /* Transición fluida */
    --transition: 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.7);
}
