/**
 * Aurevya Avada Child - CSS Custom Properties
 * Global design tokens matching the AWL HTML prototype
 */

:root {
	/* Brand Colors */
	--aurevya-gold: #b59533;
	--aurevya-navy: #130429;
	--aurevya-sand: #8e8278;
	--aurevya-white: #ffffff;
	--aurevya-gray-light: #f5f5f5;
	--aurevya-gray: #808285;
	--aurevya-gray-dark: #292929;

	/* Overlay Colors */
	--aurevya-overlay-dark: rgba(19, 4, 41, 0.35);
	--aurevya-overlay-light: rgba(255, 255, 255, 0.9);

	/* Header Dimensions */
	--header-height: 80px;
	--header-height-small: 58px;

	/* Navigation Panel */
	--nav-panel-width: 320px;
	--nav-panel-width-mobile: 100vw;
	--nav-submenu-width: 280px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;

	/* Z-index Scale */
	--z-header: 99;
	--z-nav-panel: 100;
	--z-modal: 200;

	/* Spacing */
	--spacing-xs: 5px;
	--spacing-sm: 10px;
	--spacing-md: 15px;
	--spacing-lg: 20px;
	--spacing-xl: 30px;
	--spacing-xxl: 50px;

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 33px;
	--radius-full: 50%;

	/* Font Families (declared in typography.css) */
	--font-primary: 'RivieraNights-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-light: 'RivieraNights-Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-heading: 'Cormorant Garamond', Georgia, serif;

	/* Font Sizes */
	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 17px;
	--text-lg: 20px;
	--text-xl: 24px;
	--text-2xl: 32px;
	--text-3xl: 40px;
}







