body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: transparent;
    color: white;
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .navbar-brand {
    color: white;
}

header .navbar-nav .nav-link {
    color: white;
}

header .navbar-nav .nav-link:hover {
    color: #ccc;
}

#banner {
    background: url(../Assets/kitchen_white.jpg) no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#featured-listing {
    background-color: #f1f1f1;
    padding: 5rem 0;
    width: 100vw; /* Ensure it spans the full viewport width */
    margin-left: calc(-50vw + 50%); /* Center it horizontally */
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: #343a40;
    color: white;
}
