/* 25302262 - ANDRIES DANIEL LOUW */

/* COLOR PALLETE */
:root{
    --gray: #E8E8E8;
    --navy: #232A3B;
    --purple: #AF85E7;
    --green: #D5F379;
}
main{
    color: var(--navy);
}

/* CONTACT US DESIGN */
.contactUsHeading{
    color: var(--green);
    -webkit-text-stroke: 2px var(--navy);
    text-shadow: 2px 2px 0px var(--navy);
    margin: 0;
    padding: 0;
}

.contactUsContainer{
    display: flex;
    flex-direction: column;
    align-items: start;
    color: var(--navy);
    border-style: solid;
    margin: 20px;
    padding: 10px;
    border-width: 2px;
    border-radius: 20px;
    box-shadow: 4px 4px 0px var(--green);
    width: 90%;
}
/* TABLE DESIGN */
table{
    text-align: left;
}
td{
    padding-left: 15px;
}

/* SOCIAL MEDIA LINKS DESIGN*/
.socialMediaLinksContainer{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 20px;
    color: var(--navy);
    border-style: solid;
    margin: 20px;
    padding: 10px;
    border-width: 2px;
    border-radius: 20px;
    box-shadow: 4px 4px 0px var(--purple);
    width: 95%;
}

.contactImage{
   width: 25%;
   padding-left: 10%;
}

/* CONTACT US BUTTON DESIGN */
.btnContactUs{
    font-family: 'Poppins',sans-serif;
    font-size: larger;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 5px;
    margin-left: 20px;
    margin-bottom: 20px;
    justify-content: center;
    background-color: var(--purple);
    color: var(--navy);
    border-radius: 50px;
    border: 2px solid var(--navy);
    box-shadow: 2px 2px 0px var(--navy);
    cursor: pointer;
}
.btnContactUs:active{
    box-shadow: 0px 0px;
    transform: translateX(2px);
    transform: translateY(2px);
}
.callLogo{
    width: 30px;
}
.detailsContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* TOP LAYOUT */
.subTopContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-left: 10%;
}
.topContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: center;
    justify-content: center;
}

/* INQUIRES DESIGN*/
.inquiriesContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: var(--navy);
    border-style: solid;
    margin: 20px;
    padding-left: 20px;
    border-width: 2px;
    border-radius: 20px;
    box-shadow: 4px 4px 0px var(--purple);
    width: 40%;
}
.label{
    font-weight: 600;
}

input[type="text"],input[type="Email"]{
    font-family: 'Poppins',sans-serif;
    width: 100%;
    border-radius: 20px;
    border-style: groove;
    border-color: var(--purple);
    border-width: 2px;
    padding: 10px;
    outline: none;
}
input[type="text"]:focus,input[type="Email"]:focus{
    border-color: var(--green);
}

select{
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border-style: groove;
    border-color: var(--purple);
    border-width: 2px;
    outline: none;
}
select:focus{
    border-color: var(--green);
}

textarea{
    font-family: 'Poppins',sans-serif;
    width: 100%;
    height: 100px;
    border-radius: 20px;
    border-style: groove;
    border-color: var(--purple);
    border-width: 2px;
    padding: 10px;
    resize: none;
    outline: none;
}
textarea:focus{
    border-color: var(--green);
}

/* SENT BUTTON DESIGN*/
.btnSent{
    font-family: 'Poppins',sans-serif;
    font-size: larger;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    gap: 15px;
    padding: 5px;
    justify-content: center;
    background-color: var(--purple);
    color: var(--gray);
    border-radius: 50px;
    border: 2px solid var(--navy);
    box-shadow: 2px 2px 0px var(--navy);
    cursor: pointer;
}
.btnSent:active{
    box-shadow: 0px 0px;
    transform: translateX(2px);
    transform: translateY(2px);
}

/* FIND US GOOGLE MAP DESIGN*/
.findUsContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: var(--navy);
    border-style: solid;
    margin: 20px;
    padding: 20px;
    border-width: 2px;
    border-radius: 20px;
    box-shadow: 4px 4px 0px var(--green);
    width: 40%;
}
.mapContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border-color: var(--green);
    border-style: solid;
    border-width: 2px;
}

/* BOTTOM CONTAINER DESIGN*/
.bottomContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
}


