
/* schedule event posters */
.poster-section {
    padding: 40px 20px;
    background-color: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
}

.poster-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.poster-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.poster-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
    text-align: center;
    display:flex;
    flex-direction: column;
}

.poster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.poster-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.poster-info {
    padding: 15px;
    background-color: #fafafa;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-info p {
    margin: 0;
    color: #555;
    font-weight: 500;
}

.no-posters {
    text-align: center;
    color: #777;
    font-style: italic;
}



/* printed invitations */

.invitation-section {
    padding: 40px 20px;
    background-color: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
}

.invitation-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.invitation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.invitation-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
    text-align: center;
}

.invitation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.invitation-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.no-invitations {
    text-align: center;
    color: #777;
    font-style: italic;
}
