/* Reset */
* nav{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
	
}

li {
	font-size: 120%;
	font-weight: 800;
}

.nav-bar a.active {
  color: #00c6ff;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #111; /* tiefer dunkelgrau */
  color: #eee;
}

/* Header */
.portfolio-header {
  background-color: rgba(26,26,26,0.96); /* noch dunkleres Grau */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6); /* schwarzer DropShadow */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
	font-family: "Futura PT Light";
  font-size: 2.6rem;
  font-weight: 100;
  letter-spacing: 2px;
  color: #fff;
  text-transform: ;
}


/* Navigation */
.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-bar a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Avantgardistische Hover-Effekte */
.nav-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}

.nav-bar a:hover {
  color: #fff;
}

.nav-bar a:hover::after {
  width: 100%;
}

.tiles {
  display: flex;
  width: 100%;
}

.tile {
  position: relative;
  flex: 1; /* alle gleich breit */
  overflow: hidden;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0); /* unsichtbar */
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.4s ease;
}

.tile:hover .overlay {
  background: rgba(0,0,0,0.4); /* Abdunklung */
}

.tiles {
  display: flex;
	justify-content: center; 
margin: 0 auto;
  width: 100%;
	max-width: 1920px;
  perspective: 1000px; /* wichtig für 3D-Effekt */
}

.tile {
  position: relative;
  flex: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.4s ease;
}

/* Hover-Effekt */
.tile:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.tile:hover .overlay {
  background: rgba(0,0,0,0.4);
}

.tiles {
  display: flex;
  width: 100%;
  perspective: 1000px; /* wichtig für 3D-Effekt */
}

.tile {
  position: relative;
  flex: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.4s ease;
}

.tile:hover .overlay {
  background: rgba(0,0,0,0.4);
}

.about-section {
  background-color: #111; /* tiefer dunkelgrau */
  color: #eee;
  padding: 6rem 2rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05) rotateY(5deg);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: 2px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(90deg, #ff0057, #00c6ff);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.portfolio-footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #00c6ff;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  font-size: 1.6rem;
  text-decoration: none;
  color: #eee;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  color: #ff0057;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.dynamic-hero {
  position: relative;
  width: auto;
  height: 80vh;
  background: url("skeleton-angel1.png") right no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	padding-left: 5%;
  color: #fff;
  transition: background-image 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* Abdunklung */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40%;
  padding: 2rem;
}

.hero-content h2 {
	
font-family: "Pirata One";
  font-size: 5.4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
	center; transition: text-shadow 0.6s ease-in-out;
}

.hero-content:hover h2 {
	
font-family: "Pirata One";
  font-size: 5.4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
	text-shadow: 0 0 10px #8E8E8E, 
		0 0 20px #8E8E8E, 0 0 40px #8E8E8E, 0 0 80px #8E8E8E
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-thumbnails {
  display: flex;
  gap: 1rem;
}

.hero-thumbnails img {
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-thumbnails img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}


.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.playball-regular {
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
}

.pirata-one-regular {
  font-family: "Pirata One", system-ui;
  font-weight: 100;
  font-style: normal;
}


/* 2nd Hero */
.dynamic-hero1 {
  position: relative;
  width: auto;
  height: 80vh;
  background: url("skeleton-angel1.png") right no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	padding-left: 5%;
  color: #fff;
  transition: background-image 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.hero-overlay1 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* Abdunklung */
  z-index: 1;
}

.hero-content1 {
  position: relative;
  z-index: 2;
  max-width: 40%;
  padding: 2rem;
}

.hero-content1 h2 {
	
font-family: "Pirata One";
  font-size: 5.4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
	center; transition: text-shadow 0.6s ease-in-out;
}

.hero-content1:hover h2 {
	
font-family: "Pirata One";
  font-size: 5.4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
	text-shadow: 0 0 10px #8E8E8E, 
		0 0 20px #8E8E8E, 0 0 40px #8E8E8E, 0 0 80px #8E8E8E
}

.hero-content1 p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-thumbnails1 {
  display: flex;
  gap: 1rem;
}

.hero-thumbnails1 img {
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-thumbnails1 img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}


<style> @import url('https://fonts.googleapis.com/css2?family=Italiana&family=Pirata+One&family=Playball&family=Bodoni+Moda+SC:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cinzel+Decorative:wght@400;700;900&family=Lavishly+Yours&family=Major+Mono+Display&display=swap');