@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  overflow-x: hidden; /* Prevent horizontal scroll due to sliding sidebar */
  background-color: white;
}
.layer-2 .sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}

/* Adjustments for ABOUT US page - Sidebar (Layer-2): positioning to slide in 150px from the left */
.layer-2{
  position: fixed;
  top: 0;
  left: -150px; /* Start 150px off-screen to the left */
  width: 100px; /* Reduced width */
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
  border-right: 1px solid black;
  z-index: 2;
  transition: left 1s cubic-bezier(0.1, 0.2, 0.2, 1); /* Smooth slide-in */
}

/* Sidebar when active: set to 0 to align with the edge */
.layer-2.active {
  left: 0; /* Position at the edge of the page */
}
/* Logo: Responsive and centered within sidebar */
.logo {
  margin-top: 600%!important;
  max-width: 150%!important; /* Resize proportionally within the sidebar width */
  height: auto; /* Maintain aspect ratio */
  transform: rotate(-90deg); /* Rotate to vertical */
}

/* !Main content area styling */
.content {
  position: relative;
  z-index: 3; /* Above layer-1 and layer-2 */
  padding: 3px;
  margin-left: 200px; /* Offset to allow space for Layer-2 */
}
/* !*/
.content-text {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.6;
}
/* !Header with title and menu */
.header {
  display: flex;
  align-items: center;
  gap: 200px; /* Space between title and menu */
  margin-top: 20px;
}
/* !Text area with defined width and spacing */
.text-area {
  width: 400px!important; /* Set fixed width */
  margin: 0px auto 0; /* Center align with margin auto */
  margin-left: -20px;
  text-align: left; /* Left-align text within the area */
}

/* !Headline and paragraph styling */
.headline {
  font-size: 1.5rem;
  font-weight: 100;
  color: #888888;
  margin-bottom: 15px; /* Space below the headline */
  margin-left: -20px!important;
}

.menu ul {
  display: flex;
  list-style: none;
}

.menu-item {
  margin-right: 20px;
}