/* ================= 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{
    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:.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;
}

/* ================= CONTACT ================= */

#contact{

    width:90%;
    max-width:1200px;

    margin:60px auto;

    text-align:center;

}

#contact h1{
    font-size:50px;
    color:#ff3131;
    margin-bottom:20px;
    letter-spacing:2px;

}

#contact p{

    width:80%;
    max-width:900px;

    margin:0 auto 50px;

    font-size:20px;

    line-height:1.8;

    color:#e5e5e5;

}

/* ================= CONTACT CONTAINER ================= */

.contact-container{

    display:flex;
    justify-content:space-between;
    gap:40px;

}

/* ================= CONTACT INFO ================= */

.contact-info{

    width:35%;

    background:#1b1b1b;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(255,0,0,.35);

    text-align:left;

}

.contact-info h2{

    color:#ff3131;

    margin-bottom:25px;

}

.contact-info p{

    width:100%;

    margin:20px 0;

    font-size:18px;

    color:white;

    text-align:left;

}

/* ================= CONTACT FORM ================= */

.contact-form{

    width:65%;

    background:#1b1b1b;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(255,0,0,.35);

}

.contact-form h2{

    color:#ff3131;

    margin-bottom:25px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:none;

    border-radius:10px;

    background:#2b2b2b;

    color:white;

    font-size:16px;

    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border:2px solid #ff3131;

}

/* ================= BUTTON ================= */

button{

    width:220px;

    padding:15px;

    margin-top:10px;

    border:none;

    border-radius:50px;

    background:#ff3131;

    color:white;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:white;

    color:#c40000;

    transform:translateY(-5px);

    box-shadow:0 8px 18px rgba(255,49,49,.45);

}

/* ================= FOOTER ================= */

footer{

    background:#c40000;

    text-align:center;

    padding:20px;

    margin-top:60px;

    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);
    }
}