

/* open-sans-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: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-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: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root{
  --bg: #f6f1e7;        /* altweiß / leicht beige */
  --text: #1b1b1b;
  --muted: #4b4b4b;
  --card: #ffffffcc;    /* leicht transparent, weich */
  --border: #e3dccf;
  --btn: #666666;
  --btnText: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;

}

body{
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.content{
  flex: 1;
}

.container{
  width: min(1100px, calc(100% - 40px)); /* übliche Content-Breite */
  margin: 0 auto;
}

.hero{
  text-align: center;
  padding: 56px 0 26px;
  max-width:90%;
  margin:auto;
}

.hero h1{
  margin: 1em 0;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.2px;
}

.hero p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.tiles{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.tile{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(6px);
}

.tile-logo {
  display: flex;
  align-items: center;      
  justify-content: center;  
  height: 180px;            
  margin-bottom: 16px;
}

.tile-logo img {
  max-height: 100%;
  max-width: 55%;
  object-fit: contain;
}


.tile h2{
  margin: 6px 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.tile p{
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.8;
}

.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 9px;
  background: var(--btn);
  color: var(--btnText);
  text-decoration: none;
  font-weight: 600;
  transition: transform 120ms ease, opacity 120ms ease;
}

.btn:hover{
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn:focus-visible,
.tile-logo:focus-visible{
  outline: 3px solid rgba(42,58,47,0.35);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Sticky Footer */
.footer{
  margin-top: auto;
  padding: 16px 0;
  background: rgba(255,255,255,0.35);
  border-top: 1px solid var(--border);
}

.footer-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer a{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover{
  text-decoration: underline;
}

.footer-sep{
  color: var(--muted);
}

/* Responsive: ab Tablet 2 Kacheln nebeneinander */
@media (min-width: 760px){
  .tiles{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding-bottom: 56px;
  }

  .hero{
    padding: 5em 0;
  }
}
