/* ============================
   Kaizen Theme Styles
   ============================ */

/* Variabiles */

:root {
	--text-color: #232323;
	
	--accent-color: #D53031;
	--accent-color-hover: #a82828;
	
	--max-width: 1200px;
	--max-width-medium: 960px;
	--max-width-small: 768px;
	
	--bg-primary: #F8F8F8;
	
	--primary-color: #E62F30;
	--primary-dark-color: #dd4747;
	--secondary-color: #0583d8;
	--secondary-dark-color: #0575c1;
	--dark-color: #000000;
	--light-color: #ffffff;
	--cream-color: #fff8eb;
	--lightgrey-color: #d3d3d3;
	--darkgrey-color: #777777;
	--halfwhite-color: #f8f8f8;
	--green-color: #45c998;
	--transparentred-color: #fff0f0;
	--button-primary: #E62F30;
	--button-primary-hover: #D53031;
	
	--padding-inline: 1rem;
	
	--font-family-default: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
	--font-family-source-sans-3: 'Source Sans 3';
}

/* Reset */
*, *::before, *::after {
	box-sizing: border-box;
	/* margin: 0;
	padding: 0; */
}

html {
	padding: 0;
	margin: 0;
	font-size: 16px;
}

/* Body și tipografie  */
body {
	font-family: var(--font-family-source-sans-3);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-color);
	background-color: #fff;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: clamp(2.2rem, 1.545rem + 3.273vw, 4rem);
	line-height: 1;
	letter-spacing: -2px;
	margin: 1em 0 1em 0;
}

h2, h3 {
	font-weight: 600;
	letter-spacing: -1px;
	margin: 1em 0 1em 0;
	line-height: 1.2;
}

h2 {
	font-size: clamp(2rem, 1.636rem + 1.818vw, 3rem);
	letter-spacing: -2px;
}

h3{
	font-size: clamp(1.6rem, 1.382rem + 1.091vw, 2.2rem);
	color: var(--accent-color);
}

/* Link-uri  */
a {
	color: #0583d8;
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: underline;
}

.center-wrap {
	max-width: var(--max-width);
	margin-inline: auto;
}

.max-medium {
	max-width: var(--max-width-medium);
	/* margin-inline: auto; */
}

.max-small {
	max-width: var(--max-width-small);
	/* margin-inline: auto; */
}


/*
	HEADER
*/

.site-header {
	padding: var(--padding-inline);
	background: var(--bg-primary);
}

.top-navigation {
	max-width: var(--max-width);
	margin-inline: auto;
}

/* === Container general === */
.container {
	width: 100%;
	padding-inline: var(--padding-inline);
}

.main-content {
	width: 100%;
}

.sidebar {
	width: 100%;
	margin-top: 2rem;
}



/* Top Nav */

.top-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

/* Branding */

.site-branding a,
.site-branding p {
	text-decoration: none;
	margin: 0;
	line-height: 1;
}

a.site-title {
	font-size: 1.7rem;
	line-height: 1.1;
	letter-spacing: -1px;
	font-weight: bold;
	color: var(--text-color);
}

.site-description {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

/* Main Nav */

.main-navigation ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

ul.nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.nav a {
	color: inherit;
	text-decoration: none;
	transition: all .3s;
}

.nav .current-menu-item a,
.nav a:hover, .nav a:focus {
	color: var(--accent-color);
}

/* Ham Icon */

.ham-icon {
	display: none;
	text-indent: -9999px;
	width: 32px;
	height: 32px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' fill='%23414141'%3E%3Cpath d='M4.792 30.292v-3.125h30.416v3.125Zm0-8.709v-3.166h30.416v3.166Zm0-8.75V9.667h30.416v3.166Z'/%3E%3C/svg%3E");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transform: scale(1, 1);
	transition: all .3s;
}

.ham-icon:hover {
	transform: scale(1.1, 1.1);
}

.ham-icon.close {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' fill='%23414141'%3E%3Cpath d='M10.458 31.75 8.25 29.542 17.792 20 8.25 10.458l2.208-2.208L20 17.792l9.542-9.542 2.208 2.208L22.208 20l9.542 9.542-2.208 2.208L20 22.208Z'/%3E%3C/svg%3E");
}

/* .ham-icon {display: none;} */

@media only screen and (max-width: 800px) {
	
	.main-navigation {
		width: 100%;
		display: none;
	}
	
	.main-navigation.menu-visible {
		display: block;
		margin-top: 1rem;
	}
	
	.ham-icon {
		display: block;
	}
	
	ul.nav {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.nav a {
		display: block;
		width: 100%;
	}
	
	.nav a:hover {
		padding-left: 1rem;
	}
	
}/* 800px */

/* Main content */

.main-content {
	font-size: 1.1rem;
	line-height: 1.5;
	padding-inline: var(--padding-inline);
	padding-block: 1rem 4rem;
}

.main-content ul {
	padding-inline-start: 1.2rem;
}

.main-content ul li {
	list-style-type: none;
	padding-left: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.41' height='11.732' viewBox='0 0 15.41 11.732'%3E%3Cpath id='ic_done_24px' d='M8.3,14.881,4.626,11.2,3.4,12.429l4.9,4.9L18.81,6.826,17.584,5.6Z' transform='translate(-3.4 -5.6)' fill='%23ef4949'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left top 10px;
	margin: 0 0 15px 0;
}

/* === Sidebar styling (optional) === */
.sidebar {
	background: var(--bg-primary);
	padding: var(--padding-inline);
}


/*
	FOOTER
*/

footer.site-footer {
	background: #222;
	color: #fff;
	padding: 1rem var(--padding-inline) 1rem;
}

footer.site-footer a {
	color: #fff;
	text-decoration: none;
}

footer.site-footer a:hover {
	text-decoration: underline;
}

footer.site-footer ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.footer-wrap {
	max-width: var(--max-width);
	margin-inline: auto;
}

.site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 1.5rem;
	font-size: .9rem;
	opacity: .8;
}

.footer-widgets {
	display: grid;
	gap: 2rem;
	margin-block: 3rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	line-height: 1.7;
}

.footer-widget {
	max-inline-size: 200px;
}

.widget-title {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	color: inherit;
}

/* 
	Swiper
 */
 
.swiper {
	--swiper-theme-color:#fff1f1;
	--swiper-navigation-size: 36px;
	--swiper-pagination-bullet-size: 10px;
	width: 100%;
	height: 80vh;
}
		
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #444;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
		
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}










