@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
}

/* HEADER */
.header{
    min-height:100vh;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #0f172a
    );
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#38bdf8;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

.btn-nav{
    text-decoration:none;
    background:#38bdf8;
    color:white;
    padding:12px 28px;
    border-radius:30px;
    transition:.4s;
}

.btn-nav:hover{
    transform:translateY(-4px);
}

/* HERO */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    min-height:85vh;
}

.hero-content{
    max-width:650px;
}

.hero-content h3{
    color:#38bdf8;
    font-size:25px;
}

.hero-content h1{
    color:white;
    font-size:75px;
    margin:10px 0;
}

.hero-content h2{
    color:#94a3b8;
    font-size:38px;
    margin-bottom:20px;
}

.hero-content p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.btn-primary{
    background:#38bdf8;
    color:white;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(56,189,248,.5);
}

.btn-secondary{
    border:2px solid #38bdf8;
    color:#38bdf8;
}

.btn-secondary:hover{
    background:#38bdf8;
    color:white;
}

/* IMAGE */
.hero-image{
    position:relative;
}

.hero-image img{
    width:420px;
    height:420px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #38bdf8;
    box-shadow:0 0 50px rgba(56,189,248,.4);
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* Responsive */
@media(max-width:992px){

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        gap:50px;
    }

    .hero-content h1{
        font-size:55px;
    }

    .hero-image img{
        width:300px;
        height:300px;
    }

    .hero-btns{
        justify-content:center;
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h2{
        font-size:28px;
    }
}