/* Base Styles */
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #F9F9F9;
    color: #333;
    font-size: 24px; /* Set base font size */
}

/* Link Styles */
a {
    color: #6495ED;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0033cc;
}

/* Color Palette */
:root {
    --root-chakra: #E63F51;
    --sacral-chakra: #FF7D45;
    --solar-chakra: #FFC845;
    --heart-chakra: #4CAF50;
    --throat-chakra: #4A90E2;
    --third-eye-chakra: #6B5B95;
    --crown-chakra: #9F6BAF;
    --neutral-gray: #ccc;
    --pale-gold: #FDF1D6;
    --primary-color: #6B5B95;
    --secondary-color: #9F6BAF;
    --footer-bg: #f5f5f5;
    --header-bg: #f0f0f0;
    --hero-bg: url('path/to/hero-background.jpg'); /* Hero background image */
}

/* Container */
.container {
    max-width: 1200px;
    background-color: #FFFFFF;
    margin: 40px auto;
    padding: 40px 40px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: var(--header-bg);
    color: #004d99;
    padding: 10px 20px;
    border-bottom: 2px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Update logo-text a color */
.logo-text a {
    color: var(--primary-color); /* Match the navigation link color */
    text-decoration: none; /* Remove underline if desired */
}

/* video embed */
.videos { text-align: center; margin: 40px 0; }
.video-grid { display: flex; justify-content: space-around; flex-wrap: wrap; }
.video { margin: 20px; }
iframe { max-width: 100%; }

/* Navigation */
nav {
    background: none;
    padding: 0;
    width: auto;
    box-shadow: none;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    font-size: 20px;
}

nav ul li a i {
    margin-right: 5px;
}

nav ul li a:hover, nav ul li a:focus, nav ul li a.active {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: none;
}

/* About Section */
.about {
    padding: 20px 20px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.about-content img {
    width: 300px;
    margin-right: 20px;
    border-radius: 10px;
}

.about-text {
    max-width: 800px;
    line-height: 1.6;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    max-width: 300px;
    text-align: center;
    margin: 20px;
}

.service i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 1000px;
    text-align: center;
    margin: 24px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 22px;
    margin-bottom: 10px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact p {
    margin-bottom: 20px;
}

.contact .button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.contact .button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
    padding: 20px 20px;
}

.pricing p {
    margin-bottom: 20px;
}

.pricing .button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.pricing .button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--footer-bg);
    color: #666666;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    position: relative;
    z-index: 10;
    border-radius: 0 0 10px 10px;
}

footer a {
    color: #888888;
    text-decoration: underline;
    transition: color 0.3s;
}

footer a:hover {
    color: #444444;
}

/* Responsive Design */
@media screen and (max-width: 850px) {
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: var(--header-bg);
        padding: 20px 0;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 100;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        font-size: 18px;
        padding: 10px 15px;
        text-align: center;
        width: 100%;
    }

    .logo-container {
        justify-content: space-between;
        width: 100%;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 24px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    footer {
        padding-bottom: 80px;
    }
}