body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}

.site-header {
    background: #ffffff;
    padding: 1.5vw; /* Adjust padding relative to screen width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-logo img {
    width: 100%; /* Scales logo relative to the screen width */
    max-width: 200px; /* Prevents it from getting too big on large screens */
    display: inline-block;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 4vw; /* Scales width relative to screen width */
    height: 0.4vw; /* Scales height */
    background-color: #BA8AD8;
    margin: 0.7vw 0;
    transition: 0.3s;
}

.header-menu {
    display: flex;
    justify-content: center;
    width: 50%; /* Menu width based on available space */
}

.header-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2vw; /* Ensures spacing scales well */
}

/* Mobile menu */
@media (max-width: 768px) {
    .header-menu {
        display: none;
        position: absolute;
        top: 12vw; /* Adjusted for scalable logo size */
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .header-menu ul {
        flex-direction: column;
        gap: 3vw;
        padding: 3vw 0;
    }

    .header-menu ul li {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .header-menu.active {
        display: flex;
    }
}

main {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #BA8AD8;
    padding-left: 20px; /* Added padding for better spacing */
}


/* Footer styling */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw;
    background: #f5f5f5;
    margin-top: 4vw;
}

.footer-content {
    margin-left: 3vw;
    margin-right: 3vw;
}

.footer-social {
    display: flex;
    gap: 2vw;
    margin-left: auto;
}

.footer-social a img {
    width: 4vw;
    height: 4vw;
    max-width: 24px;
    max-height: 24px;
}

/* General link styling (only for content, NOT menu) */
main a {
    color: #BA8AD8;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

main a:hover {
    background: #E6CCFF; /* Light lavender hover background */
    color: #B87FE6;
    text-decoration: none;
}

/* Navigation menu links (keep the original style) */
.header-menu a {
    color: #BA8AD8;
    text-decoration: none;
    font-weight: bold;
    padding: 0; /* Remove the unintended padding */
    background: none; /* Remove background effect */
    transition: color 0.3s ease-in-out;
}

.header-menu a:hover {
    color: #B87FE6;
    text-decoration: underline;
}

.hero-section {
    background-image: url("/images/hero.jpg");
    background-size: cover;
    background-position: center;
    height: 40vh; /* Reduce height to make it fit better */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-section {
        height: 30vh; /* Smaller height on mobile */
        font-size: 1.5rem; /* Adjust text size */
    }
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.pricing-table th {
    background-color: #B87FE6; /* Secondary color */
    color: white;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}

.massage-description {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 5px solid #B87FE6;
    font-size: 1.1rem;
}

#google-reviews {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.review {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.review:last-child {
    border-bottom: none;
}

.review p {
    margin: 5px 0;
}

.social-icon {
    width: 24px;
    height: 24px;
}





