style.css
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf5e6; /* Light coffee color */
}

header {
    background: #5C3F32; /* Coffee brown */
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    padding: 20px;
    text-align: center;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product img {
    width: 100%;
    border-radius: 5px;
}

.product h3 {
    color: #6b4226;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
footer {
    background: #6b4226; /* Coffee brown to match the header */
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 20px;
}

footer h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

footer p {
    margin: 5px 0;
}
.sugarspoonlogo.png img {
    height: 10px; /* Adjust the height of the logo */
    width: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the logo */
    padding: 10px 0; /* Add space around the logo */
}
/* Flexbox layout for the header */
.header-content {
    display: flex; /* Makes the logo and title sit side by side */
    align-items: center; /* Vertically aligns items */
    gap: 15px; /* Space between the logo and the text */
    justify-content: flex-start; /* Aligns logo and title to the left */
}

/* Styling the logo */
.logo {
    height: 200px; /* Resizes the logo */
    width: auto; /* Maintains aspect ratio */
}

/* Styling the header title */
.header-content h1 {
    margin: 0; /* Removes default margin */
    font-size: 2rem; /* Adjust font size if needed */
    color: #fff; /* Matches header color */
}

/* Header background and padding */
header {
    background: #6b4226; /* Coffee brown */
    color: #fff;
    padding: 15px 20px;
}

/* Navigation links */
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
