


body{
    background-color: rgb(228, 88, 64) !important;
}

.bg{
    background-color: rgb(228, 88, 64);
}

.nav-item .active{
    color: rgb(255, 191, 182) !important;
}

.home-image{
    background-image: url('/images/home/top-view-dried-herbs-spoons.jpg');
    background-size: cover;
    margin-top: 5rem;
    height: 80vh;
}


.contact-us-form{
    display: flex;
    height: 70vh;
    font-family: canela serif;
}
.left-side-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60vw;
}

.left-side-contact p{
    font-size: 3rem;
}
.social-media-contact{
    font-size: 2rem;
    display: flex;
    gap: 1vw;
}

.right-side-contact{
    margin-top: 9rem;
}

.contact-form input{
    margin: 1rem;
    border: none;
    border-bottom: 1px solid ;
    background: transparent;
}

input::placeholder{
    color: black;
}

.contact-form textarea{
    margin: 1rem;
    border: none;
    border-bottom: 1px solid;
    background: transparent;
}
textarea::placeholder{
    color: black;
}

.contact-form button{
    margin: 1rem;
    width: 10vw;
    border: 1px solid black;
    border-radius: 10px;
    background: transparent;
    font-size: 1.5rem;
    padding: 5px;
    transition: all 0.5s ease-in-out;
}


.contact-form button:hover{
    border: 1px solid black;
    border-radius: 10px;
    background-color: rgb(76, 109, 72);
    transform: scale(1.1);
}

#contact-message{
    display: flex;
    color: green;
    position: absolute;
    text-align: center;
    padding: 7px;
    font-weight: 800;
    font-family: "raleway", sans-serif;
    z-index: 10;
    border-radius: 10px;
    transition: display all 0.3s ease;
    display: none;   /*javascript for this */
    width: fit-content;
    margin-left: 53%;
}
