/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Color Variables */
:root {
    --cream: #F7F5F2;
    --deep-cream: #EAE8E5;
    --dusty-blue: #8B9DAF;
    --warm-gray: #9B9186;
    --lavender: #C4B8C8;
    --sage-green: #8FA89E;
    --deep-teal: #5A7A7A;
    --soft-coral: #D4A59A;
}

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

/* Header */
.site-header {
    background-color: var(--cream);
    padding: 30px 20px;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background-color: var(--cream);
    padding: 40px 20px 80px;
    text-align: center;
}

/* Main Navigation Cards */
.main-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.nav-card {
    text-decoration: none;
    padding: 50px 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.nav-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
}

.yoga-card {
    background-color: var(--sage-green);
}

.sound-card {
    background-color: var(--dusty-blue);
}

.events-card {
    background-color: var(--soft-coral);
}

/* Book CTA */
.book-cta {
    margin-top: 60px;
}

.book-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    background-color: var(--lavender);
    text-decoration: none;
    padding: 18px 80px;
    border-radius: 12px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quote Section */
.quote-section {
    background-color: var(--deep-cream);
    padding: 40px 20px;

}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.quote-text {
    flex: 1;
}

.quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.8;
    color: #333;
}

.quote-image {
    flex: 0 0 450px;
}

.janet-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--cream);
    padding: 80px 20px;
    overflow: hidden;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    /* normal weight, not bold */
    color: #777;
    font-style: normal;
    margin-top: 12px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 350px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.location-link {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.location-link:hover {
    opacity: 0.7;
}

/* SEO Section */
.seo-section {
    background-color: var(--deep-cream);
    padding: 80px 20px;
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.seo-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.seo-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.seo-content p:last-child {
    margin-bottom: 0;
    /* Remove margin from last paragraph */
}

/* Footer */
.footer {
    background-color: var(--warm-gray);
    padding: 20px 20px 20px;
    text-align: center;
}

.footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: white;
}

.footer-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 0;
}

.footer-contact-left,
.footer-contact-right {
    flex: 0 0 auto;
}

.footer-contact-left {
    text-align: left;
}

.footer-contact-right {
    text-align: right;
}

.footer-contact-left a,
.footer-contact-right a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-left a:hover,
.footer-contact-right a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex: 0 0 auto;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 160px;
    }

    .site-header {
        padding: 20px;
    }

    .hero {
        padding: 30px 20px 60px;
    }

    .main-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-card {
        padding: 40px 30px;
        min-height: 240px;
    }

    .nav-card h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .nav-card p {
        font-size: 1rem;
    }

    .book-cta {
        margin-top: 40px;
    }

    .book-btn {
        width: 100%;
        max-width: 300px;
        font-size: 1.2rem;
        padding: 16px 40px;
    }

    .quote-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .quote {
        font-size: 1.3rem;
    }

    .quote-image {
        flex: 0 0 250px;
        width: 250px;
        margin: 0 auto;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .testimonial-track {
        animation: none;
    }

    .testimonial-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }


    .seo-content h2 {
        font-size: 1.8rem;
    }

    .seo-content p {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .footer-contact-left,
    .footer-contact-right {
        text-align: center;
    }

    .footer-quote {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 140px;
    }

    .nav-card {
        padding: 35px 25px;
        min-height: 220px;
    }

    .nav-card h2 {
        font-size: 1.8rem;
    }

    .nav-card p {
        font-size: 0.95rem;
    }

    .book-btn {
        font-size: 1.1rem;
        padding: 14px 30px;
    }

    .quote {
        font-size: 1.2rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        flex: 0 0 250px;
        padding: 25px;
    }
}