/*==========================
ICEMAN PORTFOLIO
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    background:#050505;
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#00D9FF;
    border-radius:20px;

}

/*==========================
LOADER
===========================*/

#loader{

    position:fixed;
    inset:0;
    background:#050505;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;

}

.loader-logo{

    text-align:center;

}

.loader-logo img{

    width:90px;
    animation:spin 3s linear infinite;

}

.loader-logo h1{

    margin-top:15px;
    color:#00D9FF;
    letter-spacing:4px;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==========================
CURSOR
===========================*/

.cursor{

    width:18px;
    height:18px;
    border:2px solid #00D9FF;
    border-radius:50%;
    position:fixed;
    pointer-events:none;
    z-index:99999;

}

/*==========================
NAVBAR
===========================*/

header{

    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(15px);

}

nav{

    width:90%;
    margin:auto;
    height:85px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    width:65px;

}

nav ul{

    display:flex;
    list-style:none;

}

nav ul li{

    margin-left:30px;

}

nav ul li a{

    color:white;
    text-decoration:none;
    transition:.4s;

}

nav ul li a:hover{

    color:#00D9FF;

}

.menu{

    display:none;
    font-size:30px;
    cursor:pointer;
    color:white;

}

/*==========================
HERO
===========================*/

#home{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    overflow:hidden;

    padding:120px 7%;

}

.hero-content{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.left{

    width:55%;

}

.left h4{

    color:#D4AF37;

    font-size:22px;

}

.left h1{

    font-size:75px;

    margin:10px 0;

    color:#fff;

}

.left h2{

    color:#00D9FF;

    min-height:50px;

    font-size:34px;

}

.left p{

    color:#aaa;

    line-height:30px;

    margin:30px 0;

}

.buttons{

    display:flex;

    gap:20px;

}

.buttons a{

    text-decoration:none;

    padding:14px 34px;

    border-radius:40px;

    transition:.4s;

}

.buttons a:first-child{

    background:#00D9FF;

    color:#000;

    font-weight:600;

}

.buttons a:last-child{

    border:2px solid #D4AF37;

    color:#D4AF37;

}

.buttons a:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px #00D9FF;

}

/*==========================
IMAGE
===========================*/

.right{

    width:40%;

    display:flex;

    justify-content:center;

}

.hero-image{

    width:420px;

    height:420px;

    border-radius:50%;

    border:6px solid #00D9FF;

    overflow:hidden;

    animation:float 5s ease infinite;

    box-shadow:0 0 50px rgba(0,217,255,.45);

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

@keyframes float{

    50%{

        transform:translateY(-25px);

    }

}

/*==========================
SECTIONS
===========================*/

section{

    padding:110px 10%;

}

section h2{

    font-size:45px;

    margin-bottom:25px;

    color:#D4AF37;

}

section p{

    color:#bdbdbd;

    line-height:30px;

}

/*==========================
FOOTER
===========================*/

footer{

    background:#090909;

    text-align:center;

    padding:60px 20px;

}

.social{

    margin-bottom:30px;

}

.social a{

    width:55px;

    height:55px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin:8px;

    border-radius:50%;

    color:white;

    background:#111;

    transition:.4s;

    text-decoration:none;

}

.social a:hover{

    background:#00D9FF;

    color:#000;

    transform:translateY(-8px);

}

footer p{

    color:#888;

}

/*==========================
SCROLL INDICATOR
===========================*/

.scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    animation:bounce 2s infinite;

    color:#D4AF37;

    font-size:30px;

}

@keyframes bounce{

    50%{

        transform:translate(-50%,-18px);

    }

}

/*==========================
BACKGROUND GLOW
===========================*/

#home::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:#00D9FF22;

    filter:blur(180px);

    left:-150px;

    top:-100px;

}

#home::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#D4AF3720;

    filter:blur(150px);

    right:-120px;

    bottom:-100px;

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:1000px){

.hero-content{

flex-direction:column;

text-align:center;

}

.left{

width:100%;

}

.right{

width:100%;

margin-top:50px;

}

.left h1{

font-size:55px;

}

.hero-image{

width:320px;

height:320px;

}

nav ul{

display:none;

}

.menu{

display:block;

}

.buttons{

justify-content:center;

flex-wrap:wrap;

}

}