body.contactBody {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url('./assets/backgroundImage.png');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* background-repeat: no-repeat; */
}

.contactBody::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
height: 40px;
width: 172px;
position: absolute;
top: 50px;
left: 9%;
}

nav a {
font-family: 'Poppins';
color: white;
text-decoration: none;
margin-left: 20px;
font-weight: 400;
font-size: 18px;
line-height: 20px;
letter-spacing: 0%;
text-align: center;
}

nav a.home{
position: absolute;
top: 69px;
right: 18%;
}

nav a.homeActive {
position: absolute;
top: 69px;
right: 18%;
border-bottom: 2px solid #A39455;
color: #A39455;
font-weight: bold;
}

nav a.contactActive {
position: absolute;
top: 69px;
right: 10%;
border-bottom: 2px solid #A39455;
color: #A39455;
font-weight: bold;
}

nav a.contact{
position: absolute;
top: 69px;
right: 10%;
}

nav a:hover{
color: #A39455;
font-weight: bold; 
}

.content {
    position: relative;
    z-index: 2;
    max-width: 70%;
    margin: 0 auto;
    padding: 3% 5%;
    text-align: center;
}

.header2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 10px;
}

.subheader {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 17%;
}

.contact-form label {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #fff;
    background: transparent;
    color: white;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    width: 77%;   
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    padding: 12px;
    width: 79%;   
    background-color: #c3ab58;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #b49b4e;
}

.nav-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle:active {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1000px) {
    body.contactBody {
        height: auto;
        overflow: auto;
        background-size: cover;
        background-attachment: fixed;
    }
     .contactBody::before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    }

    .content {
    padding: 20% 10px 0;
    }

.header2 {
font-size: 28px;
}

.subheader {
font-size: 16px;
}

.contact-form {
margin-left: 0;
width: 100%;
align-items: center;
}

.contact-form input,
.contact-form textarea {
width: 85%;
}
.contact-form button{
        width: 90%;
        margin-bottom: auto;

}

    .nav-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.7);
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh;
        text-align: center;
        padding: 100px 0 20px;
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    nav.show {
        display: flex;
        animation: slideIn 0.3s ease-in-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    nav a {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: 20px 0;
        font-size: 24px;
        padding: 15px;
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }

    nav a:hover {
        background-color: rgba(163, 148, 85, 0.2);
    }

    .content {
        padding: 20% 10px 0;
    }

    .header2 {
        font-size: 28px;
    }

    .subheader {
        font-size: 16px;
    }

    .contact-form {
        margin-left: 0;
        width: 100%;
        align-items: left;
    }

}


