/*=========================================
        GALLERY HERO
=========================================*/

.gallery-hero{

height:60vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

background:
linear-gradient(rgba(5,10,20,.75),rgba(5,10,20,.85)),
url("../images/project-banner.jpg");

background-size:cover;

background-position:center;

padding-top:80px;

}

.gallery-hero h4{

color:#00ff88;

letter-spacing:6px;

font-size:16px;

margin-bottom:20px;

}

.gallery-hero h1{

font-family:'Orbitron',sans-serif;

font-size:70px;

color:white;

text-shadow:
0 0 20px #00ff88,
0 0 50px #00ff88;

margin-bottom:20px;

}

.gallery-hero p{

font-size:20px;

color:#ddd;

max-width:800px;

}

/*=========================================
FILTER
=========================================*/

.gallery-filter{

padding:35px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

background:#08121f;

}

.gallery-filter button{

padding:14px 30px;

background:#12263d;

border:none;

border-radius:40px;

color:white;

cursor:pointer;

transition:.4s;

}

.gallery-filter button:hover,

.gallery-filter .active{

background:#00ff88;

color:black;

box-shadow:

0 0 20px #00ff88;

}

/*=========================================
GALLERY GRID
=========================================*/

.gallery-grid{

padding:80px 8%;

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(320px,1fr));

gap:30px;

background:#08121f;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

box-shadow:

0 10px 25px rgba(0,0,0,.35);

transition:.5s;

}

.gallery-item:hover{

transform:translateY(-8px);

box-shadow:

0 0 25px rgba(0,255,150,.35),

0 0 60px rgba(0,255,150,.18);

}

.gallery-item img{

width:100%;

height:280px;

object-fit:cover;

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

/*=========================================
OVERLAY
=========================================*/

.overlay{

position:absolute;

bottom:0;

left:0;

width:100%;

padding:20px;

background:

linear-gradient(transparent,

rgba(0,0,0,.9));

}

.overlay h3{

color:white;

font-size:24px;

font-family:'Orbitron';

}

/*=========================================
VIDEO
=========================================*/

.video-section{

padding:100px 8%;

background:#0d1827;

}

.video-section h2{

text-align:center;

font-family:'Orbitron';

font-size:48px;

color:#00ff88;

margin-bottom:60px;

}

.video-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(420px,1fr));

gap:40px;

}

.video-card{

background:rgba(255,255,255,.05);

padding:20px;

border-radius:20px;

transition:.4s;

}

.video-card:hover{

box-shadow:

0 0 25px rgba(0,255,150,.35);

}

.video-card video{

width:100%;

border-radius:15px;

}

.video-card h3{

margin-top:20px;

text-align:center;

color:#00ff88;

}

/*=========================================
CTA
=========================================*/

.gallery-cta{

padding:120px 20px;

text-align:center;

background:linear-gradient(135deg,#03111d,#081a2d);

}

.gallery-cta h2{

font-family:'Orbitron';

font-size:48px;

margin-bottom:20px;

}

.gallery-cta p{

font-size:22px;

color:#ddd;

margin-bottom:35px;

}

.gallery-cta .btn-primary{

display:inline-block;

padding:18px 45px;

background:#00ff88;

color:#000;

text-decoration:none;

font-weight:bold;

border-radius:50px;

transition:.4s;

}

.gallery-cta .btn-primary:hover{

transform:translateY(-5px);

box-shadow:

0 0 25px #00ff88,

0 0 50px #00ff88;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.gallery-hero h1{

font-size:42px;

}

.video-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.video-section h2{

font-size:34px;

}

.gallery-cta h2{

font-size:34px;

}

}