*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'lexend', sans-serif;
}

body{
background:#0f0f0f;
color:white;
scroll-behavior:smooth;
}

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
z-index:100;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ff4c4c;
}
.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
background:#0f0f0f;
}
.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45); /* adjust darkness here */
z-index:1;
}

/* hero text layer */

.hero-content{
position:relative;
z-index:2;
}

@keyframes gradientFlow{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}
.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background-image: url(images/herobackground.png);
background-size:cover;
width: 100%;
animation:fadeIn 2s;
}

.hero h2{
font-size:3rem;
margin-bottom:10px;
z-index: 2;
}
.hero p{
    z-index: 2;
}

.hero-btn{
margin-top:20px;
padding:12px 28px;
background:#ff4c4c;
border-radius:30px;
text-decoration:none;
color:white;
transition:.3s;
z-index: 2;
outline: white solid 2px;
}

.hero-btn:hover{
transform:scale(1.1);
}

.about{
padding:120px 10%;
}

.about-container{
display:flex;
align-items:center;
gap:60px;
}

.about-image img{
width:280px;
border-radius:20px;
transition:.4s;
}

.about-image img:hover{
transform:scale(1.05) rotate(2deg);
}

.about-text{
max-width:400px;
}

.projects{
padding:120px 10%;
text-align:center;
}

.section-title{
font-size:2.5rem;
margin-bottom:60px;
}

.project-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
max-width:1200px;
margin:auto;
}
.project-card{
background:#1a1a1a;
padding:20px;
border-radius:12px;
transition:.4s;
cursor:pointer;
}

.project-card img{
width:100%;
border-radius:10px;
margin-bottom:15px;
}

.project-card:hover{
transform:translateY(-10px) scale(1.03);
transform:translateY(-6px);
box-shadow:0 0 25px rgba(255,76,76,.35);
}
.coming-soon{
text-align:center;
margin-top:60px;
color:#aaa;
font-size:18px;
opacity:.8;
animation:fadePulse 3s infinite;
}

.coming-soon p{
margin-top:10px;
letter-spacing:2px;
}

.dots{
font-size:28px;
color:#ff4c4c;
display:block;
animation:bounceDots 1.8s infinite;
}

@keyframes fadePulse{

0%{
opacity:.5;
}

50%{
opacity:1;
}

100%{
opacity:.5;
}

}

@keyframes bounceDots{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-6px);
}

}
.contact{
padding:120px 10%;
text-align:center;
}

.contact-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:900px;
margin:40px auto;
}

.contact-card{
background:#1a1a1a;
padding:35px;
border-radius:12px;
position:relative;
overflow:hidden;
transition:.35s;
}

/* hover lift */

.contact-card:hover{
transform:translateY(-8px);
transform:translateY(-6px);
box-shadow:0 0 25px rgba(255,76,76,.35);
}



/* content stays above glow */

.contact-card h3,
.contact-card p{
position:relative;
z-index:2;
}

.contact-card a{
color:#ff4c4c;
text-decoration:none;
}

.contact-card a:hover{
text-decoration:underline;
}

.contact-message{
max-width:600px;
margin:auto;
margin-top:20px;
color:#bbb;
line-height:1.6;
}

button:hover{
transform:scale(1.05);
}

footer{
text-align:center;
padding:30px;
background:#080808;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(40px);}
to{opacity:1; transform:translateY(0);}
}
/* SCROLLBAR */

::-webkit-scrollbar{
width:12px;
}

::-webkit-scrollbar-track{
background:#0f0f0f;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(180deg,#ff4c4c,#ff914d);
border-radius:10px;
box-shadow:0 0 10px #ff4c4c;
animation:scrollGlow 3s linear infinite;
}

::-webkit-scrollbar-thumb:hover{
background:linear-gradient(180deg,#ff6a6a,#ffa76b);
}

@keyframes scrollGlow{

0%{
box-shadow:0 0 5px #ff4c4c;
}

50%{
box-shadow:0 0 15px #ff914d;
}

100%{
box-shadow:0 0 5px #ff4c4c;
}

}

/* MODAL BACKGROUND */

.project-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:.4s;
z-index:10000;
}

.project-modal.active{
opacity:1;
pointer-events:auto;
}

/* MODAL BOX */

.modal-content{
background:#121212;
padding:40px;
border-radius:12px;
max-width:900px;
width:90%;
max-height:85vh;
overflow-y:auto;
position:relative;
animation:modalPop .4s;
}

/* CLOSE BUTTON */

.close-modal{
position:absolute;
top:15px;
right:20px;
font-size:26px;
cursor:pointer;
}

/* TITLE */

.modal-title{
font-size:2rem;
margin-bottom:5px;
}

.modal-date{
color:#aaa;
margin-bottom:20px;
}

/* GALLERY */

.modal-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-top:20px;
}

.modal-gallery img,
.modal-gallery video{
width:100%;
border-radius:8px;
}

@keyframes modalPop{

from{
transform:scale(.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

/* MODAL */

.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:opacity .4s ease;
z-index:9999;
}

.modal.show{
opacity:1;
pointer-events:auto;
}

/* MODAL BOX */

.modal-content{
background:#111;
padding:40px;
width:85%;
max-width:900px;
border-radius:12px;
transform:translateY(40px);
transition:transform .4s ease;
}

.modal.show .modal-content{
transform:translateY(0);
}

.close-modal{
position:absolute;
top:20px;
right:30px;
font-size:30px;
cursor:pointer;
}


/* SLIDER */

.slider{
position:relative;
margin-top:30px;
overflow:hidden;
}

.slides{
display:flex;
transition:transform .5s ease;
}

.slide{
min-width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.slide img,
.slide video{
width:100%;
max-height:450px;
object-fit:contain;
border-radius:8px;
cursor:pointer;
}


/* NAV BUTTONS */

.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.6);
color:white;
border:none;
font-size:30px;
padding:8px 14px;
cursor:pointer;
}

.prev{ left:10px; }
.next{ right:10px; }


/* FULLSCREEN VIEW */

.fullscreen{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:black;
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:.3s;
z-index:10000;
}

.fullscreen.show{
opacity:1;
pointer-events:auto;
}

.fullscreen img{
max-width:90%;
max-height:90%;
}

.close-fullscreen{
position:absolute;
top:20px;
right:30px;
font-size:35px;
color:white;
cursor:pointer;
}

/* MAIN GALLERY */

.gallery{
margin-top:30px;
}

.main-slider{
overflow:hidden;
width:100%;
cursor:grab;
}

.slides{
display:flex;
transition:transform .5s ease;
}

.slide{
min-width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.slide img,
.slide video{
width:100%;
max-height:450px;
object-fit:contain;
border-radius:8px;
cursor:pointer;
}


/* THUMBNAILS */

.thumbnails{
display:flex;
gap:10px;
margin-top:15px;
overflow-x:auto;
padding-bottom:10px;
}

.thumbnail{
width:80px;
height:60px;
object-fit:cover;
border-radius:6px;
cursor:pointer;
opacity:.4;
transition:.3s;
}

.thumbnail.active{
opacity:1;

}

.thumbnail:hover{
opacity:1;
}


.instagram-section{
padding:80px 10%;
background:#111;
display:flex;
justify-content:center;
}

.instagram-container{
display:flex;
align-items:center;
gap:40px;
max-width:900px;
width:100%;
text-decoration:none;
background:#1a1a1a;
padding:40px;
border-radius:14px;
transition:.35s;
}

.instagram-container:hover{
transform:translateY(-6px);
box-shadow:0 0 25px rgba(255,76,76,.35);
}

/* logo */

.instagram-logo img{
width:90px;
height:90px;
object-fit:contain;
}

/* text */

.instagram-text h2{
font-size:32px;
color:#ff4c4c;
margin-bottom:5px;
}

.instagram-text p{
color:#bbb;
font-size:16px;
}
/* TABLET */

@media (max-width:1024px){

header{
padding:20px 5%;
}

.hero h2{
font-size:2.5rem;
}

.about-container{
flex-direction:column;
text-align:center;
}

.about-image img{
width:220px;
}

.project-grid{
grid-template-columns:repeat(2,1fr);
}

}
/* MOBILE */

@media (max-width:700px){

header{
flex-direction:column;
gap:10px;
}

nav a{
margin:0 10px;
font-size:14px;
}

.hero h2{
font-size:2rem;
}

.hero p{
font-size:14px;
}

.about{
padding:80px 6%;
}

.projects{
padding:80px 6%;
}

.contact{
padding:80px 6%;
}

.project-grid{
grid-template-columns:1fr;
}

.about-image img{
width:180px;
}

}


.contact-container{
grid-template-columns:1fr;
}

.instagram-container{
flex-direction:column;
text-align:center;
}

.instagram-logo img{
width:70px;
}

.instagram-text h2{
font-size:26px;
}


