/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #6b8e6f 0%, #4a6d4f 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.2em;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

/* Navigation Styles */
nav {
    background-color: #5a7d5e;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #4a6d4f;
    border-bottom-color: #a8d5ba;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background-color: #5a7d5e;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-nav-toggle:after {
    content: '☰';
    float: right;
    font-size: 1.5em;
}

.mobile-nav-toggle.active:after {
    content: '✕';
}

/* Main Content */
main {
    background-color: white;
    min-height: 60vh;
    padding: 40px 0;
}

/* Hero Section */
.hero {
    margin-bottom: 30px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #4a6d4f;
    text-align: center;
    margin-bottom: 20px;
}

/* Update Notice */
.update-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.update-notice p {
    margin: 0;
    color: #856404;
    font-size: 1.05em;
}

/* Welcome Section */
.welcome {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.welcome-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.welcome-all {
    text-align: center;
    font-size: 1.3em !important;
    color: #4a6d4f !important;
    margin-top: 30px !important;
}

/* Membership Badge */
.membership-badge {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.membership-badge img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.membership-badge p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

/* Footer Styles */
footer {
    background-color: #4a6d4f;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info {
    font-size: 1.1em;
}

.contact-info a {
    color: #a8d5ba;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #4a6d4f;
}

/* Services Page */
.services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #4a6d4f;
    margin-bottom: 15px;
}

.service p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.rates {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.rates span {
    background-color: #6b8e6f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Therapists Page */
.therapists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.therapist {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.therapist h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #4a6d4f;
    margin-bottom: 10px;
}

.therapist h3 a {
    color: #4a6d4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.therapist h3 a:hover {
    color: #6b8e6f;
    text-decoration: underline;
}

.therapist .credentials {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 5px;
}

.therapist .license {
    font-size: 0.95em;
    color: #888;
    font-style: italic;
}

/* Therapist Profile Pages */
.therapist-profile {
    margin-top: 30px;
}

.profile-image {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-content {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.profile-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.profile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #4a6d4f;
    margin: 30px 0 15px 0;
}

.profile-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.profile-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.7;
}

.profile-content ul li:before {
    content: "■";
    position: absolute;
    left: 0;
    color: #6b8e6f;
    font-size: 0.8em;
}

.back-link {
    margin-top: 30px !important;
    text-align: center;
}

.back-link a {
    color: #6b8e6f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.back-link a:hover {
    color: #4a6d4f;
    text-decoration: underline;
}

/* Booking Page */
.booking-info {
    margin-top: 30px;
}

.booking-cta {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #6b8e6f;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #4a6d4f;
}

.policies {
    margin-top: 40px;
}

.policies h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #4a6d4f;
    margin-bottom: 30px;
    text-align: center;
}

.policy {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.policy h4 {
    font-size: 1.3em;
    color: #4a6d4f;
    margin-bottom: 10px;
}

.policy p {
    line-height: 1.7;
    color: #555;
}

/* Specials Page */
.specials-list {
    margin-top: 30px;
}

.special-items {
    list-style: none;
    padding: 0;
}

.special-items li {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #6b8e6f;
    font-size: 1.1em;
    line-height: 1.8;
}

.special-items a {
    color: #4a6d4f;
    text-decoration: underline;
}

.special-items a:hover {
    color: #6b8e6f;
}

/* Location Page */
.location-info {
    margin-top: 30px;
}

.address {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.address p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.address address {
    font-size: 1.2em;
    font-style: normal;
    font-weight: 600;
    color: #4a6d4f;
    margin: 20px 0;
}

.phone-link {
    color: #6b8e6f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
}

.phone-link:hover {
    text-decoration: underline;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.required-note,
.contact-method-note {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #4a6d4f;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b8e6f;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #4a6d4f;
    margin-bottom: 20px;
}

.contact-info-box p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info-box a {
    color: #6b8e6f;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Gift Certificates Page */
.gift-certificates {
    margin-top: 30px;
    text-align: center;
}

.gift-intro {
    margin-bottom: 40px;
}

.gift-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #4a6d4f;
}

.gift-purchase,
.gift-inperson {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gift-purchase p,
.gift-inperson p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Benefits Page */
.benefits-content {
    margin-top: 30px;
}

.benefits-intro {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.benefits-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefits-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #4a6d4f;
    margin-bottom: 20px;
}

.benefits-column p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-column ul {
    list-style: none;
    padding: 0;
}

.benefits-column ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.benefits-column ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e6f;
    font-weight: 700;
    font-size: 1.2em;
}

/* Testimonials Page */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #6b8e6f;
}

.testimonial p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.testimonial .author {
    font-style: italic;
    color: #4a6d4f;
    font-weight: 600;
    text-align: right;
}

/* FAQ Page */
.faq-content {
    margin-top: 30px;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    color: #4a6d4f;
    margin-bottom: 15px;
}

.faq-item p {
    line-height: 1.8;
    color: #555;
}

/* Forms Page */
.forms-content {
    margin-top: 30px;
}

.forms-intro {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.forms-intro p {
    font-size: 1.1em;
    line-height: 1.8;
}

.forms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.form-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.form-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #4a6d4f;
    margin-bottom: 15px;
}

.form-item p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Updates */
.membership-footer {
    margin-bottom: 10px;
}

.membership-footer a {
    color: #a8d5ba;
    text-decoration: none;
}

.membership-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        font-size: 0.9em;
    }
    
    .nav-menu a {
        padding: 12px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 1.6em;
    }
    
    .tagline {
        font-size: 0.9em;
    }
    
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.show {
        display: flex;
        max-height: 1000px;
    }
    
    .nav-menu a {
        text-align: left;
        padding: 12px 20px;
        bor{
        padding: 15px 0;
    }

    header h1 {
        font-size: 1.3em;
    }
    
    .tagline {
        font-size: 0.85em;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .hero-content h2,
    .page-header h2 {
        font-size: 1.5em;
    }
    
    .welcome-content p {
        font-size: 0.95em;
    }

    .rates {
        flex-direction: column;
    }

    .service h3,
    .therapist h3 {
        font-size: 1.3em;
    }

    .service,
    .therapist,
    .testimonial {
        padding: 20px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1columns: 1fr;
    }

    main {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }
    
    .tagline {
        font-size: 0.9em;
    }
    
    .hero-content h2,
    .page-header h2 {
        font-size: 1.6em;
    }
    
    .welcome-content p {
        font-size: 1em;
    }

    .rates {
        flex-direction: column;
    }

    .service h3,
    .therapist h3 {
        font-size: 1.5em;
    }
}
