/* =====================================================
   PATRES CLOUD - FUTURISTIC WEBSITE STYLE
   ===================================================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background:
    radial-gradient(circle at top left,#1b2450,transparent 40%),
    #050510;

    color:white;

    overflow-x:hidden;

    min-height:100vh;

}




/* ===============================
   BACKGROUND EFFECTS
================================ */


.background {

    position:fixed;

    width:100%;
    height:100%;

    top:0;
    left:0;

    z-index:-1;

    overflow:hidden;

}



.orb {

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.45;

    animation:float 15s infinite alternate;

}



.orb-one {

    width:400px;
    height:400px;

    background:#5b5bff;

    top:-100px;
    left:-100px;

}



.orb-two {

    width:350px;
    height:350px;

    background:#00ffd5;

    right:-100px;
    top:40%;

    animation-delay:2s;

}



.orb-three {

    width:300px;
    height:300px;

    background:#ff3cac;

    bottom:-100px;
    left:40%;

    animation-delay:4s;

}




@keyframes float {

    from {

        transform:translateY(0) scale(1);

    }


    to {

        transform:translateY(80px) scale(1.2);

    }

}





/* ===============================
 NAVBAR
================================ */


.navbar {

    position:fixed;

    top:0;

    width:100%;

    padding:25px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:1000;

    backdrop-filter:blur(20px);

    background:rgba(5,5,16,.5);

}




.logo {

    font-size:24px;

    font-weight:800;

    display:flex;

    align-items:center;

    gap:10px;

}




.logo-dot {

    width:14px;
    height:14px;

    background:#00ffd5;

    border-radius:50%;

    box-shadow:

    0 0 20px #00ffd5;

    animation:pulse 2s infinite;

}



@keyframes pulse {

    50% {

        transform:scale(1.3);

    }

}




nav {

    display:flex;

    gap:30px;

}


nav a {

    color:white;

    text-decoration:none;

    opacity:.7;

    transition:.3s;

}


nav a:hover {

    opacity:1;

    color:#00ffd5;

}







/* ===============================
 HERO
================================ */


.hero {

    min-height:100vh;

    padding:150px 8% 80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

}




.hero-content {

    max-width:650px;

}



.tag {

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    margin-bottom:30px;

    font-size:14px;

}




h1 {

    font-size:clamp(45px,6vw,80px);

    line-height:1.05;

    font-weight:900;

}



h1 span {

    background:

    linear-gradient(90deg,#00ffd5,#5b5bff);

    -webkit-background-clip:text;

    color:transparent;

}





.subtitle {

    margin-top:30px;

    font-size:20px;

    opacity:.75;

    line-height:1.7;

}







.buttons {

    margin-top:40px;

    display:flex;

    gap:20px;

}



.btn {

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

    display:inline-block;

}




.primary {

    background:#00ffd5;

    color:black;

    font-weight:700;

}



.primary:hover {

    transform:translateY(-5px);

    box-shadow:0 20px 40px #00ffd555;

}




.secondary {

    border:1px solid rgba(255,255,255,.3);

    color:white;

}



.secondary:hover {

    background:white;

    color:black;

}





/* ===============================
 TERMINAL CARD
================================ */



.hero-card {

    width:450px;

}



.terminal {

    background:#080812;

    border:

    1px solid rgba(255,255,255,.15);

    border-radius:20px;

    overflow:hidden;

    box-shadow:

    0 30px 80px rgba(0,0,0,.5);

    animation:cardFloat 5s infinite alternate;

}



@keyframes cardFloat {

    to {

        transform:translateY(-20px);

    }

}



.terminal-top {

    padding:15px;

    background:#111;

    display:flex;

    gap:8px;

}


.terminal-top span {

    width:12px;
    height:12px;

    border-radius:50%;

    background:#555;

}




.terminal-body {

    padding:30px;

    font-family:monospace;

    line-height:2;

}



.green {

    color:#00ffd5;

}


.online {

    color:#00ffd5;

}






/* ===============================
 SECTIONS
================================ */


.section {

    padding:100px 8%;

}




.section-title {

    text-align:center;

    margin-bottom:70px;

}



.section-title h2 {

    font-size:50px;

}



.section-title p {

    opacity:.7;

    margin-top:15px;

}






/* ===============================
 CARDS
================================ */


.cards {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.card {

    padding:40px;

    background:

    rgba(255,255,255,.06);

    border:

    1px solid rgba(255,255,255,.1);

    border-radius:25px;

    backdrop-filter:blur(20px);

    transition:.4s;

}



.card:hover {

    transform:

    translateY(-15px);

    border-color:#00ffd5;

}





.card h3 {

    margin-bottom:20px;

    font-size:28px;

}



.card p {

    opacity:.75;

    line-height:1.7;

}






/* ===============================
 PROJECTS
================================ */


.projects-grid {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.project {

    padding:30px;

    background:

    rgba(255,255,255,.05);

    border-radius:25px;

    border:

    1px solid rgba(255,255,255,.1);

    transition:.4s;

}



.project:hover {

    transform:scale(1.05);

}



.project-icon {

    font-size:50px;

    margin-bottom:20px;

}


.project a {

    display:inline-block;

    margin-top:20px;

    color:#00ffd5;

    text-decoration:none;

}






/* ===============================
 STATS
================================ */


.stats {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.stat {

    text-align:center;

    padding:40px;

    border-radius:20px;

    background:rgba(255,255,255,.06);

}



.stat h3 {

    font-size:60px;

    color:#00ffd5;

}





/* ===============================
 CONTACT
================================ */


.contact {

    text-align:center;

}



.contact-box {

    padding:80px;

    border-radius:30px;

    background:

    rgba(255,255,255,.06);

}



.contact-box h2 {

    font-size:50px;

    margin-bottom:20px;

}





footer {

    padding:40px;

    text-align:center;

    opacity:.6;

}






/* ===============================
 ANIMATION SYSTEM
================================ */


.reveal {

    opacity:0;

    transform:

    translateY(50px);

    transition:

    1s ease;

}



.reveal.active {

    opacity:1;

    transform:

    translateY(0);

}






/* ===============================
 MOBILE
================================ */


@media(max-width:900px){


nav {

display:none;

}



.hero {

flex-direction:column;

}



.hero-card {

width:100%;

}



.cards {

grid-template-columns:1fr;

}



.projects-grid {

grid-template-columns:1fr;

}



.stats {

grid-template-columns:1fr 1fr;

}


}

