:root {
    --page-bg: #e2dacb;
}

body {
    background-color: var(--page-bg);
    color: var(--bs-secondary);
    font-family: var(--bs-body-font-family);
    overflow-x: hidden; /* Prevent horizontal scroll from the header circle */
}

/* Section Styles */
.section-header {
    font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: bold;
    color: var(--bs-secondary);
    margin-bottom: 2rem;
    margin-top: 3rem;
    position: relative;
    display: inline-block;
    font-variant: small-caps;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Card Styles */
.booth-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.booth-card-link:hover {
    transform: translateY(-5px);
}

.booth-card {
    background-color: var(--bs-body-bg);
    border: none;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 1rem;
}

.booth-img-wrapper {
    height: 220px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.booth-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booth-card .card-body {
    padding: 1.5rem;
    color: #dedccf;
    border: 1px solid var(--bs-warning);
}

.booth-card .card-title {
    color: var(--bs-warning);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.booth-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Footer override for this page */
.footer {
    background-color: var(--bs-body-bg);
    color: #dedccf;
    margin-top: 5rem !important;
}
