/* ===== Reset & Basis ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #f4f6f8 0%, #eef1f4 100%);
    color: #2e2e2e;
    line-height: 1.6;
}

/* ===== Header & Navigation ===== */
header {
    background: linear-gradient(135deg, #1f3c5b, #2a5d8f);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

header nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

header nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

header nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

main {
    padding-top: 120px; /* Höhe deines Headers */
}

h2 {
    font-weight:600;
    color:#1f3c5b;
}


/* ===== Produkt Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-item {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.product-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* ===== Buttons ===== */
button {
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #333;
}


button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ===== Formulare ===== */
form {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    max-width: 420px;
    margin: auto;
}

input {
    width: 100%;
    padding: 12px 14px;
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #18bc9c;
    box-shadow: 0 0 0 3px rgba(24,188,156,0.2);
}

/* ===== Footer ===== */
footer {
    background: #1f3c5b;
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 25px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* ===== Mobile Anpassung ===== */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.4rem;
    }

    main {
        padding: 25px 15px;
    }
}
.hero {
    text-align: center;
    padding: 60px 20px;
}