body {
    margin: 0;
    font-family: "PT Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #1F1F1F;
    color: #FFF;
    line-height: 1.3;
}

nav {
    background-color: #0D0D0D;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: static;
    z-index: 10;
}

nav a {
    font-family: "Quicksand", sans-serif;
    margin: 0 20px;
    text-decoration: none;
    color: #FFFFFF;
    padding: 10px 20px;
    text-transform: capitalize;
}

nav a:hover {
    color: #b8ad14;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 95%;
}

.contact a {
    color: #b8ad14; 
    text-decoration: none; 
}

.contact a:hover {
    color: #a59f0c;
    text-decoration: underline; 
}

.contact h3 {
    margin: 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.contact p {
    margin: 10px 0;
    font-size: 18px;
}

.contact label {
    font-size: 16px;
    margin: 10px 0;
    display: block;
    text-align: left;
}

.contact input{
    width: 100%;
    max-width: 240px;
    padding: 8px;
    margin-bottom: 20px;
    border: 2px solid #b8ad14;
    border-radius: 20px;
    background-color: #1F1F1F;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    display: block;
    box-sizing: border-box; 
}

.contact textarea {
    width: 100%; 
    max-width: 480px;
    max-height: 360px;
    padding: 8px;
    margin-bottom: 20px;
    border: 2px solid #b8ad14;
    border-radius: 50px;
    background-color: #1F1F1F;
    color: #FFF;
    font-size: 16px;
    display: block;
    resize: none; 
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}



.contact button {
    background-color: #b8ad14;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    transition: background-color 0.3s;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background-color: #a59f0c;
    transform: translateY(-1px);
}

.contact form {
    width: 100%;  
}

.contact div {
    display: flex;
    justify-content: center; 
    width: 100%; 
}

footer {
    background-color: #0D0D0D;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

#scrollToTop {

    bottom: 50px; 
    right: 20px; 
    aspect-ratio: 1 / 1;
    background-color: #b8ad14; 
    color: 000; 
    border: none; 
    padding: 10px 15px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: bold;
}

#scrollToTop:hover {
    background-color: #a59f0c;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    nav {
        padding: 18px 0;
    }
    nav a {
        font-size: 0; 
        position: relative; 
    }


    nav a:nth-child(1)::before {
        content: '\f2c2'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(2)::before {
        content: '\f007'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(3)::before {
        content: '\f1c8'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }
    nav a:nth-child(4)::before {
        content: '\f0e0'; 
        font-family: "Font Awesome 5 Free";
        font-weight: 400;
        font-size: 24px;
    }

    nav a::before {
        display: block;
        font-size: 24px;
        text-align: center;
        color: ##FFFFFF;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .container {
        padding: 10px;
    }

    .contact {
        padding: 20px;
        width: 90%;
    }

    .contact h3 {
        font-size: 24px; 
    }

    .contact p, .send label {
        font-size: 16px; 
    }
    
    
    .contact input {
        width: 60%;
    }
    .contact textarea {
        width: 90%; 
    }
    
    .contact button {
    max-width: 120px
    }
    
    footer {
    background-color: #0D0D0D;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    footer p{
        margin: 0;
        font-size: 12px; 
    }

}
