
.fire-section {
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 520px;
    margin: 20px 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 12px 18px rgba(0,0,0,0.1);
    z-index: 1;
}
.fire-title {
    font-size: var(--fire-font-size, clamp(26px, 5vw, 56px));
    line-height: var(--line-height, 1);
    font-weight: 500;
    font-family: Impact, Charcoal, sans-serif;
    background: linear-gradient(to bottom, #ff784f 0%, #ff4912 50%, #e82a00 100%);
    text-shadow: 0 12px 24px rgba(254,117,75, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 5;
    position: relative;    
    opacity: 0;
}
#fire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.fire-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4) contrast(0.8);
    z-index: 1; 
    opacity: 0;
}    
.canvas-ready .fire-title,
.canvas-ready .fire-bg-image {
    opacity: 1;
}
@media screen and (max-width:767px) {
    .fire-section {
        min-height: 320px;
    }
}


