/* index.css – Erweiterte Styles mit Hover und Animation */

* {
    /*box-sizing: border-box;*/
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ Header ============ */
/* Header-Layout */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff; /* Weißer Hintergrund */
  color: #333;         /* Dunkler Text */
  border-bottom: 1px solid #e5e7eb;
}

.container.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.logo img { display: block; height: auto; }

/* Burger */
.burger {
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  color: #333;
  background: #f9f9f9;
  transition: transform .2s ease, background .2s ease;
}
.burger:active { transform: scale(.96); }
.burger[aria-expanded="true"] { background: #e5e7eb; }

/* Nav (mobile: off-canvas) */
header nav {
  position: fixed;
  inset: 0 0 0 auto; /* rechts andocken */
  width: min(80vw, 320px);
  background: #ffffff;   /* Weißes Panel */
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 60;
  padding: 30px 10px 24px;
  border-left: 1px solid #e5e7eb;
}

/* Overlay hinter dem Panel */
header::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 55;
}

/* Offene Zustände */
header.nav-open nav,
body.nav-open header nav {
  transform: translateX(0%);
}
header.nav-open::after,
body.nav-open header::after {
  opacity: 1;
  pointer-events: auto;
}

/* Liste/Links */
nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;         /* Dunkler Text */
  font-weight: 500;
  letter-spacing: .2px;
  transition: background .2s ease, color .2s ease;
}
nav a:hover { background: #f3f4f6; color: #000; }

/* Desktop-Layout */
@media (min-width: 768px) {
  /* Overlay/Off-canvas deaktivieren */
  header::after { display: none; }
  header nav {
    position: static;
    width: auto;
    transform: none !important;
    background: transparent;
    border: 0;
    padding: 0;
  }
  nav ul {
    flex-direction: row;
    gap: 6px;
  }
  nav a { padding: 10px 12px; border-radius: 8px; }
  .burger { display: none; }
  .navtext { display: none; }
}

@media (max-width: 768px) {
nav {
	padding: 0px, 0px;
}
}
.navtext {
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px; height: 40px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  color: #333;
  background: #f9f9f9;
  transition: transform .2s ease, background .2s ease;
}
/* Optional: aktive Seite markieren */
nav a[aria-current="page"],
nav a.active {
  color: #5c6ac4;             /* Akzentfarbe */
  background: #eef2ff;
  outline: 1px solid #c7d2fe;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #5c6ac4;
    color: white;
}

.btn-primary:hover {
    background: #3f4a9a;
    box-shadow: 0 4px 15px rgba(92, 106, 196, 0.4);
}

.btn-login {
    border: 2px solid #5c6ac4;
    color: #5c6ac4;
    background: white;
    height: 40px;               /* gleich wie normale Links */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}


.btn-login:hover {
    background: #5c6ac4;
    color: white;
}


.btn-start {
    border: 2px solid #5c6ac4;
    color: white;
    background: #5c6ac4;
    height: 40px;               /* gleich wie normale Links */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.btn-start:hover {
    background: white;
    color: #5c6ac4;
	border: 2px solid #5c6ac4;
}

/* ============ Hero Section ============ */
.hero {
    background: linear-gradient(to right, #f6f6f7, #e3e3ee);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

/* ============ Features Section ============ */
.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ============ Footer ============ */
footer {
    background: #f6f6f7;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

/* ============ Animation on Scroll ============ */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Support Section ============ */
.support-section {
    padding: 80px 0;
    background: #f9f9fb;
    text-align: center;
}

.support-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.support-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.faq-item {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.support-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-form input,
.support-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}


/* ============ Themes Section ============ */

/* ============ Pricing Section ============ */
.pricing-section {
    padding: 80px 0;
    background: #f9f9fb;
    text-align: center;
}

.pricing-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.pricing-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.price-box {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
}

.price-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #5c6ac4;
}

.price-box .price span {
    font-size: 14px;
    color: #888;
}

.price-box ul {
    list-style: none;
    padding-left: 0;
}

.price-box ul li {
    margin-bottom: 8px;
    color: #444;
}




/* ============ Log in Section ============ */


.login-section {
    padding: 80px 0;
    text-align: center;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}


.alert2 {
	width: 50%; 
	margin: auto;
}

@media (max-width: 768px) {
  .alert2 { 
	width: 95%; 
  }
}

/* Footer */
    footer{border-top:1px solid var(--border);}
    .foot{font-size: 20px;display:flex;gap:16px;justify-content:space-between;align-items:center;padding:18px 0;color:var(--muted)}
	

