/* Base Styles */
:root {
    --primary: #511511;
    --secondary: #bc800a;
    --accent: #9e6110;
    --light: #fefae0;
    --light-accent: #fefae0;
    --dark: #51151d;
    --white: #ffffff;
    --gray: #d1d0ce;
    --background: #fefefe;
    --accent: #511511;
    --light-bg: #f8f6f3;
    --shadow: rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Updated Header and Logo Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px; /* Fixed height */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 100%;
    position: relative;
}

/* Logo Container */
.logo {
     display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo:hover {
   transform: scale(1.02);
}

/* Logo Image Styles */
.logo-image {
    height: 60px; /* Adjust based on your logo */
    width: auto;
    max-width: 200px; /* Prevents logo from being too wide */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Alternative: If you want a fixed width logo */
.logo-image.fixed-width {
    width: 180px;
    height: 50px;
    object-fit: contain;
}

/* Logo Text (for fallback or alongside image) */
.logo-text {
    margin-left: 1rem; /* Space between image and text if both are used */
}

.logo-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0;
    font-weight: 400;
}

/* Hide text when using image-only logo */
.logo-image-only .logo-text {
    display: none;
}

/* Show only text when no image */
.logo-text-only .logo-image {
    display: none;
}

/* Navigation remains the same */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: none;
    border: none;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}
// REPLACE YOUR MOBILE MENU JS WITH THIS SIMPLE VERSION
document.addEventListener('DOMContentLoaded', function() {
    const hamburger = document.querySelector('.mobile-menu-btn');
    const menu = document.querySelector('nav ul');
    
    if (hamburger && menu) {
        hamburger.addEventListener('click', function() {
            console.log('Hamburger clicked!');
            
            // Simple toggle
            if (menu.classList.contains('mobile-menu-active')) {
                menu.classList.remove('mobile-menu-active');
                hamburger.classList.remove('active');
                console.log('Menu closed');
            } else {
                menu.classList.add('mobile-menu-active');
                hamburger.classList.add('active');
                console.log('Menu opened');
            }
        });
    } else {
        console.log('Elements not found:', {hamburger, menu});
    }
});


/* Responsive Design */
/* Mobile Navigation - FIXED VERSION */
@media (max-width: 768px) {
    /* Desktop nav hidden on mobile */
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        border: 2px solid #6b4423; /* Visible border for testing */
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        z-index: 9999;
        min-height: 300px; /* Ensure it has height */
        
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }
    
    /* Show menu when active */
    nav ul.mobile-menu-active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: flex !important;
    }
    
    /* Menu items styling */
    nav ul li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        text-decoration: none;
        color: #333;
        border: 1px solid #ddd; /* Visible border for testing */
        border-radius: 5px;
        margin: 0.5rem 0;
    }
    
    nav ul li a:hover {
        background: #f0f0f0;
    }
    
    nav ul li a.btn-primary {
        background: #6b4423;
        color: white;
        border-color: #6b4423;
    }
}


@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        max-width: 120px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
}

/* Sticky header effect */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo-image {
    height: 50px; /* Slightly smaller when scrolled */
}

/* Footer Logo Styles */
.footer-logo .logo-image {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Makes logo white in footer */
}

/* Dark footer logo alternative */
.footer-logo .logo-image.dark-footer {
    filter: none; /* Keep original colors */
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

/* Quote Section */
.quote {
    background-color: var(--light);
    padding: 5rem 0;
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

blockquote cite {
    font-size: 1.2rem;
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--accent);
}

/* Page Header */
.page-header {
    background-color: var(--light);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 90px;
}

.page-header h2 {
    font-size: 3rem;
    color: var(--primary);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 5rem 0;
}

.commitment {
    margin-bottom: 4rem;
}

.commitment h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fun-facts, .credentials {
    margin-bottom: 3rem;
}

.fun-facts h3, .credentials h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-center {
    text-align: center;
    margin: 3rem 0;
}

/* Services Page */
.services-content {
    padding: 5rem 0;
}

.service-section {
    margin-bottom: 4rem;
}

.service-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.practice-focus {
    margin: 3rem 0;
}

.practice-focus h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.specialties-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.specialties-list li {
    background-color: var(--light);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.notice-box {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 5px solid var(--secondary);
}

.notice-box h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sliding-scale {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Soul Tonics Page */
.tonics-content {
    padding: 5rem 0;
}

.soul-grid {
    display: grid;
    grid-template-columns:2fr 4fr 2fr;
    gap: 2rem;
    margin: 2rem 0;
}

.soul-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.soul-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.soul-card h5 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.soul-image {
    height: 500px;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}

.healing-map {
    margin-bottom: 4rem;
}

.healing-map h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.map-table {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: var(--primary);
    color: var(--white);
    text-align: left;
    padding: 1rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

tr:nth-child(even) {
    background-color: var(--gray);
}

.footnote {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.healing-resources {
    margin-bottom: 4rem;
}

.healing-resources h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Resources Page */
.resources-content {
    padding: 5rem 0;
}

.resource-section {
    margin-bottom: 4rem;
}

.resource-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.resource-list {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
}

.resource-list h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.resource-list ul {
    margin-bottom: 2rem;
}

.resource-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-list li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
}

.submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light);
}

.footer-links h4, .footer-contact h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--light);
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero h3 {
        font-size: 1.5rem;
    }
    
    .intro h2, .page-header h2 {
        font-size: 2.2rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
}
/*
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1.5rem;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .service-cards, .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-list {
        grid-template-columns: 1fr 1fr;
    }
}
*/

/* REPLACE YOUR MOBILE MENU CSS WITH THIS SIMPLE VERSION */
@media (max-width: 768px) {
    /* Show hamburger button */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Hide desktop nav by default */
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 9999;
        
        /* Hidden state */
        display: none;
    }
    
    /* Show when active - SIMPLE APPROACH */
    nav ul.mobile-menu-active {
        display: flex !important;
    }
    
    /* Menu items */
    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
}


@media (max-width: 576px) {
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.8rem 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h3 {
        font-size: 1.2rem;
    }
    
    .intro h2, .page-header h2 {
        font-size: 1.8rem;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
    
    .specialties-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Add these new styles to your existing styles.css */

/* Image Styles */
.hero-image {
    background: linear-gradient(rgba(107, 68, 35, 0.3), rgba(88, 129, 87, 0.3)), 
                url('img/sofa1-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero {
    background: linear-gradient(rgba(107, 68, 35, 0.4), rgba(88, 129, 87, 0.4)), 
                url('img/baobab.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.services-hero {
    background: linear-gradient(rgba(107, 68, 35, 0.4), rgba(88, 129, 87, 0.4)), 
                url('img/bowls.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.contact-hero {
    background: linear-gradient(rgba(107, 68, 35, 0.4), rgba(88, 129, 87, 0.4)), 
                url('img/oldphone.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.resources-hero {
    background: linear-gradient(rgba(107, 68, 35, 0.4), rgba(88, 129, 87, 0.4)), 
                url('img/bookssm.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.soul-tonics-hero {
    background: linear-gradient(rgba(107, 68, 35, 0.4), rgba(88, 129, 87, 0.4)), 
                url('img/djimbe.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

/* Service Cards with Images */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 300px;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(107, 68, 35, 0.1), rgba(88, 129, 87, 0.1));
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* About Section Images */
.about-image {
    width: 30%;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(107, 68, 35, 0.1), rgba(88, 129, 87, 0.1));
}

/* Decorative Elements */
.section-divider {
    text-align: center;
    margin: 4rem 0;
}

.section-divider::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    margin-right: 20px;
    vertical-align: middle;
}

.section-divider::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    margin-left: 20px;
    vertical-align: middle;
}

.section-divider i {
    font-size: 2rem;
    color: var(--accent);
    vertical-align: middle;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf-1 {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    color: var(--accent);
    animation: float 6s ease-in-out infinite;
}

.floating-leaf-2 {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    color: var(--primary);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Enhanced Cards */
.feature-card, .testimonial-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
}

/* Improved Form Styling */
.contact-form {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness for Images */
@media (max-width: 768px) {
    .hero-image, .about-hero, .services-hero, .contact-hero, .resources-hero, .soul-tonics-hero {
        background-attachment: scroll;
    }
    
    .service-image {
        height: 150px;
    }

    .soul-image {
        height: 250px;
    }
    
    .about-image {
        height: 250px;
    }
}
