/* ============================================
   projectH2 Custom Styles
   public/assets/css/projecth2-custom.css
   ============================================ */



/* Tiling texture background - light sections */
.bg-texture {
    background-color: #f7f7f7;
    background-image: url('../img/more/texture.png');
    background-repeat: repeat;
    background-size: auto;
}

/* Tiling texture - slightly darker for contrast */
.bg-texture-dark {
    background-color: #efefef;
    background-image: url('../img/more/texture.png');
    background-repeat: repeat;
    background-size: auto;
}


/* Grey placeholder for missing images */
.img-placeholder {
    background-color: #e0e0e0;
    background-image: url('../img/more/texture.png');
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Card image placeholder with layer pattern */
.card-img-placeholder {
    height: 220px;
    background-color: #e2e2e2;
    background-image: url('../img/slider/layer-1-light.png');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.card-img-placeholder span {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* wptb-pricing-table on light/texture background */
.bg-texture .wptb-pricing-table .wptb-item--inner,
.bg-texture-dark .wptb-pricing-table .wptb-item--inner {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Form inputs - ensure always visible */
.form-control {
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
}
.form-control:focus {
    border-color: #c8a951 !important;
    box-shadow: 0 0 0 2px rgba(200,169,81,0.15) !important;
}

/* Admin / content section padding */
.content-section {
    padding: 80px 0;
}
.admin-section {
    padding: 60px 0;
}

/* ── Upcoming Lessons — equal-height cards across the row ── */
.wptb-blog-grid-one .wptb-blog--inner .row { align-items: stretch; }
.wptb-blog-grid-one .wptb-blog-grid1,
.wptb-blog-grid-one .wptb-blog-grid1 .wptb-item--inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wptb-blog-grid-one .wptb-blog-grid1 .wptb-item--holder {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* target the slider title — adjust selector to match your markup */
.wptb-slider.style1 .wptb-item--title {
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill; /* stroke behind fill so it doesn't eat the letters */
}