/* ------- HEADER -------- */
.header {
    min-height: 50vh;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url(../Pictures/MaxGolfCourse.jpg);
    background-size: cover;
    background-position: center;
}

.text-box {
    color: #FAF3E0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: #FAF3E0;
}


/* -------------- LOCATION ----------- */

.location{
    width: 80%;
    margin: auto;
    display: flex; 
    /* border: 2px solid #3f522b; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.location iframe{
    width: 100%;
}

/* ------------- CONTACT US ---------------- */

.row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-us{
    width: 80%;
    margin: auto;
    padding: 50px 0;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa-solid{
    font-size: 30px;
    color: #5C4B51; 
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    font-size: 20px;
    /* color: #3f522b; */
    padding: 0;
}

.contact-col div h5{
    text-align: left;
    font-size: 20px;
    color: #5C4B51;
    padding: 0;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    border: 0px;
    border-bottom: 1px solid #5C4B51;
    /* border-left: 1px solid #3f522b; */
    box-sizing: border-box;
    background-color: #faf3e0;
}

.contact-col p{
    color: #5C4B51;
    font-size: 16px;
}


/* ----------CONTACT FORM----------- */
/* .contact-form{
    width: 80%;
    margin: auto;
    padding: 50px 0;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */
.contact-form h2{
    text-align: center;
    margin-bottom: 20px;
    color: #5C4B51;
}

.contact-form button[type="submit"]{
    background-color: #5C4B51;
    color: #FAF3E0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;

}

.contact-form button[type="submit"]:hover{
    background-color: #5c4b5194;
}

@media(max-width: 700px) {
    .text-box {
        width: 90%;
    }

    .text-box h1 {
        font-size: 36px;
    }

    .text-box p {
        font-size: 20px;
        margin-top: 0;
    }
    .contact-col div .fa-solid {
        font-size: 20px;
	margin-right: 15px;
    }
    .contact-col div h5 {
        font-size: 16px;
    }
    .contact-col input,
    .contact-col textarea {
        width: 250px;
        margin-bottom: 10px;
    }
	
    .contact-col div p{
	font-size: 14px;
    }
}
