/* Schrift (Systemfonts, kein externer Import nötig) */
body {
    background: linear-gradient(180deg, #ffeef5, #ffd6e7);
    font-family: "Comic Sans MS", "Verdana", sans-serif;
    color: #5a4a4a;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    background: #fff0f6;
    border: 3px dashed #ffb6c1;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255,182,193,0.6);
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background: repeating-linear-gradient(
        45deg,
        #ffd6e7,
        #ffd6e7 10px,
        #ffeef5 10px,
        #ffeef5 20px
    );
    border-radius: 20px;
}

header h1 {
    color: #ff69b4;
    font-size: 3em;
    text-shadow: 2px 2px #fff;
}

/* kleine Katzen im Header */
header h1::after {
    content: " 🐱🐾";
}

/* Navigation */
nav {
    text-align: center;
    margin: 15px 0;
}

nav a {
    text-decoration: none;
    color: #ff69b4;
    margin: 0 10px;
    font-weight: bold;
    background: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    border: 2px solid #ffc0cb;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ffb6c1;
    color: white;
    transform: scale(1.1) rotate(-2deg);
}

/* Blog Posts */
.post {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #ffd1dc;
    position: relative;
}

/* Katzen-Deko */
.post::before {
    content: "🐱";
    position: absolute;
    top: -12px;
    left: -12px;
    font-size: 22px;
}

.post::after {
    content: "🐾";
    position: absolute;
    bottom: -10px;
    right: -10px;
}

/* Titel */
.post h2 {
    color: #ff85a2;
}

/* Buttons */
button {
    background: linear-gradient(45deg, #ffb6c1, #ff69b4);
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #aa7b8d;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffeef5;
}

::-webkit-scrollbar-thumb {
    background: #ffb6c1;
    border-radius: 10px;
}

/* Glitzer-Animation */
@keyframes sparkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.post:hover {
    animation: sparkle 1s infinite;
}
