
        .cakes {
            margin: 10px;
            display: flex;
            position: left;
        }
        #logo{
            border-radius: 100px;
            display: flex;
}
        .cake-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: inline-block;
            margin: 10px;
        }
        .cake-item img {
            width: 200px;
            border-radius: 10px;
        }
        .order-btn {
            background-color: #ff69b4;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 5px;
        }
        .order-form {
            margin: 50px;
            padding: 100px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }
        input {
            display: block;
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button[type="submit"] {
            background-color: #ff69b4;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
        }
.list-two {
    padding: 0;
    display:flex;
    flex-direction: column; /* Ensures items are stacked vertically */
    gap: 15px;/* Adds space between list items */
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    list-style: none;
    
}

.list-two li {
    display: flex;
    flex-direction: column; /* Ensures the title & description stack */
    align-items: flex-start; /* Aligns text to the left */
    justify-content: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 16px; /* Readable font size */
    max-width: 600px; /* Controls text width */
    line-height: 1.6;
}

.list-two li strong {
    font-size: 18px;
    color: #7a3e02; /* Highlights the title */
    margin-bottom: 5px; /* Space between title & description */
}
a{
    text-decoration: none; /* Removes the underline*/
    color: white;
    background-color: rgba(5, 74, 24, 0.49);
    padding: 5px 10px; /* This makes the button bigger*/
    border-radius: 10px; /* rounded corners*/
    transition: background-color 0.3s ease; /* adds smooth transition for hover*/
}
a:hover{
    background-color: green;
}
a:active{
    background-color: black;
}
.text{
    align-content: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}
.gallery img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,1);
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.gallery img:hover{
    transform: scale(1.2);
}
.img-item{
    gap: 20px;
    display: flex;
    justify-content: center;
}
.list-one{
    list-style-type: none;/*Removes the default bullets*/
    padding: 0; /* Removes default padding*/ 
}
.list-one li {
    display: inline; /* Makes the list appaear on the same line*/
    margin-right: 20px; /*Optional: adds space between items*/
}
.service-item {
    margin-left: 20px;
    color: dimgrey;
    font-family: cursive;
}
.about-item {
    display: flex;
    justify-content: center;
    color: dimgrey;
    font-family: cursive;
}
.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: dimgrey;
    font-family: cursive;
}
.service {
    color: #a33e0b;
    font-family: cursive;
}
#text{
    font-size: medium;
    font-style: italic;
    display:flex;
    column-gap: normal;
    padding: inherit;
    color: dimgrey;
    justify-content: stretch;
    margin-left: 150px;
    margin-right: 150px;
    font-family:initial;
}
footer{
    background-color: rgb(244, 229, 234);
    padding-bottom: 10px;
    padding-top: -1px;
    color: dimgray;
    font-style: italic;
    font-family: initial;
}