* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #d4a574 0%, #a0735e 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Navigation */
.navbar {
    background-color: #8b6f47;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #f5d5b8;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #8b6f47;
    margin-bottom: 15px;
}

/* Featured Images Section */
.featured-images {
    padding: 40px 0;
    background-color: #faf7f2;
}

.featured-image-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(160, 115, 94, 0.08) 100%);
    padding: 20px;
}

.featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Hours Section */
.hours {
    padding: 40px 0;
    background-color: white;
}

.hours h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hours-item {
    background: transparent;
    padding: 30px 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.hours-item h3 {
    color: #8b6f47;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hours-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Location Section */
.location {
    padding: 40px 0;
    background-color: white;
}

.location h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.location-info {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
}

.address {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.address-note {
    display: block;
    font-size: 0.95rem;
    color: #8b6f47;
    margin-top: 10px;
    font-style: italic;
}

/* About Section */
.about {
    padding: 40px 0;
    background-color: #faf7f2;
}

.about h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    border-top: 2px solid #d4a574;
    border-bottom: 2px solid #d4a574;
}

.price-table thead {
    background-color: transparent;
    color: #333;
}

.price-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #8b6f47;
    border-bottom: 1px solid #e0d0c0;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.price-table tbody tr:hover {
    background-color: #faf7f2;
}

/* Highlight for best value */
.price-table tr.highlight td {
    background: linear-gradient(90deg, rgba(245,213,184,0.30), rgba(249,245,240,0.30));
    color: #5a3f28;
}

.price-table tr.highlight td strong {
    color: #8b6f47;
    font-weight: 700;
}

/* Foot massage highlight - a harmonious soft sage/seafoam */
.price-table tr.foot-highlight td {
    background: linear-gradient(90deg, rgba(196,222,210,0.28), rgba(245,249,247,0.18));
    color: #35684a;
}

.price-table tr.foot-highlight td strong {
    color: #2f5e45;
    font-weight: 700;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background-color: #faf7f2;
}

.contact h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: transparent;
    padding: 30px 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.contact-card h3 {
    color: #8b6f47;
    margin-bottom: 15px;
}

.contact-card a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #8b6f47;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .navbar ul {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .navbar a {
        font-size: 0.9rem;
    }

    .services h2,
    .gallery h2,
    .pricing h2,
    .contact h2,
    .hours h2,
    .location h2,
    .about h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 20px;
    }

    .about-content p {
        text-align: left;
    }
}
