
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%; /* Ensure it takes the full width */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffe4f3; 
    color: #5c0033; 
    text-align: center;
        font-family: "Bona Nova SC", serif;
        font-weight: 400;
        font-style: normal;
}
.menus, .drinks, .pastries{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.menu-item img, .drink-item img, .img1, .img2{
    width: 200px; 
    height: 200px; 
    object-fit: cover; }

.menu-item button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff4d94;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);}

h1 {
    font-family: "Bona Nova SC", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ff69b4; 
    margin-top: 55px;
}

h2 {
     font-family: "Bona Nova SC", serif;
        font-weight: 400;
        font-style: italic;
    font-size: 2rem;
    color: #d63384; 
    margin: 10px 0;
}



p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px auto;
    width: 80%;
    background: #ffffff; 
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




footer {
    background-color: #d63384; 
    color: #080808;
    padding: 10px;
    font-size: 1rem;
    margin-top: 20px;
    border-top: 2px solid #ff69b4; 
}


p:last-of-type {
    font-weight: bold;
    background: #ffe4f3;
    padding: 20px;
    border: 2px dashed #d63384; 
    border-radius: 10px;
    margin: 20px auto;
    width: 70%;
}


p:last-of-type:hover {
    background-color: #ff69b4; 
    color:black;
    cursor: pointer;
}

nav {
    font-family: "Bona Nova SC", serif;
    font-weight: 400;
    font-style: italic;
    background-color: #ff85b3;
    padding: 10px 0;
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px; 
    transition: color 0.3s ease; 
}

nav a:hover {
    color: #ffe6f0; 
}
.directions-img {
    position: relative; 
    display: inline-block; 
}
.directions-img img {
    display: block; 
    width: 100%; 
    height: auto; 
}

.directions-img .btn-on-image .enquirebutton .imgs{
    border: #ff4d94 1px solid;
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background-color: #ff69b4; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 1rem; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); }

.directions-img, .btn-on-image:hover {
    background-color: #ff85c1; 
}
.locationimage {
    position: relative;
    display: flex; 
    justify-content: center; 
    align-items: center;
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center; }

.locationimage img {
    max-width: 100%;
    height: auto;
    display: block; 
}

.locationbutton {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: #ff6f91;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    
}

