/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.featured, .community, .blog {
    padding: 60px 20px;
    text-align: center;
}

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

.poem-card, .community-post, .blog-post {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.poem-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.poem-card h3, .community-post h3, .blog-post h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.poem-card p, .community-post p, .blog-post p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.poem-card a, .community-post a, .blog-post a {
    text-decoration: none;
    color: #f39c12;
}

.poem-card:hover, .community-post:hover, .blog-post:hover {
    transform: translateY(-5px);
}

