/* Inter + Space Grotesk */
@import url('fonts/fonts.css');

:root {
  --primary: #1E3A8A;        /* Königsblau aus Logo */
  --primary-hover: #1E40AF;
  --secondary: #4B5563;      /* Grau aus Logo */
  --secondary-light: #6B7280;
  --bg: #FAFAFA;
  --bg-dark: #0A0A0B;
  --text: #1F2937;
  --text-soft: #4B5563;
  --text-on-dark: #FAFAFA;
  --accent: #1E3A8A;          /* Königsblau als Akzent */
  --accent-hover: #2563EB;
  --accent-text: #1E3A8A;     /* Königsblau für Text auf hellem Hintergrund */
  --accent-grey: #4B5563;     /* Grau-Akzent */
  --border: #E5E7EB;
  --border-dark: #1F2937;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { color: var(--text-soft); }

a { color: inherit; text-decoration: none; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 640px;
  margin-top: 1rem;
}

.hint {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 2rem;
  font-style: italic;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.7;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.55) 50%, rgba(10,10,11,0.85) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
  color: var(--text-on-dark);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #93C5FD;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--text-on-dark);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 540px;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(250, 250, 250, 0.3);
}

.btn-ghost:hover {
  background: rgba(250, 250, 250, 0.1);
  border-color: rgba(250, 250, 250, 0.6);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-text);
  margin-top: 1rem;
  transition: gap 0.25s;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-dark {
  max-width: none;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 6rem 2rem;
}

.section-dark > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-dark > .gallery {
  max-width: 1200px;
}

.section-dark p {
  color: rgba(250, 250, 250, 0.7);
}

.section-dark .section-sub {
  color: rgba(250, 250, 250, 0.75);
}

.section-head {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-compact {
  padding: 4rem 2rem;
}

.vita-inner {
  max-width: 720px;
}

/* Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.card-image {
  overflow: hidden;
  background: var(--secondary);
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.card p {
  padding: 0 1.5rem;
  flex: 1;
}

.card .link-arrow {
  padding: 0.5rem 1.5rem 1.5rem;
  margin-top: auto;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--secondary);
}

/* Portrait: Galerie-Spalten 1-2, 3 Reihen hoch */
.gallery-item.gallery-tall {
  grid-column: span 2;
  grid-row: span 3;
}

/* Standard Querformat: 3 Spalten, 2 Reihen */
.gallery-item {
  grid-column: span 3;
  grid-row: span 2;
}

/* Wide Querformat: 4 Spalten, 2 Reihen */
.gallery-item.gallery-wide {
  grid-column: span 4;
  grid-row: span 2;
}

/* Hochformat in der rechten Spalte: 2 Spalten, 3 Reihen */
.gallery-item.gallery-tall-right {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Workshops */
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.workshops-text h2 {
  margin-bottom: 1.5rem;
}

.workshops-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.workshops-image {
  border-radius: 8px;
  overflow: hidden;
}

.workshops-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Wall Art */
.wall-art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.wall-art {
  background: var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wall-art-image {
  overflow: hidden;
}

.wall-art-image img {
  width: 100%;
  height: auto;
  display: block;
}

.wall-art h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-on-dark);
}

.wall-art p {
  padding: 0 1.5rem;
}

.wall-art .price {
  padding: 0.5rem 1.5rem 1rem;
  font-size: 1.1rem;
  color: #93C5FD;
  font-weight: 600;
}

.wall-art .btn {
  margin: 0 1.5rem 1.5rem;
  align-self: flex-start;
  color: var(--text-on-dark);
  border-color: rgba(250, 250, 250, 0.3);
}

.wall-art .btn:hover {
  background: rgba(250, 250, 250, 0.1);
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.03);
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

/* Beitragsseiten */
.blog-article {
  max-width: 860px;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.blog-article h1 {
  max-width: 760px;
  margin-bottom: 2rem;
}
.article-cover {
  margin: 0 0 3rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-dark);
}
.article-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.article-copy {
  max-width: 720px;
}
.article-copy p {
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
  line-height: 1.8;
}
.article-copy h2 {
  margin: 2.5rem 0 1rem;
}

/* Eigene Blog-Seite */
.blog-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.blog-hero .section {
  padding-top: 0;
  padding-bottom: 0;
}

.blog-hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.blog-hero .eyebrow {
  color: #93C5FD;
}

.blog-hero .section-sub {
  color: rgba(250, 250, 250, 0.75);
}

.blog-list {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-pager {
  text-align: center;
  margin-top: 4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.blog-pager a {
  color: var(--accent-text);
  font-weight: 600;
}

.blog-pager a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

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

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

.form-row label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.8rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-success {
  background: rgba(30, 58, 138, 0.15);
  border: 1px solid var(--primary);
  color: var(--text-on-dark);
  padding: 1.5rem;
  border-radius: 6px;
  font-weight: 500;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-image {
  background: white;
  border-radius: 6px;
  padding: 0.5rem;
  margin: 1.5rem 0 0.5rem;
  text-align: center;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.contact-image .contact-caption {
  color: var(--text-soft) !important;
  background: transparent !important;
  padding: 0.6rem 0.5rem 0.2rem !important;
  border-radius: 0 !important;
  font-size: 0.85rem !important;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #93C5FD;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand .brand-mark {
  color: var(--text-on-dark);
  font-size: 1.5rem;
}

.footer-brand .brand-mark::before {
  background: var(--primary);
}

.footer-brand p {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: rgba(250, 250, 250, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-meta {
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.5);
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
  }
  .nav {
    gap: 1rem;
    font-size: 0.9rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }
  .gallery-item.gallery-tall,
  .gallery-item.gallery-tall-right,
  .gallery-item.gallery-wide {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .wall-art-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links,
  .footer-meta {
    justify-content: center;
    text-align: center;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-content {
    padding: 4rem 1.5rem;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .section-dark {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .nav {
    gap: 0.8rem;
  }
  .nav a {
    font-size: 0.85rem;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
