
body{
margin:0;
font-family:'Poppins',sans-serif;
background:url('../blackmedia_logo.jpg') center/cover no-repeat fixed;
color:white;
position:relative;
min-height:100vh;
}

body::before{

content:"";

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(15, 15, 15, 0.445);

backdrop-filter:blur(6px);

z-index:-1;

}

/* Metallic background animation */

@keyframes metal{

0%{background-position:0% 50%}

50%{background-position:100% 50%}

100%{background-position:0% 50%}

}


/* NAVBAR */

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 10%;

background:#111;

border-bottom:1px solid #333;

}


.logo{

font-size:24px;

font-weight:600;

letter-spacing:2px;

}


.logo span{

color:#999;

}

.logo img{

height:65px;

filter: drop-shadow(0 0 6px rgba(255,255,255,0.2));

}


.menu a{

color:#ccc;

text-decoration:none;

margin-left:20px;

font-size:14px;

}


.menu a:hover{

color:white;

}


/* HERO */

.hero{

height:50vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

}


.hero h1{

font-size:52px;

letter-spacing:3px;

}


.hero p{

color:#fffbfb77;

}


/* PROJECT GRID */
.projects{

padding:60px 10%;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}


.project{

background:#1a1a1a;

border-radius:10px;

overflow:hidden;

border:1px solid #333;

text-decoration:none;

color:white;

transition:0.3s;

}
.project{

background:rgba(40,40,40,0.55);

backdrop-filter:blur(10px);

border-radius:10px;

border:1px solid rgba(255,255,255,0.08);

overflow:hidden;

transition:0.3s;

}


.project:hover{

transform:scale(1.03);

box-shadow:0 10px 30px rgba(0,0,0,0.6);

}


.project-cover{

width:10%;

aspect-ratio:16/9;



display:block;

}

.project-info{

padding:15px;

background:#1a1a1a;

}


.project-info h3{

margin:0;

font-size:18px;

}


.project-info p{

margin-top:6px;

color:#aaa;

font-size:13px;

}


/* FOOTER */

footer{

text-align:center;

padding:40px;

color:#777;

border-top:1px solid #333;

margin-top:60px;

}