/* Reset and Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Content Section */
.content-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
/* 
.search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-bar input {
    width: 50%;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 3px 0 0 3px;
}

.search-bar button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    background: #C4391D;
    color: #fff;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #f4a261;
} */
/* 
.list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.item-content {
    padding: 1rem;
    text-align: center;
}

.item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.item-content a {
    display: inline-block;
    background: #C4391D;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.item-content a:hover {
    background: #f4a261;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */
