/* Styles für matthiashoffmann.de */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: gray;
  overflow-y: auto;
  overflow-x: hidden;
}

#container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.rectangle {
  position: absolute;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: none;
  color: white;
  font-size: 1.5vh;
  text-align: center;
  user-select: none;
  transition: left 0.5s ease, top 0.5s ease;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom left, #111111 50%, #333333 50%);
}

.wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(#A52A2A, #A52A2A, #FFA500, #FFA500);
  background-size: 100% 50%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.left-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom, #A52A2A, #FFA500);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.right-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom left, #111111 50%, #333333 50%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

#circle-image-container {
  position: absolute;
  top: 5%;
  left: 5%;
  max-width: 33.33vh;
  max-height: 33.33vh;
  width: 33.33vh;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}

#circle-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bild.jpg');
  background-position: center;
  background-size: cover;
}

#typewriter-header {
  position: absolute;
  top: 40%;
  left: 2%;
  font-family: monospace;
  font-size: clamp(0.8rem, 3.5vh, 3rem);
  color: #701010;
  border-color: white;
  border-width: 1px;
}

#typewriter-text {
  position: absolute;
  top: 45%;
  left: 2%;
  padding: 1%;
  margin-right: 2%;
  font-family: monospace;
  font-size: clamp(0.7rem, 1.8vh, 3rem);
  color: orange;
  background-color: #701010;
  border-color: white;
  border-width: 1px;
  border-radius: 10px;
}

#typewriter-llhead {
  position: absolute;
  top: 70%;
  left: 20%;
  font-family: monospace;
  font-size: clamp(0.8rem, 2.5vh, 3rem);
  color: orange;
  border-color: white;
  border-width: 1px;
}

#additional-container {
  position: absolute;
  top: 75%;
  left: 20%;
  width: 70%;
  max-width: 1000px;
  background-color: orange;
  border-radius: 10px;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.social-container {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /*width: 200px;*/
	font-size: clamp(0.7rem, 1.8vh, 3rem);
  background-color: black;
  border-radius: 10px;
  color: white;
  z-index: 1;
  padding-left: 25px;
  /*padding-right: 5px;*/
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.img-social{
  margin-right: 25px;
  margin-top: 16px;
  margin-bottom: 16px;
  cursor: pointer;
}

.button-container {
  margin: 10px;
  padding: 10px;
  flex: 1;
  min-width: 60px;
  max-width: 80px;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  font-size: clamp(0.8rem, 1.8vh, 1.2rem);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  z-index: 9999;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.lileft {
  text-align: left;
  float: left;
}

.liright{
  text-align: right;
  margin-right: 2vw;
}

.separator {
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
  float: left;
}

.menu a {
  text-decoration: none;
  color: white;
  padding: 5px;
}

.menu a:hover {
  color: orange;
}

.bt-main {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  width: 160px;
  height: 50px;
	font-size: clamp(0.7rem, 1.8vh, 3rem);
  background: transparent;
  border: none;
  position: relative;
  color: white;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.bt-main::after,
.bt-main::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.bt-main::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 10px;
}

.bt-main::after {
  transform: translate(5px, 5px);
  width: 170px;
  height: 20px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
}

.bt-main:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.bt-main:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.bt-main:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

/* Menü-Icon-Stile */
.menu-icon {
  position: fixed;
  top: 5px;
  left: 10px;
  cursor: pointer;
  z-index: 9998;
}

.barwhite {
  width: 50px;
  height:9px;
  border-radius: 2px;
  background-color: white;
}

.barwhitemenu {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 0.7rem;
  width: 50px;
  height: 15px;
  border-radius: 0;
  background-color: white;
  text-align: center;
}

.bargray {
  width: 50px;
  height: 5px;
  border-radius: 2px;
  background-color: rgba(128, 128, 128, 0.5);
}

.menu-container {
  position: fixed;
  top: 10vh;
  left: -300px; /* Menü ist standardmäßig ausgeblendet */
  width: 300px;
  background-color: lightyellow;
  border-radius: 10px;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
}

.menu-content {
  padding: 20px;
}

.menu-content ul {
  list-style-type: none;
  padding: 0;
}

.menu-content li {
  margin-bottom: 10px;
}

.menu-content a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

li.li_erste{
  margin-left: 10px;
}

li.li_zweite{
  margin-left: 20px;
}

li.li_head{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(0.6rem, 2vh, 3rem);
  color:black;
}

.menu-container a {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(0.8rem, 1.6vh, 2rem);
  text-decoration: none;
  color: black;
  padding: 5px;
}

.menu-container a:hover {
  color: orange;
}
