
:root{
  --ink:#2B2B2B;     /* Anthrazit */
  --bg:#ffffff;      /* Weißer Hintergrund wie Altium */
  --gold:#D5BD81;    /* Akzent-Gold */
  --primary:#1a1a1a; /* Dunkler Text */
  --text:#333333;    /* Grundtext */
  --muted:#666666;   
  --card:#f8f9fa;
  --border:#e9ecef;
  --ring: color-mix(in srgb, var(--gold), white 25%);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}
body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  line-height: 1.6;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap{max-width:1200px;margin:0 auto;padding:0 24px}

main{
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section - Vergrößert und nimmt verfügbaren Platz ein */
.hero{
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align:center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  padding-top: 50px;
  padding-bottom: 100px;
}

.hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.uc{
  display:inline-block;
  background:var(--gradient);
  color:white;
  padding:8px 20px;
  border-radius:50px;
  margin-bottom:24px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
  position: relative;
  z-index: 1;
}

.hero h2{
  font-size:3.5rem;
  margin:0 0 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero .sub{
  color:var(--muted);
  margin:0 0 40px;
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  position: relative;
  z-index: 1;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:2px solid transparent;
  background:transparent;
  color:var(--text);
  padding:14px 28px;
  border-radius:12px;
  cursor:pointer;
  text-decoration:none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before{
  left: 100%;
}

.btn-primary{
  background:var(--gradient);
  color:white;
  border-color:transparent;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn:not(.btn-primary):hover{
  background: var(--card);
  border-color: var(--border);
  transform: translateY(-1px);
}

.btn:focus{
  outline:3px solid var(--ring);
  outline-offset:2px;
}

/* Impressum Styles */
.impressum-content{
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.impressum-section{
  background: var(--bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
}

.impressum-section h3{
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 24px;
  text-align: center;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-group{
  padding: 20px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.info-group:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.info-group h4{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px;
}

.info-group p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-group a{
  color: var(--gradient);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Sneak Peek Section - Modern Cards */
.sneak{
  padding:40px 0 80px;
  flex-shrink: 0;
}

.hidden{display:none}

.sneak h3{
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
  gap:24px;
  list-style:none;
  padding:0;
  padding-bottom: 40px;
  margin:40px 0 0;
}

.grid li{
  background:var(--bg);
  padding:32px;
  border:1px solid var(--border);
  border-radius:16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.grid li::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.grid li:hover::before{
  transform: scaleX(1);
}

.grid li:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.grid h4{
  margin:0 0 12px;
  color:var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.grid p{
  margin:0;
  color:var(--muted);
  line-height: 1.6;
}

/* Footer - Am unteren Bildrand */
.site-footer{
  align-items: flex-end;
  border-top:1px solid var(--border);
  background:var(--card);
  padding:32px 0;
  color:var(--muted);
  font-size:0.95rem;
  margin-top: auto;
  flex-shrink: 0;
}

.site-footer a{
  color:var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width:768px){
  .grid{grid-template-columns:1fr}
  .hero h2{font-size: 2.5rem}
  .sneak h3{font-size: 2rem}
  .actions{flex-direction: column; align-items: center}
  .btn{width: 100%; max-width: 300px; justify-content: center}
  .impressum-section{padding: 24px}
  .contact-info{gap: 16px}
  .info-group{padding: 16px}
}
