/* Full-width background hero */
.confTitleBox {
    position: relative;
    width: 100%;
    min-height: 320px;               /* adjust height as needed */
    background-image: url("/event/10/logo-296991766.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;          /* full-width modern look */
    display: flex;
    align-items: center;
}

/* Optional dark overlay for better text contrast */
.confTitleBox::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* adjust opacity if needed */
    z-index: 1;
}

/* Hide original logo image */
.confLogoBox,
.confLogo {
    display: none;
}

/* Ensure text is above overlay */
.confTitle {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* Title styling */
.confTitle h1 {
    margin: 0;
}

.confTitle h1 span[itemprop="title"] {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Remove default link styling */
.confTitle a {
    text-decoration: none;
    color: inherit;
}