/*
Theme Name: Sharpen's Rubin 
Theme URI:  
Author: Sharpen 
Author URI: http://www.sharpen.co.il/ 
Description: Custom theme for 'Rubin' project. 
Version: 1.0 
License: 
License URI:  
Tags:  
Text Domain: sharpen_rubin 
*/



/********************************/
/* CUSTOM FONTS
/********************************/

@font-face {
	font-family: 'Atlas DL 3.1 AAA';
	src: url('fonts/AtlasDL31AAA-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Atlas DL 3.1 AAA';
	src: url('fonts/AtlasDL31AAA-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Atlas DL 3.1 AAA';
	src: url('fonts/AtlasDL31AAA-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
    font-family: 'PPMonumentExtended';
    src: url('fonts/monumentextended-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PPMonumentExtended';
    src: url('fonts/monumentextended-ultrabold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}





/********************************/
/* CSS VARIABLES
/********************************/
:root {
	
	/* Spacers and gaps */
	--gap				: 16px;
	--gutter			: 16px;
	/***/
	
	
	/* Fonts */
	--primary-font		: "Noto Sans Hebrew", sans-serif;
	--secondary-font	: "Noto Sans Hebrew", sans-serif;
	--fancy-font		: "Atlas DL 3.1 AAA", serif; 
	/***/
	
	
	/* Base colors */
	--white-color		: #ffffff; 
	--lighter-color		: #fafafa; /***/
	--light-color		: #f8f8f8; /***/
	--grey-color		: #747474; 
	--dark-color		: #262262; /***/
	--darker-color		: #3a3a3a; /***/
	--black-color		: #000000; 
	
	--cold-color		: #e9f6fd; /***/
	--cool-color		: #f1f8f9; /***/
	--warm-color		: #fecb35; 
	--hot-color			: #f05944; 
	
	--alert-color		: #ff0000; /***/ 
	--error-color		: #ff0000; /***/
	--warning-color		: #ff0000; /***/
	/***/
	
	
	/* Theme specific colors */
	--bg-color			: transparent;
	--text-color		: #010101; 
	--heading-color		: #010101; 
	--link-color		: #00a2e5; /***/
	--link-hover-color	: #00a2e5; /***/
	--primary-color		: #010101;
	--secondary-color	: #fecb35; /***/
	--fancy-color		: #36acc9; 
	/***/

}
/********************************/





/********************************/
/* RESET
/********************************/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	/* Sharpen */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, 
ul {
	/*list-style: none;*/
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse; 
	border-spacing: 0; 
} 
/***/





/********************************/
/* HTML ELEMENTS
/********************************/
html {
	font-size: 10px;
}
body {
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: clip;
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25; 
	color: var(--text-color);
}
a {
	text-decoration: none;
	color: var(--link-color);
	-webkit-transition: color 0.2s ease;
			transition: color 0.2s ease;
}
a:hover, 
a:active, 
a:focus {
	color: var(--link-hover-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0.75em 0 0.5em 0;
	text-wrap: balance;
	color: var(--heading-color);
}
h1,
h2	{
	line-height: 0.8333em;
}
h3 {
	line-height: 1em;
}
h4, 
h5 {
	line-height: 1.1667em;
}

h1 {
	font-size: 40px;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: min(3em,5.4rem);
}
h4 {
	font-size: min(2em,4rem);
}
h5 {	
	font-size: 1em;
	font-weight: bolder;
}

p {
}

p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
table:not(:last-child) {
    margin-bottom: 1em;
}
p + ul,
p + ol {
	margin-top: -1em;
}

ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
figure {
	overflow: hidden;
} 
figure > img {
	display: block;
	max-width: 100%;
	height: auto;
}
b,
strong {
	font-weight: bolder;
}
small {
    font-size: 75%;
}
big {
    font-size: 125%;
}
blockquote, q {
	quotes: none;
}
blockquote:before, 
blockquote:after, 
q:before, 
q:after {
	content: '';
	content: none;
}
textarea{ 
	resize: none; 
	overflow: hidden; 
}


@media (min-width : 1200px) {
	body {
		font-size: 18px;
	}
	h1 {
		font-size: 4rem;
	}
	h2 {
		font-size: min(3.3333em,9rem);
	}
}


@media (min-width : 1600px) {
}





/********************************/
/* MISC.
/********************************/

/* Custom scrollbars */
/*
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	border-radius: 4px;
	background: transparent;
}
::-webkit-scrollbar-thumb {
	border: 3px solid transparent;
	border-radius: 9999px;
	background-clip: content-box;
	background-color: #aaa;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #888;
}
*/
/***/

/********************************/
