/* ==========================================================
   GLOBAL RESET & BASICS
   ========================================================== */
   
:root{
  --bg:#0b1220;
  --card:#0f1724;
  --accent:#ffb730;
  --muted:#9aa6b2
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body{
  margin:0;
  background-image:url("/assets/img/background.jpg");
  background-attachment:fixed;
  background-size: cover;
  color:#e6eef6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #6ea8ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================
   HEADER (volle Breite)
   ========================================================== */

.headerbar{
  padding:18px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background-image: linear-gradient(135deg,#222 25%,#111 25%,#111 50%,#222 50%,#222 75%,#111 75%,#111 100%);
  background-size: 5px 5px; 
  border-bottom: 1px solid #444; 
  box-shadow:0 8px 24px rgba(0,0,0,1)
}

.headerbar > div,
.headerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  height:44px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-login {
    padding: 8px 18px;
    border: 1px solid #4f7cff;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #ffffff;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: #4f7cff;
    text-decoration: none;
}

/* ==========================================================
   CONTENT WRAPPER (1200px zentriert)
   ========================================================== */

.landing-wrapper {
  height: calc(100vh - 112px); 
  overflow: auto; 
  max-width:1200px;
  border-left:1px solid #444;
  border-right:1px solid #444;
  background:linear-gradient(180deg,#0b1622, rgba(0,0,0,0.8));
  backdrop-filter:blur(5px);
  margin:0px auto;
}

/* ==========================================================
   LANDING LAYOUT
   ========================================================== */

.landing {
  display:grid;
  grid-template-columns: 65% 1fr;
  align-items:center;
  height:100%;
  overflow-y:scroll;
}

.landing-left {
  height:100%;
  padding: 20px;
}

.landing-left h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.intro {
    font-size: 1.05rem;
    max-width: 640px;
    opacity: 0.9;
}

/* ==========================================================
   SCREENSHOT CARDS
   ========================================================== */

.screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(180deg, #141b3d, #0d1230);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.card h3 {
    margin: 12px;
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================
   REGISTER / LOGIN PANEL
   ========================================================== */

.landing-right {
  padding: 50px;
  height: 100%;
  border-left: 1px dashed #444;
}

.landing-right h2,
.landing-right h1 {
    margin-top: 0;
}

.landing-right form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.landing-right input {
    background: #0b1025;
    border: 1px solid #2c3570;
    border-radius: 4px;
    padding: 10px;
    color: #fff;
}

.landing-right input:focus {
    outline: none;
    border-color: #4f7cff;
}

.landing-right button {
    margin-top: 10px;
    padding: 10px;
    background: linear-gradient(90deg, #4f7cff, #6ea8ff);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.landing-right button:hover {
    opacity: 0.9;
}

/* ==========================================================
   FOOTER (volle Breite)
   ========================================================== */

.footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #060914;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #9aa0c0;
}

/* ==========================================================
   RESPONSIVE (optional, basic)
   ========================================================== */

@media (max-width: 900px) {
    .landing {
        grid-template-columns: 1fr;
    }

    .screenshots {
        grid-template-columns: 1fr;
    }
}

