/* CSS reset start  */
body {
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0px;
	margin: 0px;
	cursor: default;
	overflow: hidden;
	scroll-behavior: smooth;
	color: white;
}

body * {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

:root{
	--primary-color: rgba(212, 187, 160, 1);
	--secondary-color: rgba(25, 41, 54, 1);
}

a,
a:active,
a:link,
a:link:visited {
	color: white;
	text-decoration: none;
	display: contents;
}

.site_wrapper{
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100dvh;
	padding: 0px;
	margin: 0px;
	cursor: default;
	background-color: white;
	user-select: none;
	overflow-y: scroll;
	scroll-behavior: smooth;

}



/* CSS reset end  */


/* Csúszka start */

/* Firefox (külön szintaxis) */
* {
  scrollbar-width: thin;                /* "auto" vagy "thin" */
  scrollbar-color: var(--secondary-color);        /* [thumb] [track] */
}

/* Csúszka end */

h1 {
	color: var(--secondary-color);
}

.site-wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	
}

header {
	background-color: white;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;

}

h1 {
	font-family: "NordRegular";
	font-size: 3.5vw;
	padding: 4vh 0;
	text-align: center;
}

main{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;

}

/*   SECTION FIRST    */
#first{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	color: var(--secondary-color);
	width: 100%;
}

#f_text {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-evenly;

    align-items: baseline;

    width: 40%;
 
}

#f_text h2,h3 {
	padding-left: 10vw;
}

#logo_wrapper img{
	padding-left: 10vw;
}

#logo_wrapper{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	background-color: var(--secondary-color);
	padding: 2vh 0 2vh 0;
	border-radius: 0 80px 80px 0;
	position: relative;
	width: 60%;
}

#f_text_main{
	padding-top: 2vh;
	padding-bottom: 2vh;
}

#logo_wrapper img{
	width: 80%;
}

#f_img{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	width: 60%;
	
	overflow: hidden;
	
}

#f_img img{
	position: relative;
	left: 30px;
}

h2{
	font-family: "MontserratBold";
	font-size: 7vw;
	font-weight: 700;
}


#f_text_sub{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

h3 {
	font-family: "MontserratBold";
	font-size: 3vw;
}

/*   SECTION SECOND    */

#second{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	width: 80%;
	border-radius: 0 0 80px 80px;
	font-family: "MontserratBold";
	font-size: 3vw;
	font-weight: 700;
	gap: 2vh;
	height: max-content;
	z-index: 1;
}

#s_img{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	padding-top: 3vh;

}

#s_img img{
	width: 7vw;
	height: auto;
}

#s_text{

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-bottom: 3vh;
}


/*   SECTION THIRD    */

#third {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	width: 100%;
	height: 250px;
	gap: 5vh;
	position: relative;
	padding-top: 7vh;
	margin-top: -60px;
	z-index: 0;

}

#t_text{
	font-family: "MontserratBold";
	font-weight: 900;
	font-size: 1.3em;
	color: var(--secondary-color);
	

}

#t_button_wraper{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 50px;
}

.button{
    border-radius: 8px;
    font-family: 'MontserratBold';
	font-size: 0.9em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--secondary-color);
    color: white;
    width: max-content;
    cursor: pointer;
}

/*       FOOTER       */
footer{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	
	position: relative;
}

footer div {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}

footer img{
	padding: 3vh 0;
	width: 50%;
	max-width: 120px;
}

@font-face {
	font-family: "NordRegular";
	src: url(fonts/NORD-Light.otf);
}

@font-face {
	font-family: "MontserratMedium";
	src: url(fonts/Montserrat-Medium.ttf);
}

@font-face {
	font-family: "MontserratBold";
	src: url(fonts/Montserrat-SemiBold.ttf);
}