:root {
    --primary: #2563eb;
    --accent: #38bdf8;
    --bg: #f4f8fb;
    --text: #1e293b;
    --shadow: 0 4px 24px rgba(30,41,59,0.08);
}

body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.7rem;
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links li {
    display: inline-block;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color .2s;
}
.nav-links a.btn {
    padding: 0.5em 1em;
    border-radius: 999px;
}
.nav-links a.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}
.nav-links a:hover,
.nav-links a.btn-primary:hover {
    color: var(--primary);
    background: #e0edff;
}

.hero {
    background: linear-gradient(90deg, var(--primary) 70%, var(--accent) 100%);
    color: #fff;
    padding: 4rem 0 2.5rem 0;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}
.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.7rem;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.hero-img {
    width: 350px;
    max-width: 95vw;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    background: #fff;
}
.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7em 1.6em;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-accent {
    background: var(--accent);
    color: var(--text);
}
.btn-accent:hover {
    background: #0ea5e9;
    color: #fff;
}
.btn.w-100 {
    width: 100%;
    text-align: center;
}
.features {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.features h2 {
    text-align: center;
    margin-bottom: 2.3rem;
}
.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-card {
    background: var(--bg);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem 1.2rem;
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    transition: transform .15s;
}
.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
}
.feature-card img {
    width: 60px;
    margin-bottom: 1.1rem;
}
.feature-card h3 {
    margin-top: 0;
}
.showcase {
    background: var(--bg);
    padding: 3rem 0;
}
.showcase h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.showcase-gallery {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.showcase-gallery img {
    width: 320px;
    max-width: 90vw;
    border-radius: 0.7rem;
    box-shadow: var(--shadow);
    background: #fff;
}
.pricing {
    background: #fff;
    padding: 4rem 0;
}
.pricing h2 {
    text-align: center;
    margin-bottom: 2.3rem;
}
.pricing-table {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pricing-card {
    background: var(--bg);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2.2rem 1.2rem;
    flex: 1 1 210px;
    min-width: 200px;
    max-width: 340px;
    text-align: center;
    transition: transform .15s;
    border: 2px solid transparent;
}
.pricing-card.best {
    border-color: var(--primary);
    background: #e0edff;
}
.pricing-card h3 {
    margin-top: 0;
}
.pricing-card .price {
    font-size: 2.1rem;
    color: var(--primary);
    margin: 0.7rem 0 1.2rem 0;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-card ul li {
    margin-bottom: 0.7rem;
}
.pricing-card .info {
    margin-top: 1rem;
    color: var(--primary);
}
.order-form {
    background: var(--bg);
    padding: 4rem 0 2.5rem 0;
}
.order-form h2 {
    text-align: center;
    margin-bottom: 1.8rem;
}
.rent-form {
    background: #fff;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.rent-form label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 0.4em;
}
.rent-form input[type="text"],
.rent-form input[type="email"] {
    padding: 0.5em;
    border-radius: 0.6em;
    border: 1px solid #d1d5db;
    font-size: 1em;
    outline: none;
    transition: border .2s;
}
.rent-form input:focus {
    border-color: var(--primary);
}
.rent-form .info {
    font-size: 0.9em;
    color: #4b5563;
}
.rent-form .agb {
    font-size: 0.95em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 1em;
}
.contact {
    background: #fff;
    padding: 4rem 0 2.5rem 0;
}
.contact h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-form {
    background: var(--bg);
    max-width: 420px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro {
    background: #e0edff;
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid #c7dbff;
}
.intro h2 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.intro p {
    max-width: 800px;
    margin: 0 auto 1.5em auto;
    font-size: 1.15rem;
    color: #1e293b;
}
.intro-list {
    text-align: left;
    max-width: 420px;
    margin: 1.5rem auto 1.5rem auto;
    padding-left: 1.2em;
    color: #1e293b;
    font-size: 1.1em;
}
.intro-list li {
    margin-bottom: 0.3em;
}
footer {
    background: #fff;
    border-top: 1px solid #e0edff;
    margin-top: 4rem;
    padding: 2.2rem 0 1.2rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    font-size: 1.06em;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s, text-decoration .2s;
}

.footer-links a.text-decoration-underline:hover {
    text-decoration: underline;
    color: var(--accent);
}

footer p {
    margin: 0;
    text-align: center;
    color: #6b7280;
    font-size: 1em;
}
#overlay-under-construction {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80,80,80,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  /* blockiert Scrollen/Interaktion */
  pointer-events: auto;
}
#overlay-under-construction .overlay-content {
  background: rgba(0,0,0,0.2);
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 0 20px #0008;
}

/* Optional: Scrollen komplett verhindern, solange das Overlay aktiv ist */
body:has(#overlay-under-construction) {
  overflow: hidden;
}
