/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#9d0000,#111);
    color:white;
    animation: morphIn 0.8s ease;
}

/* ================= HEADER ================= */

header{
    width:100%;
    background:#c40000;
    padding:20px 60px;
    position:sticky;
    top:0;
    z-index:1000;
}

nav{
    display:flex;
    justify-content:flex-end;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:gold;
}

/* Homepage Button */
.landing-page-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    background: #ff3131;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.landing-page-btn:hover{
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 49, 49, .45);
}

.landing-page-btn a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.landing-page-btn:hover a{
    color: #ba0000;
}

/* ================= PROJECTS ================= */

.projects{

    width:80%;
    max-width:900px;

    margin:60px auto;

    background:#1b1b1b;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(255,0,0,.35);

    text-align:center;

}

.projects h1{

    font-size:48px;

    color:#ff3131;

    margin-bottom:40px;

    letter-spacing:2px;

}

/* ================= PROJECT LIST ================= */

.projects ul{
    list-style:none;
}

.projects li{
    margin:20px 0;
}

.projects li a{

    display:block;

    background:#2b2b2b;

    color:white;

    text-decoration:none;

    font-size:22px;

    font-weight:bold;

    padding:18px 25px;

    border-radius:15px;

    border-left:6px solid #ff3131;

    transition:0.3s;

}

.projects li a:hover{

    background:#ff3131;

    transform:translateX(10px);

    box-shadow:0 8px 20px rgba(255,49,49,.45);

}

/* ================= FOOTER ================= */

footer{

    background:#c40000;

    text-align:center;

    padding:20px;

    font-size:18px;

    font-weight:bold;

}

@keyframes morphIn{
    from{
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }

    to{
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}