/**
 * Aurevya Avada Child - Typography
 * Font declarations and base text styles
 */

/* ==========================================================================
   Font Face Declarations
   ========================================================================== */

@font-face {
	font-family: 'RivieraNights-Regular';
	src: url('../../fonts/RivieraNights-Regular.otf') format('opentype'),
		 url('../../fonts/RivieraNights-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RivieraNights-Light';
	src: url('../../fonts/RivieraNights-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

/* Google Fonts - Cormorant Garamond is loaded via functions.php */

/* ==========================================================================
   Base Typography
   ========================================================================== */

body {
	font-family: var(--font-primary);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--aurevya-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--aurevya-navy);
	line-height: 1.3;
	margin-bottom: 0.5em;
}

h1 {
	font-size: var(--text-3xl);
}

h2 {
	font-size: var(--text-2xl);
}

h3 {
	font-size: var(--text-xl);
}

h4 {
	font-size: var(--text-lg);
}

h5,
h6 {
	font-size: var(--text-base);
}

p {
	font-family: var(--font-primary);
	font-size: var(--text-base);
	margin-bottom: 1em;
}

.teaser {
	font-family: var(--font-primary);
	font-size: var(--text-base);
	color: var(--aurevya-navy);
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
	color: var(--aurevya-navy);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover,
a:focus {
	color: var(--aurevya-gold);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-gold {
	color: var(--aurevya-gold) !important;
}

.text-navy {
	color: var(--aurevya-navy) !important;
}

.text-white {
	color: var(--aurevya-white) !important;
}

.font-light {
	font-family: var(--font-light);
}

.font-heading {
	font-family: var(--font-heading);
}







