* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background-color: #030b16;
    background-image: url("../img/bg-watermark.png");
    background-repeat: no-repeat;
    background-position: center 300px;
    background-size: 1400px auto;
    color: #e6f2ff;
    min-height: 100vh;
}

/* HEADER */
.site-header {
    display: flex;
    width: 100%;
    height: 216px;
}

.header-logo {
    width: 325px;
    height: 216px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-hero {
    flex: 1;
    height: 216px;
    background-image: url("../img/hero-header.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1800px 216px;
    background-color: #030b16;
}

/* LAYOUT */
.main-layout {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 325px;
    padding: 30px 20px;
    background-color: rgba(2, 8, 20, 0.95);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 12px;
}

.sidebar a {
    color: #e6f2ff;
    text-decoration: none;
    padding: 10px 14px 10px 34px;
    display: block;
    position: relative;
    border-radius: 6px;
}

/* AKTIVER MENÜPUNKT */
.sidebar a.active {
    background: linear-gradient(
        90deg,
        rgba(31, 182, 255, 0.35),
        rgba(31, 182, 255, 0.05)
    );
    color: #ffffff;
    font-weight: 600;
}

.sidebar a.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: #1fb6ff;
    border-radius: 2px;
}

.sidebar a:hover {
    background: #0a3d73;
}

/* SUBMENU INDICATOR */
.has-submenu > a::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #b6dfff;
    border-bottom: 2px solid #b6dfff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.25s ease;
}

.has-submenu.open > a::before {
    transform: translateY(-50%) rotate(225deg);
}

/* SUBMENU */
.has-submenu > .submenu {
    display: none;
    padding-left: 25px;
    margin-top: 6px;
}

.has-submenu.open > .submenu {
    display: block;
}

.submenu li {
    margin-bottom: 6px;
}

.submenu a {
    font-size: 14px;
    color: #b6dfff;
}

/* CONTENT */
.content {
    flex: 1;
    padding: 40px;
    display: grid;
    gap: 30px;
    max-width: 1840px;
    margin: 0;
}

/* CARDS */
.card {
    background: rgba(6, 20, 40, 0.85);
    border: 1px solid rgba(31, 182, 255, 0.12);
    border-radius: 14px;
    padding: 20px; /* ✅ von 32px auf 20px */
    backdrop-filter: blur(4px);
}

/* ✅ GLOBALER CARD-SPACING STANDARD:
   verhindert extra Abstand durch h1/p margins */
.card > *:first-child {
    margin-top: 0 !important;
}

.card > *:last-child {
    margin-bottom: 0 !important;
}

/* 🔴 NEU: ANLEITUNG – BLOCKSATZ */
.screenshot-text {
    text-align: justify;        /* 🔴 */
}

.screenshot-text p {
    margin-bottom: 12px;        /* 🔴 bessere Lesbarkeit */
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .main-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .content {
        padding: 25px;
        max-width: 100%;
    }
}

/* KONTAKTFORMULAR */
.contact-form {
    display: grid;
    gap: 20px;
    max-width: 700px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 6px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(10, 25, 50, 0.9);
    border: 1px solid rgba(31, 182, 255, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    color: #e6f2ff;
}
/* SPENDEN WALL */
.spenden-wall {
    display: grid;
    grid-template-columns: repeat(4, 400px);
    gap: 50px;
    justify-content: start;
}

/* ===========================
   SPENDEN-WALL – GRID
   =========================== */

.spenden-grid {
    display: grid;
    grid-template-columns: repeat(4, 400px);
    gap: 50px;
    justify-content: start;
}


/* ===========================
   SPENDEN-CARD – BASIS
   =========================== */

.spenden-card {
    height: 160px;
    background: rgba(6, 20, 40, 0.75);
    border: 1px solid rgba(31, 182, 255, 0.12);
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    transition: all 0.3s ease;
}


/* ===========================
   LEERER PLATZ
   =========================== */

.spenden-card.empty {
    opacity: 0.35;
}

.spenden-card.empty:hover {
    opacity: 1;
    background: rgba(10, 40, 80, 0.9);
    border-color: #1fb6ff;
}

.spenden-card.empty a {
    text-decoration: none;
    color: #b6dfff;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spenden-card.empty a:hover {
    color: #ffffff;
}


/* ===========================
   ECHTE SPENDE – HERVORHEBUNG
   =========================== */

.spenden-card.real {
    background: rgba(10, 40, 80, 0.95);
    border-color: rgba(31, 182, 255, 0.6);
    box-shadow: 0 0 18px rgba(31, 182, 255, 0.25);
    
    .zugriff-grid {
    display: flex;
    gap: 30px;
}

.zugriff-col {
    flex: 1;
}

.zugriff-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Mobile untereinander */
@media (max-width: 900px) {
    .zugriff-grid {
        flex-direction: column;
    }
}
.spenden-card .spender-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

.spenden-card .spender-amount {
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}

/* GRID für Pricing Karten */
.pricing-grid{
display:grid;
grid-template-columns:1fr;
gap:22px;
}

/* Pricing Card */
.pricing-card{
display:block;
padding:26px 24px;
border-radius:16px;
background:rgba(12,35,58,0.9);
border:1px solid rgba(31,182,255,0.35);
color:#ffffff;
text-decoration:none;
transition:all .2s ease;
}

/* Hover Effekt */
.pricing-card:hover{
transform:translateY(-3px);
box-shadow:0 0 20px rgba(31,182,255,0.45);
border-color:rgba(31,182,255,0.7);
}

/* Paket Badge */
.pricing-badge{
font-size:14px;
font-weight:700;
color:#1fb6ff;
margin-bottom:6px;
}

/* Titel */
.pricing-title{
font-size:18px;
font-weight:700;
margin:0 0 8px 0;
}

/* Preis */
.pricing-price{
font-size:24px;
font-weight:800;
}

.pricing-price small{
font-size:14px;
opacity:.8;
}
.btn-pakete{
    display:inline-block;
    padding:14px 22px;
    border-radius:12px;
    border:1px solid rgba(31,182,255,0.45);

    background:linear-gradient(
        135deg,
        rgba(31,182,255,0.95),
        rgba(0,123,255,0.95)
    );

    color:#ffffff;
    font-weight:700;
    text-decoration:none;

    transition:all 0.2s ease;
}

.btn-pakete:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,0.35);
}
.cta-button{
    display:inline-block;
    padding:12px 20px;
    border-radius:10px;

    background:#1fb6ff;
    background:linear-gradient(135deg,#1fb6ff,#007bff);

    color:#ffffff !important;
    font-weight:700;

    text-decoration:none !important;

    border:1px solid rgba(31,182,255,0.4);

    transition:all 0.2s ease;
}

.cta-button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.35);
}