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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.8);
    color: #fff;
    padding: 1em 2em;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.logo img {
    height: 50px;
    width: auto;
}

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

nav ul li {
    margin-left: 1em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 0 1em;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
}

.listings, .about, .contact {
    padding: 2em;
    text-align: center;
    margin-top: 2em;
    box-sizing: border-box;
}

.listings h2, .about h2, .contact h2 {
    margin-bottom: 1em;
    font-size: 2em;
}

.card {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1em;
    overflow: hidden;
    text-align: left;
    width: 300px;
    box-sizing: border-box;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card .details {
    padding: 1em;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form label, .contact form input, .contact form textarea, .contact form button {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1em;
}

.contact form button {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5em;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .listings h2, .about h2, .contact h2 {
        font-size: 1.5em;
    }

    .card {
        width: 90%;
    }

    #hero-video {
        min-width: 100vw;
        min-height: 100vh;
    }

    .hero {
        background: none;
    }
}
