*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#0b0f17;
    color:white;
    line-height:1.7;
}

/* NAVBAR */

nav{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    background:rgba(11,15,23,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#00d2ff;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:0.3s;
}

nav a:hover{
    color:#00d2ff;
}

/* HERO */

.hero{
    height:70vh;
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.75)),
    url("../../../image.php?id=IMG_7562.JPG");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#c7c7c7;
}

/* CONTENT */

.container{
    width:85%;
    max-width:1200px;
    margin:auto;
/*    padding:80px 0; */
    padding:20px 0;
}

.section{
 /*   margin-bottom:80px; */
    margin-bottom:50px;
}

.section-title{
    font-size:36px;
    margin-bottom:25px;
    color:#00d2ff;
}

.text{
    color:#cfcfcf;
    font-size:18px;
}

/* TAGS */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.tag{
    background:#121927;
    border:1px solid #23314a;
    padding:10px 18px;
    border-radius:50px;
    color:#00d2ff;
    font-size:14px;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery img{
    width:100%;
    border-radius:20px;
    transition:0.3s;
	
    object-fit:cover;
}

.gallery img:hover{
/*    transform:scale(1.03); */
    transform:scale(1.57);

}

/* INFO CARDS */

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.info-card{
    background:#121927;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.05);
}

.info-card h3{
    margin-bottom:20px;
    color:#00d2ff;
}

.info-card p{
    color:#cfcfcf;
}

/* STATS */

.stats{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.stat{
    background:#121927;
    padding:20px 25px;
    border-radius:16px;
    min-width:180px;
}

.stat h2{
    color:#00d2ff;
    margin-bottom:5px;
}

/* FOOTER */

footer{
    padding:40px;
    text-align:center;
    color:#7e7e7e;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

}

/* highlight */

.section-title span{
    color:#00d2ff;
}

.highlight{
    color:#00d2ff;
    font-weight:700;
}	

.blur_code{
	 filter: blur(1px);
}


/* MOBILE FIX */

@media(max-width:768px){

    nav{

        padding:20px 5%;

        flex-wrap:wrap;

        gap:15px;

    }

    .hero{

        padding-top:140px;

        height:auto;

        min-height:70vh;

    }

    .hero h1{

        font-size:42px;

        line-height:1.1;

    }

    .section-title{

        font-size:28px;

        line-height:1.2;

    }

    .text{

        font-size:17px;

    }

}
