/* Allgemeine Stile */
body, html {
    margin: 0;
    padding: 0;
    background: #090909;
    color: #f9f9f9;
    font-family: 'Comfortaa', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    cursor: pointer;
}

/* Blog Content */
#blog-content {
    padding: 40px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f9f9f9;
}

.blog-card p {
    color: #d3d3d3;
    font-size: 1rem;
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-card .read-more:hover {
    color: #ff4d4d;
}

/* Highlighted Cards */
.blog-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #ff4d4d, #1e1e1e);
    color: white;
    padding: 30px;
    font-size: 1.2rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.blog-card.featured h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.blog-card.featured p {
    color: #f5f5f5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #f9f9f9;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-nav a {
    color: #ff0000;
    text-decoration: none;
    font-size: 1rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}
/* Allgemeine Blog Card Anpassung */
.blog-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

/* CTA-Karte Styling */
.cta-card {
    background: linear-gradient(180deg, #ff0000, #474747);
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.cta-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-card-content p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* CTA-Button */
.cta-button {
    background-color: #fff;
    color: #ff4d4d;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ffe5e5;
    transform: scale(1.05);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .cta-card-content h2 {
        font-size: 1.2rem;
    }

    .cta-card-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}


/* Responsivität */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: span 1;
    }
}
