:root {
    --brand-teal: #00c897; /* The signature green from the image */
    --soft-grey: #f8fbff;
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Event Card Style */
.event-card {
    border: none;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.event-date-badge {
    background-color: var(--soft-grey);
    color: var(--brand-teal);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Exhibition Gallery Style */
.exhibition-item img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.exhibition-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.exhibition-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    transform: translateY(110%);
    transition: transform 0.3s ease;
}

.exhibition-item:hover .exhibition-overlay {
    transform: translateY(0);
}

.btn-brand {
    background-color: var(--brand-teal);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
}

.btn-brand:hover {
    background-color: #00a87e;
    color: white;
}
.listing-card {
    border: none;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.listing-card:hover { transform: translateY(-10px); }
.listing-card img { border-radius: 25px 25px 0 0; height: 200px; object-fit: cover; }
 .btn-brand:hover { background-color: #00a87e; color: white; }
.text-teal { color: var(--brand-teal); }