/* Eleganter Hochzeitsfotografie-Stil */
:root {
  --font-primary: 'Montserrat', Arial, sans-serif;
  --font-swash: 'Great Vibes', cursive;
  --radius: 1.5rem;
  
  /* Light Mode (Standard) */
  --color-bg: #fff;
  --color-text: #111;
  --color-accent: #222;
  --color-cta: #111;
  --shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 6px rgba(0,0,0,0.03);
  
  /* Hintergrundfarben */
  --bg-primary: #fff;
  --bg-secondary: #f9f9f9;
  --bg-tertiary: #f5f5f5;
  
  /* Textfarben */
  --text-primary: #111;
  --text-secondary: #444;
  --text-tertiary: #666;
  
  /* Border/Focus */
  --border-color: #eee;
  --focus-ring: rgba(34, 34, 34, 0.1);
  
  /* Spezielle Komponenten */
  --warning-bg: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  --warning-border: #ffcccc;
  --warning-text: #d32f2f;
  
  /* Portfolio Lightbox */
  --lightbox-bg: rgba(0,0,0,0.95);
  --lightbox-content-bg: #fff;
  --lightbox-meta-bg: #f9f9f9;
  
  /* Footer */
  --footer-bg: #fff;
  --footer-bottom-bg: #fafafa;
}

/* ===== BASE RESET ===== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 18px;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.dynamic-island {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  margin: 1.5rem auto 2rem auto;
  max-width: 1200px;
  width: 90vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3.5rem;
  transition: box-shadow 0.3s;
  animation: fadeInDown 1s cubic-bezier(.4,0,.2,1);
}

.logo {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.swash {
  font-family: var(--font-swash);
  font-size: 2.1rem;
  color: var(--color-accent);
  margin-left: 0.2em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--color-accent);
}

/* ===== KATEGORIEN NAVIGATION ===== */
.categories-wrapper {
  position: relative;
  margin: 2rem 0;
}

.categories-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: #f9f9f9;
  border-radius: 2rem;
  border: 1.5px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categories-header:hover {
  background: #f0f0f0;
  border-color: #ddd;
}

.categories-header span {
  font-weight: 600;
  color: var(--color-text);
}

.hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.categories-header.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.categories-header.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.categories-header.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.portfolio-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.category-btn {
  padding: 0.7rem 1.5rem;
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 2rem;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Mobile Kategorien */
@media (max-width: 768px) {
  .categories-header {
    display: flex;
    max-width: 300px;
    margin: 0 auto 1.5rem auto;
  }
  
  .portfolio-categories {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem 1.5rem;
    margin: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease;
    border-radius: var(--radius) 0 0 var(--radius);
  }
  
  .portfolio-categories.active {
    right: 0;
  }
  
  .category-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  /* Overlay für bessere UX */
  .categories-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(3px);
  }
  
  .categories-overlay.active {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  max-width: 700px;
  margin: 5rem auto 0 auto;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 3.5rem 2rem 3rem 2rem;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}

.hero h1 {
  font-family: var(--font-swash);
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
  font-weight: 400;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.2rem;
  color: #222;
}

.cta {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cta:hover {
  background: #333;
  transform: translateY(-2px) scale(1.04);
}

/* ===== SECTION STYLES FÜR ALLE SEITEN ===== */
.section-3d, .about, .team, .contact, .impressum, .portfolio-intro, .portfolio-gallery {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem 2.2rem 2rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 900px;
  width: 90%;
}

.section-3d h1, .about h1, .team h1, .contact h1, .impressum h1, .portfolio-intro h1 {
  font-family: var(--font-swash);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font-weight: 400;
  text-align: center;
}

/* ===== KONTAKT FORMULAR ===== */
.contact-form-3d {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem 2.2rem 2rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-3d label {
  font-size: 1.1rem;
  color: #111;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-form-3d input,
.contact-form-3d textarea,
.contact-form-3d select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 1rem;
  border: 1.5px solid #eee;
  font-size: 1.1rem;
  font-family: var(--font-primary);
  background: #fafafa;
  color: #111;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: border 0.2s;
}

.contact-form-3d input:focus,
.contact-form-3d textarea:focus,
.contact-form-3d select:focus {
  border: 1.5px solid var(--color-accent);
  outline: none;
}

.contact-form-3d select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

.contact-form-3d button.cta {
  align-self: flex-end;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-primary);
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  border: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.contact-form-3d button.cta:hover {
  background: #333;
  color: #fff;
}

/* ===== KATEGORIEN FÜR KONTAKTFORMULAR ===== */
.category-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.category-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: #f9f9f9;
  border-radius: 0.8rem;
  border: 1.5px solid #eee;
  cursor: pointer;
  transition: all 0.2s;
}

.category-option:hover {
  background: #f0f0f0;
  border-color: #ddd;
}

.category-option input[type="radio"] {
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.category-option label {
  margin: 0;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  flex: 1;
}

/* ===== WARNUNG MIT HAMMER ===== */
.warning-note {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  border: 2px solid #ffcccc;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: pulseWarning 2s infinite;
}

.warning-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: #d32f2f;
  animation: hammerSwing 3s ease-in-out infinite;
}

.warning-text {
  color: #d32f2f;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

@keyframes pulseWarning {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(211, 47, 47, 0); }
}

@keyframes hammerSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

/* ===== IMPRESSUM ===== */
.impressum-3d {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem 2.2rem 2rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.impressum-3d p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ===== TEAM ===== */
.team-3d {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem 2.2rem 2rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.team-member {
  background: #fafafa;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-member h2 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.team-member p {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.team-member span {
  color: #666;
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-portrait img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-text h1 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-highlights li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ===== PORTFOLIO ===== */
.portfolio-intro p {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.gallery-thumb-3d {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-thumb-3d img {
  border-radius: 1rem;
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
  text-align: center;
}

/* ===== PARTNER EMBED ===== */
.partner-embed {
  max-width: 700px;
  margin: 3.5rem auto 3.5rem auto;
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
}

.partner-title {
  font-family: var(--font-primary);
  font-size: 2.3rem;
  color: #f1f1f1;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 #fff, 0 4px 12px #ffb6d5;
}

.partner-desc-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-desc-lead {
  color: #a7a7a7;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.partner-highlight {
  color: #1ecb6b;
  font-weight: 700;
}

.partner-desc-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  margin-bottom: 1.2rem;
}

.partner-desc-item {
  background: #fff;
  border: 1.5px solid #ffb6d5;
  border-radius: 0.9rem;
  padding: 1.1rem 1.3rem 0.7rem 1.3rem;
  color: #ff2e7a;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 1px 8px rgba(255,46,122,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: background 0.2s, border 0.2s;
}

.partner-desc-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.13rem;
  font-weight: 700;
}

.partner-icon-svg {
  display: none;
}

.partner-desc-sub {
  color: #b85c7a;
  font-size: 1.01rem;
  font-weight: 500;
  margin-left: 0;
}

.partner-desc-item:hover {
  background: #faf6ea;
  border-color: #ff2e7a;
}

.partner-desc-more {
  color: #7a6f5c;
  font-size: 1.05rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.partner-desc-more-sub {
  color: #b5a89a;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 400;
}

.partner-btn-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff2e7a 0%, #ff7eb3 100%);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 800;
  padding: 1.1rem 2.2rem;
  border-radius: 2.5rem;
  box-shadow: 0 2px 12px rgba(255,46,122,0.13);
  text-decoration: none;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.partner-btn-discord:hover {
  background: linear-gradient(90deg, #ff7eb3 0%, #ff2e7a 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.partner-btn-icon {
  display: none;
}

@media (max-width: 700px) {
  .partner-embed {
    max-width: 99vw;
    padding: 1.2rem 0.3rem;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-download {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FULL WIDTH FOOTER ===== */
.full-width-footer {
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07), 0 -1.5px 6px rgba(0,0,0,0.03);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 6rem;
  width: 100%;
  padding-top: 4rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem;
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 2rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.social-btn:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-btn svg {
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-equipment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.equipment-item {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

.equipment-note {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  line-height: 1.4;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item strong {
  font-size: 0.9rem;
  color: #888;
  font-weight: 600;
}

.contact-item span, .contact-item a {
  font-size: 1rem;
  color: #444;
}

.contact-item a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-bottom-bar {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
  width: 100%;
  position: relative;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #888;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-link {
  color: #777;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--color-accent);
}

.separator {
  color: #ddd;
  font-size: 0.8rem;
}

/* ===== PORTFOLIO LIGHTBOX SYSTEM ===== */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.portfolio-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.portfolio-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.portfolio-category {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.portfolio-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.portfolio-camera {
  font-size: 0.85rem;
  color: #777;
}

.portfolio-camera i {
  margin-right: 0.3rem;
  color: var(--color-accent);
}

.portfolio-download-btn {
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-download-btn:hover {
  background: #111;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .dynamic-island {
    max-width: 98vw;
    min-width: unset;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section-3d, .about, .team, .contact, .impressum, .portfolio-intro, .portfolio-gallery {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .footer-container, .footer-bottom-content {
    padding: 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    grid-column: span 1;
    padding-right: 0;
  }
  
  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .warning-note {
    flex-direction: column;
    text-align: center;
  }
  
  .category-options {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .dynamic-island {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
    width: 99vw;
  }
  
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero {
    padding: 2rem 0.5rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .social-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-form-3d {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .warning-icon {
    font-size: 1.5rem;
  }
  
  .warning-text {
    font-size: 0.85rem;
  }
}

/* ===== KONTAKT-SEITE ===== */
.contact-section {
    max-width: 600px;
    margin: 3rem auto 5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.contact-section h1 {
    font-family: var(--font-swash);
    font-size: 3.2rem;
    color: var(--color-accent);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.contact-form-container {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #111;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    border: 1.5px solid #eee;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    color: #111;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border: 1.5px solid var(--color-accent);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

.submit-btn {
    background: var(--color-cta);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-family: var(--font-primary);
    margin-top: 1rem;
    align-self: center;
    width: auto;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== WARNUNG HINWEIS ===== */
.warning-note {
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
    border: 1.5px solid #ffcccc;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulseWarning 2s infinite;
}

.warning-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    animation: hammerSwing 3s ease-in-out infinite;
}

.warning-text {
    color: #d32f2f;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
}

/* ===== RESPONSIVE ANPASSUNGEN ===== */
@media (max-width: 768px) {
    .contact-section {
        margin: 2rem auto 4rem auto;
        padding: 0 1rem;
    }
    
    .contact-section h1 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .warning-note {
        flex-direction: row;
        padding: 0.9rem 1.2rem;
    }
    
    .warning-text {
        font-size: 0.8rem;
    }
    
    .warning-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 2.4rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .warning-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .warning-text {
        text-align: center;
    }
}

/* ===== PORTFOLIO GALERIE STYLES - NEU & KORRIGIERT ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 5rem auto;
  padding: 0 1.5rem;
}

.portfolio-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.item-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .item-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .image-overlay {
  opacity: 1;
}

.view-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
}

.item-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.3;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}

.item-title:hover {
  color: #111;
}

.item-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

/* ===== KLEINER DOWNLOAD BUTTON ===== */
.item-download-btn {
  margin-top: auto;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 1.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  min-height: 36px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.item-download-btn:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-icon {
  font-size: 1rem;
}

/* ===== PORTFOLIO LIGHTBOX ===== */
.portfolio-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.lightbox-container {
  background: white;
  border-radius: var(--radius);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: #111;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lightbox-image-container {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  padding: 2rem;
  min-height: 300px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-info {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  max-height: 40vh;
}

.lightbox-info h2 {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.lightbox-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.lightbox-meta {
  background: #f9f9f9;
  padding: 1.2rem;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.meta-item:last-child {
  margin-bottom: 0;
}

.meta-item strong {
  color: #333;
  min-width: 120px;
}

.meta-item span {
  color: #555;
}

.lightbox-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  min-height: 50px;
}

.lightbox-download-btn:hover {
  background: #111;
  transform: translateY(-2px);
}

.download-icon {
  font-size: 1.2rem;
}

.download-note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ===== RESPONSIVE ANPASSUNGEN ===== */
@media (min-width: 768px) {
  .lightbox-content {
    flex-direction: row;
  }
  
  .lightbox-image-container {
    flex: 1;
    max-height: 70vh;
  }
  
  .lightbox-info {
    flex: 1;
    max-height: 70vh;
  }
  
  .lightbox-image {
    max-height: 60vh;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .item-image {
    height: 180px;
  }
  
  .item-info {
    padding: 1.2rem;
  }
  
  .item-title {
    font-size: 1.1rem;
    min-height: 2.5rem;
  }
  
  .item-download-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-height: 34px;
  }
  
  .btn-icon {
    font-size: 0.9rem;
  }
  
  .lightbox-container {
    max-height: 95vh;
  }
  
  .lightbox-image-container {
    padding: 1rem;
    min-height: 200px;
  }
  
  .lightbox-info {
    padding: 1.5rem;
  }
  
  .lightbox-info h2 {
    font-size: 1.5rem;
  }
  
  .meta-item {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .meta-item strong {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
  }
  
  .item-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== KLEINER LIGHTBOX DOWNLOAD BUTTON ===== */
.lightbox-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: auto;
  min-height: 44px;
  text-align: center;
  margin: 0 auto;
  max-width: 300px;
}

.lightbox-download-btn:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.download-icon {
  font-size: 1rem;
}

/* ===== "WIR SUCHEN DICH!" BEREICH ===== */
.join-us-section {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.03);
  padding: 3rem 3rem;
  max-width: 900px;
  margin: 4rem auto;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.join-us-section h2 {
  font-family: var(--font-swash);
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.join-us-tagline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.roles-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.role-badge {
  background: white;
  border: 2px solid #eaeaea;
  border-radius: 1.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.role-badge:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.application-methods {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2.5rem;
  display: block;
}

/* BUTTONS NEBENEINANDER */
.cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.cta-button {
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  min-width: 220px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button.contact {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.cta-button.contact:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-button.discord {
  background: linear-gradient(90deg, #5865F2 0%, #7289DA 100%);
  color: white;
  border: 2px solid #5865F2;
}

.cta-button.discord:hover {
  background: linear-gradient(90deg, #7289DA 0%, #5865F2 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .join-us-section {
    padding: 2.5rem 1.5rem;
    margin: 3rem auto;
  }
  
  .join-us-section h2 {
    font-size: 3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== STARTSEITE STYLES ===== */

/* HERO-BEREICH */
.hero {
  max-width: 700px;
  margin: 5rem auto 0 auto;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 3.5rem 2rem 3rem 2rem;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}

.hero h1 {
  font-family: var(--font-swash);
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
  font-weight: 400;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.2rem;
  color: #222;
}

.cta {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cta:hover {
  background: #333;
  transform: translateY(-2px) scale(1.04);
}

/* PORTFOLIO-VORSCHAU */
.portfolio-preview {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.portfolio-preview h2 {
  font-family: var(--font-swash);
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.preview-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.preview-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-5px);
}

.preview-image {
  background: #f9f9f9;
  border-radius: 1rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* BILD-STYLES */
.preview-img, .info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.5s ease;
}

.preview-item:hover .preview-img {
  transform: scale(1.05);
}

.preview-item h3 {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.preview-item p {
  color: #666;
  font-size: 1rem;
}

.cta.secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  display: inline-block;
  margin-top: 1rem;
}

.cta.secondary:hover {
  background: var(--color-accent);
  color: white;
}

/* INFO-BEREICH */
.info-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-section h2 {
  font-family: var(--font-swash);
  font-size: 3rem;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 2rem;
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

.info-highlights {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.info-highlights li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.info-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.info-image {
  background: #f9f9f9;
  border-radius: 1rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ANIMATIONEN FÜR DIE STARTSEITE */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
  .hero {
    margin: 3rem auto 0 auto;
    padding: 2.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .portfolio-preview h2,
  .info-section h2 {
    font-size: 2.5rem;
  }
  
  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-image {
    height: 200px;
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DATENSCHUTZ-SEITE ===== */
.privacy-section {
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 0 1.5rem;
}

.privacy-section h1 {
  font-family: var(--font-swash);
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}

.privacy-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  line-height: 1.6;
}

.privacy-content h2 {
  color: var(--color-accent);
  margin: 2.5rem 0 1rem 0;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.privacy-content h3 {
  color: #333;
  margin: 1.5rem 0 0.8rem 0;
  font-size: 1.1rem;
}

.privacy-content p {
  margin-bottom: 1rem;
  color: #444;
}

.privacy-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  color: #444;
}

.privacy-content a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: #111;
  text-decoration: underline;
}

.privacy-content strong {
  color: #222;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .privacy-section h1 {
    font-size: 3rem;
  }
  
  .privacy-content {
    padding: 2rem 1.5rem;
  }
  
  .privacy-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .privacy-section h1 {
    font-size: 2.5rem;
  }
  
  .privacy-content {
    padding: 1.5rem 1rem;
  }
  
  .privacy-content ul {
    margin-left: 1rem;
  }
}

/* ===== AGB-SEITE ===== */
.agb-section {
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  padding: 0 1.5rem;
}

.agb-section h1 {
  font-family: var(--font-swash);
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}

.agb-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  line-height: 1.6;
  counter-reset: paragraph;
}

.agb-content h2 {
  color: var(--color-accent);
  margin: 2.5rem 0 1rem 0;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  counter-increment: paragraph;
}

.agb-content h2::before {
  content: counter(paragraph) ". ";
  font-weight: bold;
}

.agb-content p {
  margin-bottom: 1rem;
  color: #444;
}

.agb-content p strong {
  color: #222;
  font-weight: 600;
}

.agb-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

.agb-content li {
  margin-bottom: 0.5rem;
  color: #444;
  position: relative;
  padding-left: 1rem;
}

.agb-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.agb-content a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.agb-content a:hover {
  color: #111;
  text-decoration: underline;
}

.agb-contact {
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--color-accent);
}

.agb-contact h3 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .agb-section h1 {
    font-size: 3rem;
  }
  
  .agb-content {
    padding: 2rem 1.5rem;
  }
  
  .agb-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .agb-section h1 {
    font-size: 2.5rem;
  }
  
  .agb-content {
    padding: 1.5rem 1rem;
  }
  
  .agb-contact {
    padding: 1.2rem;
  }
}

/* ===== DREI NEUE PORTFOLIO-FELDER ===== */

/* Behält deine bestehende Grid-Struktur bei und fügt die neuen Elemente harmonisch ein */
.gallery-grid {
  /* Dein bestehender Code bleibt unverändert */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Falls noch nicht so eingestellt */
}

/* Stelle sicher, dass die neuen Items denselben Stil wie bestehende haben */
.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8),
.portfolio-item:nth-child(9) {
  animation: fadeInUp 0.8s ease-out; /* Gleiche Animation wie andere Items */
  animation-fill-mode: both;
}

/* Verzögerte Animation für die neuen Items für ein sanftes Erscheinen */
.portfolio-item:nth-child(7) { animation-delay: 0.1s; }
.portfolio-item:nth-child(8) { animation-delay: 0.2s; }
.portfolio-item:nth-child(9) { animation-delay: 0.3s; }

/* Responsive Anpassung für die zusätzlichen Items */
@media (max-width: 768px) {
  .portfolio-item:nth-child(7),
  .portfolio-item:nth-child(8),
  .portfolio-item:nth-child(9) {
    animation-delay: 0s; /* Keine Verzögerung auf Mobilgeräten */
  }
}

/* ===== HINWEIS "FREE DESIGNS PROJECT" ===== */
.project-notice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin: 0.8rem 0 1.2rem 0;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  font-size: 0.9rem;
  text-align: left;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
  color: #1565c0 !important;
  border: 1.5px solid #90caf9 !important;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out;
}

.project-notice.small {
  margin: 0.5rem 0 0.8rem 0;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  gap: 0.6rem;
}

.project-notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1565c0;
  flex-shrink: 0;
}

.project-notice-icon::before {
  content: "★";
  font-weight: bold;
}

.project-notice-text {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .project-notice {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    flex-direction: row;
    align-items: center;
  }
  
  .project-notice.small {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* ===== DYNAMIC ISLAND MIT HAMBURGER MENU ===== */
.dynamic-island {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  margin: 1.5rem auto 2rem auto;
  max-width: 1200px;
  width: 90vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  animation: fadeInDown 1s cubic-bezier(.4,0,.2,1);
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo .swash {
  font-family: var(--font-swash);
  font-size: 2.1rem;
  color: var(--color-accent);
  margin-left: 0.2em;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 1rem;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation zu X */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.header-right nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header-right nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-right nav a:hover {
  color: var(--color-accent);
}

/* Overlay für Mobile */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .dynamic-island {
    padding: 1rem 1.5rem;
    width: 95vw;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .header-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem 2rem;
    border-radius: var(--radius) 0 0 var(--radius);
  }
  
  .header-right.active {
    right: 0;
  }
  
  .header-right nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .header-right nav a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .logo .swash {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .dynamic-island {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo .swash {
    font-size: 1.3rem;
  }
  
  .header-right {
    width: 280px;
    padding: 4rem 1.5rem 2rem 1.5rem;
  }
  
  .header-right nav a {
    font-size: 1.1rem;
  }
}

