@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Playfair+Display&display=swap');

* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    cursor: default;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
}

/* Styles for section one menu page */
.sectionOne {
    height: auto;
    position: relative;
    overflow: hidden;
}

.backgroundImage {
    position: absolute;
    object-fit: contain;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.2);
    background-color: rgba(0, 0, 0, 1);
}

.logo {
    margin-left: 14rem;
    position: fixed;
    background-color: #fdf0d5;
    width: 10.0625rem;
    height: 10.875rem;
    opacity: 1;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img { /* End of header section of the website */
    width: 103px;
    height: 99px;
    cursor: pointer;
}

/* Style for menu section */
.menuCategoryWrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menuCard {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 16px;
}

/* Left: Image section */
.menuTypeImg {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    flex: 1;
    height: 58rem;
    width: auto;
}

.menuTypeImg img {
    height: 58rem;
    width: auto;
    border-radius: 12px;
    display: block;
}

.menuTypeImg p {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fdf0d5;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 4rem;
    letter-spacing: 2rem;
}

/* Right: Content section */
.menuContents {
    flex: 2;
    color: #fdf0d5;
    height: 57.8rem;
    width: auto;

    background: rgba(255, 255, 255, 0.04); /* semi-transparent white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* for Safari */

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
}

.contentsWrapper {
    border-radius: 10px;
    padding: 4rem;
}

.contentsWrapper p:nth-child(1) {
    display: flex;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2rem;
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.menuItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: none;
    border-right: none;
}

.itemName {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    flex: 1;
    margin-left: 2rem;
    margin-top: 1rem;
}

.itemPrice {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fdf0d5;
    white-space: nowrap;
    margin-left: 1rem;
    margin-right: 2rem;
}

.itemDescription {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    margin-left: 2rem;
}