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;
}

#contact {
    background-color: #f1f1f1;
    padding: 5rem 0;
}

#contact form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    margin-bottom: 1.5rem;
}

#contact label {
    font-weight: bold;
}

#contact input,
#contact textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

#contact button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #343a40;
    color: white;
}

.business-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.business-card img {
    border-bottom: 1px solid #ccc;
}

.business-card .card-body {
    padding: 1rem;
}
