/* CSS Document */
/* ===================== */
/* Reset & Grundfarben */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
}

/* ===================== */
/* Links & Buttons */
a, button {
  outline: none;
  text-decoration: none;
  color: inherit;
}

a:focus, button:focus {
  outline: none;
  box-shadow: none;
}

/* ===================== */
/* Menü */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0));
}

.menu nav {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 32px;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 51;
  color: #fff;
}

.menu a:hover {
  color: #000;
  transform: scale(1.02);
}

/* ===================== */
/* Logo */
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
/* ===================== */
/* Über-Seite Foto */
.ueber-foto {
  width: 210px;
  height: auto;
}
/* ===================== */
/* Startseite Hero-Slideshow */
.hero-text {
  position: absolute;
  top: 20%;
  left: 140px;
  max-width: 900px;
  color: #fff;
  z-index: 10;
}

.hero-text h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 4rem;
  letter-spacing: -1px;
  line-height: 1.2;
  transition: color 0.3s ease, transform 0.2s ease;
}
.hero-arbeiten {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Text links, Bilder rechts */
  min-height: 100vh;
  gap: 60px;
  padding: 6rem 6%;
  position: relative;
}
.hero-index {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-index .slides {
  position: absolute;
  inset: 0;
}

.hero-index .slides img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-index .slides img.active {
  opacity: 1;
  z-index: 2;
}

/* ===================== */
/* Hero-Text Startseite */
.hero-text-index {
  position: absolute;
  top: 40%;
  left: 140px;
  max-width: 900px;
  color: #fff;
  z-index: 10;
}

.hero-text-index h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 4rem;
  line-height: 1.2;
}

.hero-text-index h1 .yellow { color: #FFD700; font-style: italic; }
.hero-text-index h1 .gray   { color: #555; font-style: italic; }

.hero-text-index p {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1rem;
}

.hero-text-index .quote {
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: #f5c400;
  margin-bottom: 1.5rem;
}

.hero-text-index .portfolio-link {
  color: #FFD700;
  font-style: italic;
  margin-left: 8px;
}

.hero-text-index .portfolio-link:hover {
  color: #fff;
}

/* ===================== */
/* Footer */
.footer-links {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  z-index: 10;
}

.footer-links a {
  color: #ffd400;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links span { color: #ffd400; }

.footer-links a:hover { text-decoration: underline; }

/* ===================== */
/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 40;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #FFD700;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
  transition: width 0.25s ease, height 0.25s ease;
}

.cursor-dot.menu-hover {
  width: 58px;
  height: 58px;
  background-color: rgba(255, 215, 0, 0.9);
  animation: none;
  mix-blend-mode: difference;
}

.cursor-dot.logo-hover {
  width: 120px;
  height: 120px;
  background-color: rgba(255, 215, 0, 0.85);
  animation: none;
  mix-blend-mode: difference;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  50%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* ===================== */
/* Responsive */
@media (max-width: 768px) {
 .hero-text-index {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 60px; /* Text nach unten */
    max-width: 100%;
  }
  .hero-text-index h1 { font-size: 2.5rem; }
  .hero-text-index p  { font-size: 1rem; }
  .hero-text {
    left: 20px;
    right: 20px;
    top: 90px;   /* direkt unter dem Menü / Logo */
    bottom: auto;
    max-width: 90%;
  }
  .hero-ueber img {
  width: 25%;
  margin: 20px auto;
  display: block;
}
}
