:root {
    --primary-gold: #c9a66b;
    --text-dark: #5a4a3a;
    --bg-base: #f9f6f2;
}

.spa-menu-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 50px;
    background-color: var(--bg-light);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    text-align: center;
    overflow: hidden;
}

.menu-logo img,
.main-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.main-header h1 {
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif !important;
}

.main-header .slogan {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: 0.8;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right), var(--primary-gold), transparent);
}

.divider::before {
    --dir: left;
    margin-right: 15px;
}

.divider::after {
    --dir: right;
    margin-left: 15px;
}

.divider span {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.treatment-section {
    margin-bottom: 40px;
}

.treatment-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.treatment-duration {
    font-size: 1.1rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 15px;
}

.treatment-duration::before,
.treatment-duration::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #ccc;
    vertical-align: middle;
    margin: 0 10px;
}

.desc-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 90%;
    text-align: left;
    display: inline-block;
}

.desc-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-style: italic;
    opacity: 0.9;
}

.desc-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.footer-info {
    margin-top: 60px;
    border-top: 1px solid rgba(201, 166, 107, 0.3);
    padding-top: 20px;
}

.footer-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.footer-slogan {
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.8;
}

.bottom-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("https://www.transparenttextures.com/patterns/circles.png");
    background-size: 200px;
    opacity: 0.2;
    pointer-events: none;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

@media (max-width: 600px) {
    .spa-menu-container {
        padding: 40px 25px 80px 25px;
    }

    .treatment-name {
        font-size: 1.3rem;
    }
}
