/* ==========================================
   CONTERCO INDUSTRIES
   HOME PAGE
========================================== */

/* HERO */

.homehero{

width:100%;

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

position:relative;

overflow:hidden;

background:url("../image/welcome.jpg")
center center/cover no-repeat;

}

.homehero::before{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,0.4); /* Optional dark overlay */

z-index:1;

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

padding:40px;

text-align:center;

color:#fff;

}

.hero-content h1{

margin-bottom:20px;

}

.hero-content p{

max-width:700px;

margin:0 auto 35px;

}

/* ==========================================
PRODUCT SHOWCASE
========================================== */

.products-home{

width:100%;

margin-top:55px;

}

.product-slide{

position:relative;

width:100%;

height:500px;

margin-bottom:25px;

border-radius:15px;

display:flex;

align-items:flex-end;

overflow:hidden;

scroll-snap-align:start;

}

.product-slide img,

.product-slide video{

position:absolute;

inset:0;

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

to top,

rgba(0,0,0,.82),

rgba(0,0,0,.15)

);

z-index:1;

}

.product-info{

position:relative;

z-index:2;

padding:45px;

max-width:560px;

color:#fff;

}

.product-info p{

margin:0;

flex:1;

}

.buttons{

display:flex;

gap:15px;

margin:0;

}

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 30px;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.btn.primary{

background:#fff;

color:#111;

}

.btn.primary:hover{

background:#ddd;

}

.btn.secondary{

border:2px solid #fff;

color:#fff;

background:transparent;

}

.btn.secondary:hover{

background:#fff;

color:#111;

}

/* ==========================================
HOME INTRO
========================================== */

.home-intro{

text-align:center;

max-width:900px;

margin:auto;

}

.home-intro p{

margin-top:20px;

}

/* ==========================================
FEATURE GRID
========================================== */

.home-features{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:60px;

}