/* FFXIV 1.0 — Visual Style (CSS)
   Dunkles, elegante Typografie mit gold/amber Akzenten (remix aus 1.0 Ästhetik)
   Achtung: Keine urheberrechtlich geschützten Grafiken eingebettet. Nur Styles. */

:root{
  --bg-1: #071218;
  --panel: rgba(255,255,255,0.03);
  --muted: rgba(255,255,255,0.6);
  --accent: #caa93b; /* gold/amber */
  --accent-2: #8fd1c8; /* türkiser Akzent als Hommage */
  --glass: rgba(255,255,255,0.02);
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family: 'Noto Sans', 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:linear-gradient(180deg,var(--bg-1) 0%, #03060a 100%); color:#f3efe6}

.shell{min-height:100vh;display:flex;flex-direction:column}
.header, .banner{display:flex;align-items:center;justify-content:space-between;padding:28px 36px;border-bottom:1px solid rgba(255,255,255,0.03)}
.banner{background:linear-gradient(90deg, rgba(0,0,0,0.24), rgba(0,0,0,0.12));}
.brand{display:flex;align-items:center;gap:14px}
.logo-mark{width:72px;height:72px;border-radius:8px;background:linear-gradient(135deg,#111 0%,#222 100%);display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--accent);font-size:20px}
.titles h1{margin:0;font-size:20px;letter-spacing:3px}
.titles .sub{margin:2px 0 0;color:var(--muted);font-size:12px}

.nav a{color:var(--muted);text-decoration:none;margin-left:18px;font-size:14px}

.content{max-width:1200px;margin:28px auto;padding:0 20px;flex:1}
.hero{display:grid;grid-template-columns:2fr 1fr;gap:20px;align-items:start}
.hero-left h2{margin:0 0 8px;font-size:28px}
.lead{color:var(--muted);margin-bottom:12px}
.cta-row{display:flex;gap:12px;margin:18px 0}
.btn{background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));border:1px solid rgba(255,255,255,0.04);padding:10px 16px;border-radius:8px;color:#fff;cursor:pointer}
.btn:hover{transform:translateY(-2px)}
.btn.disabled{opacity:.6;cursor:not-allowed}

.panel{background:var(--panel);padding:16px;border-radius:10px;border:1px solid rgba(0,0,0,0.4)}
.panel-section{margin-top:20px}
.panel-section h3{margin:0 0 10px}
.timeline{padding-left:18px;color:var(--muted)}

.gallery-placeholder{display:flex;gap:10px}
.gallery-placeholder .shot{flex:1;padding:36px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));border-radius:8px;text-align:center;color:var(--muted)}

.small{font-size:13px}
.muted{color:var(--muted)}

.foot{border-top:1px solid rgba(255,255,255,0.02);padding:18px 36px}
.foot-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;color:var(--muted);font-size:13px}

/* Responsive */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .logo-mark{width:56px;height:56px}
}
