#hero-content h1::before{
    content: "Get in Touch!";
    color: white;
    position: absolute;
    top: -3px;
    left: -5px;
    -webkit-text-stroke: 2px black;
    z-index: -1;
}
#panel2{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10rem;
    position: relative;
    padding-top: 10vh;
}
.container{
    border: 2px solid white;
    border-radius: 2rem;
    width: 90%;
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.location{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative
}
.location img{
    width: 100%;
    border-radius: 2rem;
}
.contactinfo{
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.contactinfo h4{
    font-weight: 500;
}
.contactinfo a{
    color: white;
}
.contactinfo button{
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: blue;
    border: 2px solid white;
    border-radius: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    &:hover{
        transform: scale(103%);
    }
}
#panel3{
    width: 100%;
    height: 31.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.contactinfodiv{
    height: 100%;
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10vw;

}
.contact-section {
    height: 100%;
    width: 60vw;
    background-color: transparent;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid #ddd;
    position: relative;
}

.contact-section h3 {
    margin-bottom: 1rem;
    color: #ddd;
}

.contact-form input {
    margin: 0.5rem 0;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 0.3rem;
    width: 100%;
    color: white;
    background-color: transparent;
    font-size: 1rem;
}
.contact-form textarea{
    margin: 0.5rem 0;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 0.3rem;
    width: 100%;
    color: white;
    background-color: transparent;
    font-size: 1rem;
}
.contact-form button {
    font-weight: 700;
    margin-top: 1rem;
    padding: 1rem;
    background-color: transparent;
    color: #ddd;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid #ddd;
}

.contact-form button:hover {
    background-color: #dddddd25;
}
#successMessage {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #28a745; /* Green background */
    color: white;
    border-radius: 0.3rem;
    text-align: center;
    display: none; /* Hide by default */
}
.hidden {
    display: none;
}
.social-links{
    width: 20vw;
    height: 100%;
    background-color: transparent;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid #ddd;
    position: relative;
}
.social-links h3{
    color: #ddd;
}
.social-links ul{
    margin-top: 2rem;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.social-links i{
    color: white;
    font-size: 1.5rem;
}

@media only screen and (max-width: 600px) {
    #panel2{
        margin-bottom: 5rem;
    }
    .container{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .location{
        width: 100%;
    }
    .location img{
        width: 100%;
        border-radius: 1rem;
    }
    .contactinfo{
        width: 100%;
    }
    .contactinfodiv{
        display: flex;
        flex-direction: column;
    }
    #panel3{
        height: auto;
    }
    .contactinfodiv{
        width: 100%;
    }
    .contact-section{
        width: 100%;
    }
    #contactButton{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-top: 1rem;
        height: 3rem;
    }
    .social-links{
        width: 100%;
    }
    .social-links ul{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}