
/* Allgemeine Stile */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #04121d;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

header.header {
    text-align: center;
    background-color: #04121d;
    color: #fff;
    padding: 40px 20px;
    border-bottom: 3px solid #27ae60;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
}

.subtext {
    margin-top: 10px;
    font-size: 1rem;
    color: #a8d0db;
}

/* Hauptcontainer */
.main-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Wunschliste */
.wishlist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.wishlist-item {
    background-color: #1a3b52;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.wishlist-item h2 {
    font-size: 1.4rem;
    color: #27ae60; /* Grün */
    margin: 0 0 10px 0;
}

.wishlist-item p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #c9e4eb;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #c0392b; /* Rot */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 10px;
}

.btn:hover {
    background: #e74c3c; /* Helleres Rot */
    transform: translateY(-3px);
}

/* Footer */
footer.footer {
    text-align: center;
    background-color: #04121d;
    color: #fff;
    padding: 15px;
    border-top: 3px solid #27ae60;
    margin-top: 30px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsives Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    .subtext {
        font-size: 0.9rem;
    }
    .wishlist-item {
        padding: 15px;
    }
    .btn {
        padding: 8px 16px;
    }
}