body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #202020;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #a08049;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #202020;
    margin: 4px;
    transition: all 0.3s ease;
}
.gradient-button {
    background: linear-gradient(90deg,  #c09954 0%, #7e653e 100%);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gradient-button:hover {
    background: linear-gradient(90deg, #7e653e 0%, #c09954 100%);
}


@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero img {
        height: 300px;
    }

    .hero-text h1 {
        font-size: 2xl;
    }

    .hero-text p {
        font-size: lg;
    }

    nav ul {
        display: block;
        text-align: center;
    }

    #nav-menu {
        flex-direction: column;
        align-items: center;
        background-color: white;
    }
}
