/* Custom styles to enhance Tailwind */
body {
    font-family: 'Arial', sans-serif;
}

header {
    background-size: cover;
    background-position: center;
}

nav a {
    transition: color 0.3s;
}

section {
    scroll-margin-top: 80px;
}

/* Card styling for community section */
.card {
    background-color: #2d3748;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Hover effects for images */
img {
    transition: transform 0.3s;
}

img:hover {
    transform: scale(1.05);
}

/* Improve contrast for yellow text */
.text-yellow-400 {
    color: #f6e05e; /* Slightly darker yellow for better contrast */
}