* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  /*background-image: url('https://images.unsplash.com/photo-1485470733090-0aae1788d5af?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1517&q=80');*/
  height: 100vh;
  background-color: #000;
  background-size: cover;
  background-position: center;
  
}

li {
	list-style: none;
	color: #000000;

}

a{
	text-decoration: none;
    color: #000000;
	font-size: 1rem;
}

a:hover{
	color: #9C0255;
}

/*HEADER*/
header {
	position: relative;
	padding: 20px 2rem;
	background-color: #FBE2E2;   /* pozadina headera  */
}

.navbar{
	width: 100%;
	height: 60px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;  /*ja mijenjao*/
	/*justify-content: flex-end;*/  /*sve desno*/
	/*justify-content: center;*/

}

.navbar .logo{
	/*padding: 10px 0px;*/
	padding: 0px 0px;
	font-size: 1.5rem;
	font-weight: bold;	
	/*margin-right: auto;*/  /* ja  */
	/*align-items: left;*/
	margin-left: -30px;
}

.navbar .links{
	display: flex;  /*u jednom redu, ako se ukine, budu jedan ispod drugog*/
	gap: 2rem;	
	margin-right: calc(550px - 100%);/*-400px;*/  /*kalkulacija desne margine na osnovu širine stranice*/
	
}

.navbar .toggle_btn{
	color: #333333;
	font-size: 1.5rem;
	cursor: pointer;
	display: none;
}

.action_btn{
	background-color: #9C0255;
	color: #fff;
	padding: 0.5rem 1rem;
	border: none;
	outline: none;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: bold;
	cursor: pointer;
	margin-left: 25px;  /*ja */
	transition: scale 0.2 ease;
}

.action_btn:hover{
	scale: 1.05;
	color: #fff;
	
}


.action_btn:active{
	scale: 0.95;
	color: #fff;
	
}

/*DROPDOWN MENU*/

.dropdown_menu{
	display: none;
	position: absolute;
	right: 0rem;
	top: 100px; /*60px;*/  /*polozaj menija u odnosu na vrh*/
	width: 300px;
	height: 0;
	background: rgba(255, 255, 255, 0.3);  /*0.1*/
	backdrop-filter: blur(15px);
	border-radius: 10px;
	overflow: hidden;
	transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
	height: 240px; 
	width: 100%; 
}

.dropdown_menu li{
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown_menu .action_btn{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-left: 0px;  /*ja */
}

/*HERO*/
section#hero{
	height: calc(100vh-60px);
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

/*RESPONSIVE*/

@media(max-width: 992px){
	.navbar .links,
	.navbar .action_btn{
		display: none;
	}
	
	.navbar .toggle_btn{
		display: block;
	}	
	
	.dropdown_menu {
		display: block;
	}	
	
}

@media(max-width: 576px){
	.dropdown_menu {
		/*left: 2rem;*/  /*margina lijevo*/
		width: unset;
		/*width: 100%;*/
	}		
	
}