/* coming-soon.css */

/* --------------------------
   Basis-Variablen
-------------------------- */
:root{
  --bg: #0f1724;
  --card: #111827;
  --text: #e6eef6;
  --muted: #9aa4b2;
  --accent: #7dd3fc;
  --glass: rgba(255,255,255,0.04);
  --radius: 16px;
  --max-width: 1100px;
}

/* Hellmodus */
@media (prefers-color-scheme: light){
  :root{
    --bg: #f7fafc;
    --card: #ffffff;
    --text: #0b1220;
    --muted: #55606a;
    --accent: #0ea5e9;
    --glass: rgba(11,18,32,0.03);
  }
}

/* --------------------------
   Basis-Styles
-------------------------- */
*{box-sizing:border-box}
body,html{
  margin:0;
  padding:2px 30px 30px 30px; /* nur oben kleiner */
  height:100%;
  font-family: Inter, audiowide;
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.cs-container{
  max-width: var(--max-width);
  width: 100%;
  display:grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 30px;
}

/* --------------------------
   Intro & Projekte
-------------------------- */
.cs-intro{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.cs-logo{
  font-weight:600;
  font-size:14px;
  color: var(--accent);
  text-transform:uppercase;
  letter-spacing:0.6px;
}

.cs-title{
  font-size:36px;
  margin:0;
  font-weight:700;
}

.cs-sub{
  font-size:15px;
  color: var(--muted);
  max-width:70ch;
  margin:0 0 20px 0;
}

.cs-section-title{
  font-size:16px;
  font-weight:600;
  margin:8px 0 2px 0;
}

/* --------------------------
   Projekt-Kacheln
-------------------------- */
.cs-projects{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cs-card{
  background: var(--glass);
  padding:20px;
  border-radius: var(--radius);
  display:flex;
  flex-direction:column;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.cs-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(125,211,252,0.25);
}

/* Thumbnail */
.thumb{
  width:60px;
  height:60px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color: var(--accent);
  background: rgba(125,211,252,0.1);
  margin-bottom:12px;
  user-select:none;
}

/* Titel & Beschreibung */
.p-title{
  font-size:16px;
  font-weight:600;
  margin:0 0 6px 0;
}

.p-desc{
  font-size:14px;
  color: var(--muted);
  margin:0 0 12px 0;
  line-height:1.4;
}

/* Button / Call to Action */
.p-cta{
  align-self:flex-start;
  font-size:13px;
  padding:6px 10px;
  border-radius:8px;
  text-decoration:none;
  color: var(--accent);
  border:1px solid transparent;
  transition: all 0.2s ease;
}

.p-cta:hover{
  background: rgba(125,211,252,0.08);
  border-color: rgba(125,211,252,0.25);
}

/* --------------------------
   Platzhalter-Kacheln
-------------------------- */
.cs-card.placeholder{
  opacity:0.5;
  border-style:dashed;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.cs-card.placeholder .thumb{
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.cs-card.placeholder .p-cta{
  display:none;
}

/* Footer unten rechts */
.cs-footer {
  position: fixed;
  bottom: 10px;   /* Abstand vom unteren Rand */
  right: 10px;    /* Abstand vom rechten Rand */
  color: var(--muted);
  font-size: 13px;
  z-index: 1000;
}

/* --------------------------
   Responsive Anpassung
-------------------------- */
@media (max-width:600px){
  .cs-projects{
    grid-template-columns: 1fr;
  }
}
