body.homeBody {
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;
}

.homeBody::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.7);
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; 
}

.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);
}

.content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 100px 40px;
    max-width: 600px;
    margin-left: 7%;
}

.content h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 0;
    margin-bottom: -10%;
}

.content p {
    font-family: 'DM Sans';
    font-size: 60px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 80px;
}

.content h2 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 53px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 0;
}

.download-buttons{
    margin-left: -2%;
}
.download-buttons a img {
    height: 103px;
    width: 294px;
    cursor: pointer;
    margin-right: -3%;
}

.download-buttons a img:hover {
transform: scale(1.1);
}

.qr {
    position: absolute;
    top: 450px;
    right: 10%;
    width: 153px;
    height: 153px;
    z-index: 2;
}



@media (max-width: 1000px) {
 body.homeBody {
        height: auto;
        overflow: auto;
        background-size: cover;
        background-attachment: fixed;
    }
    .homeBody::before {
width:100%; height: 130.6%;
}

.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);
}

nav.show .close-menu {
    display: block;
}

/* .qr {
    top: 900px;
    right: 0%;
    left: 85px;
    width: 153px;
    height: 153px;
    z-index: 2;
} */

.content {
    padding: 80px 20px;
    margin: 50px auto;
    text-align: center;
}   

.content h1 {
    font-size: 50px;
    /* margin-bottom: -10%; */
}

.content p {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.content h2 {
    font-size: 28px;
}

.qr {
        position: relative;
        margin: 40px auto;
        top: -90px;
        right: 0;
        display: block;
    }
 
}