.elementor-3135 .elementor-element.elementor-element-3a2a5ff2{--display:flex;}.elementor-3135 .elementor-element.elementor-element-1a05ec40{margin:40px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-3135 .elementor-element.elementor-element-1cdcf07f{--display:flex;}.elementor-3135 .elementor-element.elementor-element-751be235{margin:40px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-3135 .elementor-element.elementor-element-562a5431{--display:flex;}.elementor-3135 .elementor-element.elementor-element-65bdc17b{margin:40px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for theme-archive-title, class: .elementor-element-1a05ec40 *//* Core Hero Section Structure */
.sleek-wooden-hero {
    position: relative;
    min-height: 160px; /* Modern, spacious height framework */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    box-sizing: border-box;
    
    /* Sleek Rounded Corners */
    border-radius: 10px;
    
    /* Premium CSS wood panel pattern blend */
    background-color: #1c120c;
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,0.15) 1px, transparent 1px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 4px, transparent 4px, transparent 40px),
        linear-gradient(to bottom, rgba(28, 18, 12, 0.45), rgba(15, 9, 5, 0.85));
    background-size: 80px 100%, 100% 100%, 100% 100%;
    
    /* Bottom trim using your primary brand terracotta color (#9B4F1B) */
    border-bottom: 3px solid #9B4F1B;
    box-shadow: inset 0 -20px 30px rgba(0,0,0,0.4);
}

/* ANIMATION 1: Rising Fire Embers Background Effect */
.sleek-wooden-hero::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 100%;
    /* Generates multiple glowing particle dots using box-shadows */
    background: transparent;
    box-shadow: 
        10vw -20px #9B4F1B, 30vw -60px #df8849, 50vw -40px #9B4F1B, 
        70vw -80px #df8849, 20vw -120px #9B4F1B, 60vw -100px #df8849,
        45vw -150px #df8849, 15vw -180px #9B4F1B, 75vw -140px #9B4F1B;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    opacity: 0;
    filter: blur(1px);
    z-index: 1;
    pointer-events: none;
    animation: risingEmbers 8s linear infinite;
}

/* Aligning inner Elementor elements over the animations */
.sleek-wooden-hero .elementor-container,
.sleek-wooden-hero .elementor-widget-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sleek Typography Layout */
.sleek-wooden-hero h1.elementor-heading-title {
    position: relative;
    color: #ffffff !important;
    font-size: 28px !important; /* Fixed exact typography sizing request */
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    text-transform: capitalize;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    display: inline-block;
    
    /* Clean text shadow drops text forward away from wood textures */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(155, 79, 27, 0.4);
    
    /* Smooth entrance reveal */
    animation: textEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ANIMATION 2: Swooping Light Entrance on the Text */
.sleek-wooden-hero h1.elementor-heading-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    animation: textSwoop 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1s; /* Shimmers shortly after text entrance */
}


/* --- CSS KEYFRAMES FOR MOTION --- */

/* 1. Embers rising loop */
@keyframes risingEmbers {
    0% {
        transform: translateY(120px) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-80px) scale(1.2);
        opacity: 0;
    }
}

/* 2. Text slide-up on load */
@keyframes textEntrance {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Text swoop shimmer wave loop */
@keyframes textSwoop {
    0% { left: -150%; }
    30% { left: 250%; }
    100% { left: 250%; } /* Rest gap before looping again */
}


/* Mobile Optimization Guardrails */
@media (max-width: 767px) {
    .sleek-wooden-hero {
        min-height: 130px;
        background-size: 50px 100%, 100% 100%, 100% 100%; /* Adapts grain ratio for narrower screen views */
    }
    .sleek-wooden-hero h1.elementor-heading-title {
        font-size: 24px !important; /* Slightly sizes down to keep titles elegantly locked on one line */
    }
    .sleek-wooden-hero::before {
        animation: risingEmbers 12s linear infinite; /* Slows particle computing speed down on mobile to save user battery life */
    }
}/* End custom CSS */