
      @font-face {
    font-family: 'Amatic SC';
    src: url("../css/fonts/AmaticSC-Regular.ttf");
}

@font-face {
    font-family: 'Amatic SC';
    font-weight:bold;
    src: url("../css/fonts/AmaticSC-Regular.ttf");
}

@font-face {
    font-family: 'Anonymous';
    src: url("../css/fonts/AnonymousPro-Regular.ttf");
}
@font-face {
    font-family: 'Montserrat';
    src: url("../css/fonts/Montserrat-Regular.ttf");
}


@font-face {
    font-family: 'Montserrat-b';
    src: url("../css/fonts/Montserrat-Black.ttf");
}


     /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Main Container */
.container {
  display: flex;
  margin: auto;
  height:80vh;
  margin-top:10vh;
  width:80vw;
}

/* Sidebar Profile Section */
.sidebar {
	width: 250px;
	padding: 20px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	/* border-right: 5px solid #8ba6be; */
}

.profile-image {
  width: 100%;
  height: 150px;
}

.profile-image img
{
	width:100%;
	height:150px;
    object-fit: cover;

}

.profile-name {
  width: 100%;
  text-align: right;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 24px;
  font-family: "Montserrat-b";

}


.profile-email {
  text-align: right;
  width: 100%;
  font-size: 14px;
  margin-bottom: 40px;
  font-style:italic;
  color: #2c3e50;
}



/* Navigation Menu */
.nav-menu {
  width: 100%;
}

.nav-menu a {
	display: block;
	padding-right: 5px;
	text-align: right;
	text-decoration: none;
	color: #2c3e50;
	font-size: 24px;
	font-weight: 700;
	font-family: 'Anonymous';
}



.nav-menu a.active{
  
  background-color: rgba(195, 200, 210, 0.5);
}

.nav-menu a:hover {
  background-color: rgba(195, 200, 210, 1);
}

main a{
	text-decoration:none;
	color:#b8430d;
	font-weight:800;
	
	}
	
	main a:hover{
	font-style: italic;
	
	}

/* Main Content Area */
.main-content {
	flex: 1;
	padding: 20px;
	display: flex;
	grid-template-rows: auto 135px auto;
	flex-direction: column;
	justify-content: space-between;
	/* border-top: 5px solid; */
	/* border-top-color: #aacdd6; */
	/* border-bottom: 5px solid; */
	/* border-bottom-color: #aacdd6; */
}
/* Responsive Design */
@media (max-width: 800px) {
  .container {
    flex-direction: column;
    width:90vw;
    height:auto;
    margin-top:0px;
  }

  #sidebar-top{
    display: flex;
  }

  #sidebar-name{
	display: flex;
	flex-direction: column;
	justify-content: end;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .main-content {
    padding: 40px 30px;
  }

.sidebar-content {
	width: 100%;
	padding: 10px 20px;
}

  .profile-image {
    width: 150px;
    height: 150px;
  }
.profile-name {
	font-size: 20px;
	margin-top: 0;
}

.profile-email {
	font-size: 12px;
	margin-bottom: 0px;
}

.nav-menu{
  margin-top:15px;
}

.nav-menu a {
	font-size: 16px;
	padding: 2px 10px;
}

  .main-content {
	padding: 0px 20px;
}

}




#select-lang {
	position: absolute;
	top: 10px;
	right: 30px;
  z-index: 50;
}

.lang-menu{
  display: flex;
  flex-direction: row;
}

.lang-menu a {
	padding-right: 10px;
	padding-left: 10px;
	text-align: right;
	text-decoration: none;
	color: #2c3e50;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Anonymous';
}



.lang-menu a.active{
  
  background-color: rgba(195, 200, 210, 0.5);
}

.lang-menu a:hover {
  background-color: rgba(195, 200, 210, 1);
}