@charset "utf-8";
/* CSS Document */

:root {
  --bg: #5b5b5b;
  --paper: #f6f6f6;
  --muted: #9b9b9b;
  --accent: #ffffff;
  --max-width: 1200px;
  --radius: 14px;
  --gap: 1.2rem;
	
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #111);
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

.site {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 1.6rem;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
	background: linear-gradient(0deg, var(--bg), #111);
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
	border-radius: var(--radius);
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: inherit;
}

.logo {
	margin: 2rem;
	width: 150px;
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #ddd);
  display: grid;
  place-items: center;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .6);
}

.brand h1 {
  font-size: 1rem;
  margin: 0;
}

.brand p {
  margin: 0;
  font-size: .78rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--accent);
  text-decoration: none;
  padding: .45rem .7rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .04);
}

/* Hamburger & mobile */
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

@media (max-width:820px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--gap);
  align-items: start;
  margin-bottom: 1.8rem;
}

.hero-image {
	width: 100%;
	border-radius: var(--radius);
}

.intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .6);
}

.intro h2 {
  margin: 0 0 .5rem 0;
  font-size: 1.6rem;
  letter-spacing: .6px;
}

.intro p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02);
}

.impressum {
	padding: 0 1rem;
}

/* Downloads */
.downloads {
  display: flex;
  gap: .9rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
}

.download-btn small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .72rem;
}

#verb {
	background-color: #A8A8A8;
	padding: 0.2rem;
	width: 350px;
	height: 150px;
	box-shadow: 10px 10px 32px #706F6F;
	border-radius: var(--radius);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin: 1.6rem 0 2rem 0;
}

.card {
  background: linear-gradient(180deg, #111, rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

/*.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .2));
}*/

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

@media (max-width:1100px) {
  .hero {
    grid-template-columns: 1fr 320px;
  }
	
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:680px) {
  .site {
    padding: .9rem;
  }
	
  .hero {
    grid-template-columns: 1fr;
  }
	
  .hero-media {
    order: -1;
  }
	
  .gallery {
    grid-template-columns: 1fr;
  }
	
  header {
    gap: .6rem;
  }
}

/* footer */
footer {
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
	margin-top: 3rem;
	background: linear-gradient(180deg, #222, #111);
	height: 100px;
	padding: 1rem;
	border-radius: var(--radius);
}

/* small helpers */
.muted {
  color: var(--muted);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .06);
  padding: .4rem .7rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

/* debug box */
.debug-box {
  margin-top: 1rem;
  padding: .8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  font-size: .85rem;
  color: var(--muted);
}

.test-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}

/* Grundlayout */
.image-link {
  display: inline-block;
  text-decoration: none; /* kein Unterstreichen beim Link */
  color: inherit;        /* Schriftfarbe erbt vom umgebenden Text */
}

/* Figure-Block für Bild + Unterschrift */
.image-link figure {
  margin: 0;
  text-align: center;
  /* max-width: 300px; */
}

/* Bild selbst */
.image-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Unterschrift */
.image-link figcaption {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: aliceblue;
}

/* Hover-Effekt für Interaktivität */
.image-link:hover img {
  transform: scale(1.03);
	filter: grayscale(0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.image-link:hover figcaption {
  font-size: 1.1rem;
}

/* Cookiefrei-Disclaimer: Einbau in hjwinter.de (z.B. vor </body>) */

  /* Overlay */
  #cf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Modal-Box */
  #cf-modal {
    max-width: 480px;
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    padding: 20px 18px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    line-height: 1.4;
    position: relative;
  }

  #cf-modal h2 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
  }

  #cf-modal p {
    margin: 0 0 14px 0;
    color: #333;
  }

  /* Close button */
  #cf-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
  }
  #cf-close:focus { outline: 2px solid #007acc; border-radius: 6px; }

  /* Optional action button */
  #cf-ok {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #007acc;
    background: #888888;
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
  }
  #cf-ok:hover { opacity: 0.95; }
