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


/****************************************/
/* FONTS 								*/
/****************************************/

@font-face {
	font-family: 'NeueHelveticaPro'; 
	src: url('fonts/NeueHelveticaPro-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
	font-family: 'NeueHelveticaPro'; 
	src: url('fonts/NeueHelveticaPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'PPPlayground'; 
    src: url('fonts/PPPlayground-Medium.woff') format('woff');
    font-style: normal; 
}
@font-face {
    font-family: 'Romie'; 
    src: url('fonts/Romie-Medium.woff') format('woff');
	font-weight: 400;
    font-style: normal; 
}
@font-face {
    font-family: 'Romie'; 
    src: url('fonts/Romie-Bold.woff') format('woff');
	font-weight: 700;
    font-style: normal; 
}


/*
.kapakana-<uniquifier> {
  font-family: "Kapakana", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.prata-regular {
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}
*/

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




/****************************************/
/* CSS VARIABLES
/****************************************/
:root { 
	
	/* Spacers and gaps */
	--gap				: 24px;
	--gutter			: 24px;
	/***/
	
	
	/* Fonts */
	--primary-font		: "NeueHelveticaPro", Arial, sans-serif;
	--heading-font		: "Romie", sans-serif;
	--fancy-font		: "PPPlayground", serif; 
	/***/
	
	
	/* Base colors */
	--white-color		: #ffffff; 
	--lighter-color		: #fafafa; 
	--light-color		: #fefcf8; 
	--grey-color		: #D8DADC; 
	--dark-color		: #333333; 
	--darker-color		: #2b2b2b; 
	--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			: #fefcf8;
	--text-color		: #333333; 
	--heading-color		: #333333; 
	--link-color		: #000000; 
	--hover-color		: #6e6c68; 
	--primary-color		: #010101; /***/
	--secondary-color	: #fecb35; /***/
	--fancy-color		: #E9CF87; 
	/***/

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





/****************************************/
/* 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;
	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 {
	min-height: -webkit-fill-available;
	font-size: 10px;
}
body {
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: clip;
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5; 
	background-color: var(--bg-color);
	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(--hover-color);
}
h1, h2, h3, h4, h5, h6 {
	margin: 0.75em auto 0.5em auto;
}
h1, h2, h3 {
	font-family: var(--heading-font);
	text-wrap: balance; 
}
h1 {
	font-size: min(3em,6rem);
}
h2 {
	font-size: min(3em,5rem);
}
h3 {
	font-size: min(2em,4rem);
}
h4 {
	font-size: min(1.5em,3rem);
}
h5 {	
	font-size: 1em;
	font-weight: bold;
}
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: -0.5em;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
figure {
	overflow: hidden;
} 
figure > picture > img,
figure > img {
	max-width: 100%;
	height: auto;
}
b,
strong {
	font-weight: 700;
}
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) {
}

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

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





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

/* Custom scrollbars */
::-webkit-scrollbar {
	width: 16px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	border: 5px 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;
}
/***/

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

