/* montserrat-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('./Assets/montserrat-v30-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('./Assets/montserrat-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('./Assets/montserrat-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('./Assets/montserrat-v30-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('./Assets/montserrat-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('./Assets/montserrat-v30-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Grundfarben und Variablen */
:root {
  --pink: #ff5c8a;
  --accent: #3fdc8c;
  --white: #fff;
  --black: #222;
  --gray: #f7f7f7;
  --font-main: 'Montserrat', 'Arial', sans-serif;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}
.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: inherit;
}
.logo span { color: var(--pink); }
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  margin-left: 2.2rem;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--pink);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, #ff7fbf 60%);
  color: var(--white);
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  transform: translateX(-50%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
}
.hero .subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 2.2rem;
  font-weight: 500;
  opacity: 0.8;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}
.hero-buttons a {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 2px;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--pink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-buttons a:last-child {
  background: transparent;
  color: var(--white);
}
.hero-buttons a:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--white);
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  pointer-events: none;
  opacity: 0.85;
  animation: heroDotWobble 6s ease-in-out infinite alternate;
  z-index: 1;
  transition: background 0.2s;
  }
.hero-dot.complement {
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 1;
  }
@keyframes heroDotWobble {
  0% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(calc(var(--x-move) * 0.3), calc(var(--y-move) * 0.2)) scale(1.04); }
  40% { transform: translate(calc(var(--x-move) * 0.7), calc(var(--y-move) * 0.6)) scale(0.98); }
  60% { transform: translate(var(--x-move), var(--y-move)) scale(1.06); }
  80% { transform: translate(calc(var(--x-move) * 0.5), calc(var(--y-move) * 0.8)) scale(0.96); }
  100% { transform: translate(0, 0) scale(1); }
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.2rem 2rem 1.2rem;
}
section {
  margin-bottom: 3rem;
  position: relative;
}
section:not(:first-child)::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pink);
  opacity: 0.18;
  border-radius: 2px;
  margin: 0 auto 2rem auto;
}
h2, .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  color: var(--pink);
}

/* Grid für Über mich & Portfolio */
.portfolio-bento-grid, .bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  margin: 2.5rem 0 0 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .portfolio-bento-grid, .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .portfolio-bento-grid, .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
}

/* Boxen */
.portfolio-item, .bento-item {
  background: var(--gray);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  border-left: 5px solid var(--pink);
  min-height: unset;
  color: #222;
  text-decoration: none;
  position: relative;
}
a.portfolio-item {
  cursor: pointer;
}
.portfolio-item.large, .bento-item.large {
  grid-column: span 2;
  min-height: 220px;
}
.portfolio-item h3, .bento-item h3 {
  color: var(--pink);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
  transition: color 0.2s;
  border-left: none;
}
.portfolio-item p, .bento-item p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

/* Portfolio-spezifisch */
.portfolio-year {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--pink);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.18em 0.7em 0.12em 0.7em;
  border-radius: 1.1em 0 0 1.1em / 1.7em 0 0 1.1em;
  box-shadow: 0 2px 8px rgba(255,92,138,0.13);
  z-index: 2;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.portfolio-item:hover .portfolio-year {
  background: #111;
  }
.portfolio-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
  object-fit: cover;
  aspect-ratio: 4/3;
  align-self: flex-end;
  }

/* Hover-Effekte nur für Portfolio-Links */
a.portfolio-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.03);
  border-left: 5px solid #111;
  color: #111;
}
a.portfolio-item:hover h3 {
  color: #111;
}

/* Kontakt & Footer */
.contact-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255,92,138,0.3);
  position: relative;
}
.cta-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,92,138,0.4);
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  padding: 3rem 1rem 1.5rem 1rem;
  border-top: 1px solid #eee;
  margin-top: 4rem;
  letter-spacing: 0.04em;
  background: var(--gray);
}
.footer-links {
  margin-top: 1rem;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--pink);
}

/* Utility */
.accent { color: var(--accent); font-weight: 700; }

/* Animationen (optional, falls noch genutzt) */
.distraction {
  position: fixed;
  color: #FFD700;
  font-size: 24px;
  font-weight: bold;
  pointer-events: none;
  z-index: 1000;
  animation: flyAcross 8s linear infinite;
  opacity: 1;
}
@keyframes flyAcross { 0% { transform: translateX(-100px) translateY(0px) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(calc(100vw + 100px)) translateY(100px) rotate(360deg); opacity: 0; } }
@keyframes flyAcrossReverse { 0% { transform: translateX(calc(100vw + 100px)) translateY(0px) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(-100px) translateY(100px) rotate(-360deg); opacity: 0; } }
@keyframes flyUp { 0% { transform: translateX(0px) translateY(calc(100vh + 100px)) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(100px) translateY(-100px) rotate(360deg); opacity: 0; } }
@keyframes flyDown { 0% { transform: translateX(0px) translateY(-100px) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(100px) translateY(calc(100vh + 100px)) rotate(-360deg); opacity: 0; } }
@keyframes flyDiagonal1 { 0% { transform: translateX(-100px) translateY(-100px) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(calc(100vw + 100px)) translateY(calc(100vh + 100px)) rotate(360deg); opacity: 0; } }
@keyframes flyDiagonal2 { 0% { transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(0deg); opacity: 0; } 10%,90% { opacity: 0.7; } 100% { transform: translateX(-100px) translateY(calc(100vh + 100px)) rotate(-360deg); opacity: 0; } }
@keyframes flashAppear { 0% { opacity: 0; transform: scale(0) rotate(0deg); } 10% { opacity: 1; transform: scale(1.5) rotate(180deg); } 20% { opacity: 1; transform: scale(1) rotate(360deg); } 80% { opacity: 1; transform: scale(1) rotate(720deg); } 100% { opacity: 0; transform: scale(0) rotate(1080deg); } }
@keyframes quickZap { 0% { opacity: 0; transform: translateX(-50px) scale(0); } 20% { opacity: 1; transform: translateX(0) scale(2); } 30%,70% { opacity: 1; transform: translateX(0) scale(1); } 100% { opacity: 0; transform: translateX(50px) scale(0); } } 

.flying-greek {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: bold;
  user-select: none;
  pointer-events: none;
  text-shadow: 0 0 8px #fff, 0 0 16px currentColor, 0 0 2px #fff;
  will-change: transform, opacity, left, top;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.flying-greek.big {
  font-size: 160px !important;
  font-weight: 900;
  z-index: 9999;
  text-shadow: 0 0 24px #fff, 0 0 48px currentColor, 0 0 8px #fff;
} 

/* Zitatbox für Stückseiten */
blockquote.quote {
  background: #f7f7f7;
  border-left: 5px solid var(--pink);
  margin: 2.5rem 0 2.5rem 0;
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  font-size: 1.25rem;
  color: #222;
  font-style: italic;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
}
blockquote.quote p {
  margin: 0 0 1.2rem 0;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
blockquote.quote .credit, blockquote.quote footer.credit {
  margin-top: 0.2em;
}
blockquote.quote footer {
  text-align: right;
  color: #888;
  font-size: 1.05rem;
  font-style: normal;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
} 

.insta-link {
  display: inline-block;
  margin-left: 1.2rem;
  transition: none;
  border-radius: 50%;
}
/* Entferne Hover- und Focus-Effekte für das Instagram-Logo */
.insta-link:hover svg rect,
.insta-link:focus {
  outline: none;
  box-shadow: none;
} 
