* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand';
  font-weight: 300;
  letter-spacing: 3px;
}

body {
  display: flex;
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  color: rgb(115, 197, 230);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#493d3d, #414141, #b4b4b4);
  z-index: -10;
}
p {
  font-size: .7rem;
  color: #f7f700;
}
h2 {
  font-size: 1.2rem;
}
b {
  font-weight: 800;
  color: white;
}

.plain-link {
  all: unset;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.plain-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.plain-link:hover {
  color: #007aff; /* optional: Farbe beim Hover ändern */
}

.plain-link:hover::after {
  transform: scaleX(1);
}

.responsive-video{
  object-fit: cover;
  width: 100vw;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 0;
}


img {
  cursor: pointer;
}
/* Lightbox */
#lightbox {
  z-index: 1000000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
#lightbox.active {
  display: flex;
  position:fixed;
  top: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#lightbox img {
  display: flex;
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  padding: 4px;
  background-color: black;
  border: 2px white solid;
  align-items: center;
  justify-content: center;
}

/* HEADER--------------------------------------------------------------- */
header {
  display: flex;
  flex-grow: 2 1 1;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0px 0px 15px 15px;
  width: 100%;
  height: 120px;
  padding: 10px;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 100px;
}
.logo {
  position: absolute;
  width: 85px;
  height: 100px;
  margin: 0px;
  padding-left: 25px;
  padding-top: 30px;
  align-items: center;
  justify-content: center;
}
.logo .AH {
  font-family: 'IndieFlower-Regular';
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  color: #01c7c4;
  font-size: 2em;
  animation: textshadow 8s infinite alternate; 
  border-right: 1px solid white;
  border-radius: 30px;
}
@keyframes textshadow {
  0%   { text-shadow: 1px 1px 0px #333 }
  10%   { text-shadow: 3px 3px 2px #333 }
  20%  { text-shadow: 9px 10px 6px #999 }
  40%  { text-shadow: 10px 15px 6px #ccc }
  60%  { text-shadow: 0px 10px 4px #ccc }
  80%  { text-shadow: -10px 8px 3px #ccc }
  100%  { text-shadow: 1px 5px 1px #eee }
}
/* responsive menu */
.navbar {
  width: auto;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}
li {
  list-style: none;
}
li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 800;
  font-size: 1rem;
  padding: 10px;
}
li a:hover {
  color: rgb(0, 0, 0);
}
.navbar .links {
  display: flex;
  gap: 1rem;
}
.navbar .toggle_btn {
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}
.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 80px;
  width: 300px;
  background: rgba(170, 170, 170, 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: 0px;
}
.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .navbar{
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    border-radius: 10px;
  }
  .navbar .links {
    display: none;
  }
  .navbar {
    width: 100%;
  }
  .navbar .toggle_btn {
    display: block;
    position: absolute;
    right: 40px;
    top: 0px;
  }
  .dropdown_menu {
    display: block;
  }
}

/* --responsive Menu ende---------------- */
/* HEADER--------------------------------------------------------------- */
.section-about {
  display: flex;
  position: relative; 
  flex-flow: row wrap;
  top: 150px;
  width: 90vw;
  height: auto;
  /* border: 1px solid white; */
  border-radius: 20px;
  z-index: -1;
  padding-bottom: 0px;
  justify-content: space-evenly;
}
.aboutme::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("../ah-img/Buesum-Sun1.png");
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  filter: grayscale(10%);
  filter:opacity(0.8);
}
.aboutme {
  flex: 1 33%;
  min-width: 350px;
  position: relative;
  top: 0px;
  min-height: 400px;
  background-color: #252147;
  filter: opacity(0.8);
  border-radius: 20px;
}
.aboutme h2{
  position: absolute;
  bottom: 20px;
  width: 100%;
  color: white;
  padding: 20px;
  font-weight: 100;
  letter-spacing: 6px;
  text-align: center;
}
.aboutme .A {
  font-family: 'IndieFlower-Regular';
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
  color: #01c7c4;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(65, 139, 123);
  /* animation: textshadow 8s infinite alternate;  */
}
.aboutme .H {
  font-family: 'IndieFlower-Regular';
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
  color: #01c7c4;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(65, 139, 123);
  /* animation: textshadow 8s infinite alternate;  */
}
.aboutme p{
  position: absolute;
  flex-wrap: nowrap;
  padding-left: 20px;
  text-align: center;
  bottom: 10px;
  font-weight: 200;
  font-size: 16px;
}
.middle-content {
  flex: 1 33%;
  min-width: 350px;
  position: relative;
  flex-direction: column;
  background-color: #342e64;
  filter: opacity(0.8);
  border-radius: 20px;
}
.middle-content h3{
  padding: 30px;
  padding-bottom: 0px;
  color: white;
  font-weight: 300;
}
.middle-content p{
  flex-wrap: wrap;
  padding: 30px;
  font-size: 13px;
  font-weight: 200;
  color: yellow;
}
.middle-content img {
  float: right;
  width: 150px;
  height: auto;
  padding-left: 15px;
  padding-top: 10px;
}
.bild-rechts {
  flex: 1 33%;
  position: relative;
  top: 0px;
  background-color: #252147;
  filter: opacity(0.8);
  border-radius: 20px;
}
.bild-rechts h3 {
  padding: 20px;
  padding-bottom: 0px;
  color: white;
  font-weight: 300;
}
.bild-rechts p {
  width: 100%;
  top: 10px;
  text-align: left;
  padding: 10px;
  padding-right: 30px;
  margin: 10px;
  font-size: 13px;
  z-index: 3;
}
.bild-rechts img {
  float: right;
  max-width: 150px;
  height: auto;
  top: 0px;
  margin: 10px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border:1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ----------------------------------------------------------- */
.portfolio {
  display: flex;
  flex-direction: row;
  position: relative;
  top: 100px;
  left: 0px;
  margin: 0px;
  width: 90vw;
  z-index: -1;
  margin: 0;
  filter: opacity(0.9);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: absolute;
  align-items: flex-start;
  justify-content: space-evenly;
  top: 100px;
  left: 0px;
  height: auto;

  background: #252147;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.gallery img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  margin: 0px;
  border: 1px solid white;
  box-shadow: 10px 10px 15px rgba(30, 42, 65, 0.5);
}
 /* .gallery img:hover {
  width: 120%;
  height: auto;
} */
@keyframes bordershadow {
  0%   { box-shadow: 1px 1px 0px #333 }
  10%   { box-shadow: 3px 3px 2px #333 }
  20%  { box-shadow: 9px 10px 6px #330930 }
  40%  { box-shadow: 10px 15px 6px #3c0c58 }
  60%  { box-shadow: 0px 10px 4px #57518b }
  80%  { box-shadow: -10px 8px 3px #2d6d79 }
  100%  { box-shadow: 1px 5px 1px #2f7885 }
}
.gallery .beschreibung {
  color: #f7f700;
  font-size: 13px;
  line-height: 23px;
  max-width: 350px;
  border-radius: 20px;
  text-align: center;
  padding-bottom: 10px;

  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.gallery .beschreibung p {
  color: #f7f700;
}
.gallery .beschreibung h3 {
  color: white;
}
.gallery .abstand {
  display: flex;
  position: relative;
  width: 90vw;
  height: 100px;
}
.gallery .unterer-bereich {
  display: flex;
  position: relative;
  flex-flow: column wrap;
  width: 90vw;
  height: max-content;
  margin-bottom: 10px;
  margin-top: 0px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
}
.gallery .unterer-bereich .unten {
  display: flex;
  position: relative;
  width: 90vw;
  height: auto;
  padding: 15px;
  justify-content: space-between;
  align-self: flex-start;
  flex-wrap: wrap;

  background: rgba(80, 80, 67, 0.24);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  border: 0px solid rgba(255, 255, 255, 0.79);
}
.gallery .unterer-bereich .unten h3 {
  color: white;
  font-size: 20px;
  flex-grow: 1;
  align-self: flex-start;
  margin: 10px;
  margin-bottom: 10px;
}
.gallery .unterer-bereich .unten .A {
  font-family: 'IndieFlower-Regular';
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
  color: #01c7c4;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(65, 139, 123);
  /* animation: textshadow 8s infinite alternate;  */
}
.gallery .unterer-bereich .unten .H {
  font-family: 'IndieFlower-Regular';
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
  color: #01c7c4;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(65, 139, 123);
  /* animation: textshadow 8s infinite alternate;  */
}
.gallery .unterer-bereich .unten p {
  font-size: 13px;
  flex-grow: 4;
  margin: 0px;
  max-width: 100%;
  letter-spacing: 5px;
  color: #f7f700;
  padding: 10px;
}
.gallery .unterer-bereich .unten p img{
  margin-left: 0px;
  margin-top: 25px;
  margin-right: 25px;
  margin-bottom: 10px;
  width: 120px;
}
.gallery .unterer-bereich .unten .header-unten {
  position: relative;
  top: 15px;
  color: rgb(255, 255, 255);
  font-size: 16px;
}
.gallery .unterer-bereich img {
  float: left;
  width: 150px;
  height: auto;
  margin: 15px;
  margin-left: 0;
  border: none;
  border-radius: 20px;
  margin: 30px;
}



footer {
  display: block;

  width: 100vw;
  position: fixed;
  bottom: 0px;

  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  z-index: -1;
} 
footer:hover {
  background: rgba(80, 80, 80, 1);
}
footer p {
  padding: 10px;
  margin-bottom: 3px;
  text-align: center;
  font-size: .7rem;
}

