@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

/* ===== Global Styles ===== */
:root {
    --lightPurple: #876ca0;
    --burntOrange: #ad6650;
    --muteGreen: #f6f5ea;
}

body {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

#bodyWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Main Body Styles ===== */
#serviceMenuHeroContainer {
    position: relative;
    width: 100%;
    margin: 2rem 0 0 0;
    overflow: hidden;
}

.serviceMenuImage {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
}

.serviceMenuTitleOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--lightPurple);
    background: var(--muteGreen);
    font-size: 2.5rem;
    font-weight: bold;
    padding: 1rem 2.5rem;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 0.5rem;
    pointer-events: none;
    width: fit-content;
    max-width: 90vw;
}

.serviceMenuContent {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.serviceList {
    padding: 0;
    margin: 0;
    list-style: none;
}

.serviceMenuContent li {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--muteGreen);
    border-radius: 0.5rem;
    list-style-type: none;
    font-size: 1.25rem;
    color: var(--lightPurple);
    text-align: center;
}

/* ==== Tablet Queries ==== */
@media (min-width: 601px) and (max-width: 1024px) {
}

/* ==== Mobile Queries ==== */
@media (max-width: 600px) {
/* ==== Main Body ==== */
    .serviceMenuContent {
        padding: 2rem 2vw;
    }
}