/* Color Variables */
:root {
    --sage-green: #9CAD9C;
    --soft-cream: #F5F2E8;
    --dusty-rose: #D4A7A7;
    --charcoal-gray: #3D4142;
    --black: #000000;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    background-color: var(--soft-cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Header/Navigation */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section img {
    height: 200px;
    width: auto;
}

.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--sage-green);
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-family: 'Oswald', sans-serif;
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--sage-green);
}

.nav-book-button {
    background-color: var(--dusty-rose) !important;
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-book-button:hover {
    background-color: var(--sage-green) !important;
    transform: translateY(-2px) !important;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .logo-section img {
        height: 150px;
    }
}

/* Main Content */
main {
    padding-top: 420px; /* Account for fixed header with larger logo */
}

/* Remove top padding from the first element (lavender image) */
main > .section-image:first-child {
    margin-top: -200px;
}

/* Full-width sections */
.full-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    color: var(--black);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--black);
    opacity: 0.8;
}

.hero-cta {
    background-color: var(--dusty-rose);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background-color: var(--sage-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* About Section */
.about-section {
    background-color: var(--white);
    color: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sage-green);
}

.about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--black);
}

/* Services Section */
.services-section {
    background-color: var(--white);
    color: var(--black);
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
}

.service-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--black);
    line-height: 1.7;
}

.service-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: normal;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    /* color: var(--black); */
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--black);
    opacity: 0.8;
}

.contact-cta {
    background-color: var(--dusty-rose);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-cta:hover {
    background-color: var(--sage-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Section Transition Images */
.section-image {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.section-image .overlay-title {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
    padding: 2rem;
}

.section-image.lavender {
    background-image: url('images/lavender.jpeg');
}

.section-image.office {
    background-image: url('images/tranquille-office.jpeg');
}

.section-image.river-stones {
    background-image: url('images/river-stones.jpeg');
}

.section-image.ocean-stones {
    background-image: url('images/ocean-stones.jpeg');
}

.section-image.flowers {
    background-image: url('images/flowers.jpeg');
}

.section-image.sup {
    background-image: url('images/sup.png');
}
.section-image.heart {
    background-image: url('images/heart.jpeg');
}

@media (max-width: 768px) {
    .section-image {
        height: 40vh;
    }
    
    .section-image .overlay-title {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    /* Adjust top margin for first section image (lavender) on mobile */
    main > .section-image:first-child {
        margin-top: -500px; /* Less negative margin = more top padding */
    }
}

@media (max-width: 480px) {
    .section-image .overlay-title {
        font-size: 2rem;
    }
    
    /* Adjust top margin for first section image (lavender) on mobile */
    main > .section-image:first-child {
        margin-top: -500px; /* Less negative margin = more top padding */
    }
}

/* Typography */
h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sage-green);
    text-align: center;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--black);
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image img {
        max-width: 280px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content {
        padding: 0 1rem;
    }
    
    .full-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    main {
        margin-top: 240px; /* Smaller margin for mobile with larger logo */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta, .contact-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    main {
        margin-top: 200px; /* Even smaller margin for very small screens with larger logo */
    }
    
    .logo-section img {
        height: 120px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Legacy styles for forms and other elements */
ul {
    margin-left: 20px;
}

.grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.col {
    flex: 1;
    min-width: 280px;
}

.about-intro {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-intro img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

@media (max-width: 600px) {
    .about-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-intro img {
        width: 150px;
        height: 200px;
    }
}

.muted {
    color: #666;
    font-size: 0.9rem;
}

.small {
    font-size: 0.9rem;
    color: white;
}

.note {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

.policy {
    background: #f9f8f5;
    padding: 1.2rem;
    border-radius: 4px;
    margin: 1rem 0;
}

form {
    margin-top: 1rem;
    text-align: left;
}

form input, form select, form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--sage-green);
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

button[type="submit"] {
    background-color: var(--dusty-rose);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background-color: var(--sage-green);
}

a.button {
    background-color: var(--dusty-rose);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

a.button-disabled {
    background-color: darkgrey;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    cursor: not-allowed;
}

a.button:hover {
    background-color: var(--sage-green);
}

footer {
    background-color: var(--charcoal-gray);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: var(--dusty-rose);
}

/* Hidden class for honeypot spam protection */
.hidden {
    display: none;
}

/* FAQ Static Styles */
.faq-group {
    margin: 2rem 0;
}

.faq-question-static {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(124, 143, 120, 0.2);
}

.faq-question-static:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question-static h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
    padding-left: 1rem;
}

.faq-question-static p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.faq-question-static p:last-child {
    margin-bottom: 0;
}

.faq-question-static strong {
    color: var(--dusty-rose);
    font-weight: 600;
}

/* Fees Page Styles */
.fees-info {
    margin: 2rem 0;
}

.fee-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.fee-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.5rem 0;
}

.fee-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dusty-rose);
    margin: 0.5rem 0 1rem 0;
    font-family: 'Oswald', sans-serif;
}

.rebate-options {
    margin: 2rem 0;
}

.rebate-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.rebate-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.rebate-item p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
}

.rebate-item strong {
    color: var(--dusty-rose);
    font-weight: 600;
}

.important-note {
    background: rgba(216, 191, 190, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--dusty-rose);
    margin-top: 2rem;
}

.important-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
}

.policy-group {
    margin: 2rem 0;
}

.policy-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(124, 143, 120, 0.2);
}

.policy-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
    padding-left: 1rem;
}

.policy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.policy-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    text-align: left;
}

.policy-item li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    text-align: left;
}

.policy-item strong {
    color: var(--dusty-rose);
    font-weight: 600;
}

.small-text {
    font-size: 0.95rem !important;
    color: rgba(89, 89, 89, 0.8) !important;
    font-style: italic;
}

/* About Page Styles */
.credentials-and-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.credentials-column h2,
.approach-column h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black);
    opacity: 0.9;
}

.qualification-info {
    margin: 2rem 0;
}

.qualification-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.qualification-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.qualification-item ul {
    margin: 0;
    padding-left: 1.5rem;
    text-align: left;
}

.qualification-item li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    text-align: left;
}

.therapy-approach {
    margin: 2rem 0;
}

.approach-note {
    background: rgba(216, 191, 190, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--dusty-rose);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    font-style: italic;
}

.modalities-grid-single {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.modalities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.modality-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.modality-group h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1rem 0;
}

.modality-group ul {
    margin: 0;
    padding-left: 1.5rem;
    text-align: left;
}

.modality-group li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    text-align: left;
}

@media (max-width: 968px) {
    .credentials-and-approach {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .modalities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Form Styles for New Client Form */
.form-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1.5rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.success-message,
.error-message {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.success-message h3,
.error-message h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

/* Styling for the BlaQ support section */
.blaq-support-container {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8; /* A light background to make it stand out */
  border-radius: 8px;
  margin: 20px 0;
}

.blaq-support-container a {
  margin: 15px;
  font-size: 0.9em;
  color: black;
}

.flag-wrapper {
  display: flex; /* Aligns flags neatly in a row */
  justify-content: center; /* Centers the flags within the container */
  align-items: center;
  gap: 15px; /* Adds space between the flags */
  flex-wrap: wrap; /* Allows flags to wrap onto the next line on small screens */
}

.flag-wrapper img {
  height: 50px; /* Set a consistent height */
  width: auto; /* Maintain aspect ratio */
  border: 1px solid #ddd; /* Optional: adds a subtle border */
  border-radius: 4px; /* Optional: rounds the corners */
}

.blaq-support-container p {
  font-size: 0.9em;
  color: black;
}