

/* exhibits page css */

/* Exhibits Page Styling */
.exhibits {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f7f7fb);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Heading */
.exhibits h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f1f2e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

/* Underline effect for heading */
.exhibits h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #6c63ff;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Paragraph styling */
.exhibits p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-top: 20px;
    padding: 0 10px;
}

/* Subtle hover effect for container */
.exhibits:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}