@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    background-color: rgb(223, 121, 143);
}
header{
    background-color: rgba(48, 48, 48, 0.9);
    color: white;
    text-align: center;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.home{
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 20px;
    border: 1px solid silver;
    border-radius: 30px;
    box-shadow: 2px 3px 5px black;
    transition: 0.4s;
}

.home:hover{
    color: #d82f43;
    transform: scale(1.2);
}

section{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

#contact{
    height: 500px;
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    border-radius: 5px;
    box-shadow: 2px 5px 20px rgba(195, 26, 63, 0.5);
}

.contacts{
    width: 400px;
    height: 400px;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(170, 23, 55);
    border-radius: 10px;
    margin-left: -200px;
    box-shadow: 2px 5px 10px rgb(104, 13, 33);
    transition: 0.4s;
    animation: slideRight 1s cubic-bezier(0.3, 0.885, 0.5, 2);
}

@keyframes slideRight{
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translate(0);
    }
}

.contacts:hover{
    box-shadow: 2px 5px 5px rgb(65, 8, 20);
    transform: scale(1.02);
}

.contacts h1{
    text-align: center;
    margin-bottom: 30px;
    padding: 5px;
    border-bottom: 2px solid rgb(202, 78, 105);
}

.contacts i{
    padding-right: 10px;
}

.detail{
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}

.detail:hover{
    background-color: rgb(104, 13, 33);
}

.getInTouch{
    height: 500px;
    width: 500px;
    padding: 50px;
    
}

.getInTouch h1{
    text-align: left;
}

.getInTouch >div{
    margin-bottom: 20px;
}

.getInTouch input{
    margin-bottom: 20px;
    padding: 20px;
    border: none;
    outline: none;
    background-color: #f9f9fb;
    width: 300px;
    transition: 0.3s;
}

.getInTouch input:focus, .getInTouch textarea:focus{
    background-color: rgb(243, 143, 168);
}

.getInTouch textarea{
    outline: none;
    resize: none;
    height: 110px;
    width: 300px;
    outline: none;
    border: none;
    padding: 20px 10px;
    background-color: #f9f9fb;
    margin-bottom: 20px;
    border-radius: 8px;
}

.getInTouch input[type="submit"]{
    background-color: rgb(104, 13, 33);
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.5s;
}

.getInTouch input[type="submit"]:hover{
    transform: translateY(-5px);
    filter: brightness(1.2);
}

footer .socialsContainer{
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(104, 13, 33);
    padding: 80px 0px ;
}

.report{
    display: flex;
}

.report a{
    color: rgb(216, 117, 138);
    padding: 0px 5px;
}

.socials{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.socials img{
    width: 50px;
    filter: invert(1);
    transition: 0.5s;
    margin: 0 15px;
    cursor: pointer;
}

.socials img:hover{
   transform: translateY(-10px) scale(0.9);
}

.copyright{
    text-align: center;
    color: white;
    padding: 30px;
    background-color: rgb(48, 6, 15);

}

.copyright h3{
    margin-bottom: 20px;
}

.copyright p{
    margin-top: 20px;
}


@media( max-width: 1200px ){
    header{
        font-size: 12px;
    }   
    section{
        height: 1000px;
    }
    #contact{
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        height: 900px;
    }
    .contacts{
        width: 350px;
        margin-left: 0px;
        margin-bottom: -30px;
        box-shadow: 2px 3px 3px rgb(126, 17, 41);
        animation: slideDown 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    @keyframes slideDown{
        from{
            transform: translateY(100%);
        }
        to{
            transform: translateY(0);
        }
    }
    .contacts:hover{
        transform: none;
        box-shadow: 2px 3px 3px rgb(126, 17, 41);
    }
    .getInTouch{
        width: 350px;
        padding: 25px;
        background-color: rgb(250, 250, 250);
        box-shadow: 2px -3px 15px rgb(126, 17, 41);
        z-index: 1;
    }
    
}

