
body{
margin:0;
background:#000;
color:#fff;
font-family:Montserrat, sans-serif;
overflow-x:hidden;
}

canvas{
position:fixed;
top:0;
left:0;
z-index:-1;
}

.nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,.55);
backdrop-filter:blur(10px);
z-index:10;
box-sizing:border-box;
}

.logo img{
height:40px;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#fff;
font-size:14px;
letter-spacing:2px;
opacity:.9;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-family:Orbitron;
font-size:52px;
letter-spacing:5px;
font-weight:500;
margin:0;
}

.hero p{
margin-top:18px;
opacity:.7;
font-size:14px;
}

.statement{
min-height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:140px 10%;
}

.statement-title{
font-family:Orbitron;
font-size:64px;
line-height:1.05;
letter-spacing:4px;
margin-bottom:70px;
display:flex;
flex-direction:column;
align-items:center;
opacity:1;
text-shadow:0 0 20px rgba(255,255,255,0.25);
}

.section{
padding:160px 10%;
text-align:center;
}

.section h2,
.section h3{
font-family:Orbitron;
letter-spacing:4px;
}

.section h2{
margin-bottom:60px;
}

.section h3{
margin:0 0 28px;
font-size:28px;
}

.gallery-block{
width:min(1200px, 100%);
margin:0 auto 72px;
}

.image-grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:32px;
width:min(1200px, 100%);
margin:0 auto;
justify-content:start;
align-items:start;
}

.gallery-item{
width:100%;
background:#0b0b0b;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.gallery-item img{
display:block;
width:100%;
height:auto;
object-fit:contain;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.03);
}

footer{
text-align:center;
padding:60px;
color:#777;
}

.footer-links{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

.footer-links a{
color:#999;
text-decoration:none;
font-size:14px;
}

.footer-links a:hover{
color:#fff;
}

.gallery-note{
max-width:900px;
margin:30px auto 0;
font-size:12px;
opacity:.55;
line-height:1.8;
}

@media (max-width: 1024px){
.image-grid{
grid-template-columns:repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 640px){
.nav{
padding:16px 20px;
}
nav{
gap:16px;
flex-wrap:wrap;
justify-content:flex-end;
}
.hero h1{
font-size:36px;
}
.statement-title{
font-size:42px;
margin-bottom:40px;
}
.image-grid{
grid-template-columns:1fr;
gap:20px;
}
.section,
.statement{
padding:120px 6%;
}
}
