body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('img/spices-spoon-isolated-white-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
}

.header-image-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.header-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

header h1 {
    color: #333;
    font-size: 2.5em;
    text-align: center;
    margin: 0;
    padding-top: 50px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

.navbar {
    background-color: rgba(217, 203, 160, 0.9);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.navbar li {
    display: inline;
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1em;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

.navbar a:hover {
    color: #fff;
    background-color: rgba(100, 100, 100, 0.7);
}

section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5b5b5b;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    font-size: 1em;
    color: #444;
}

blockquote {
    background-color: rgba(240, 240, 240, 0.8);
    padding: 10px;
    border-left: 5px solid #D9CBA0;
    margin: 10px 0;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
}

footer * {
    color: #ffffff;
}
