/* ==========================================================================
   CSS Variables for Color & Typography
   ========================================================================== */
:root {
    --text-color: #2b2b2b;
    --text-light: #555555;
    --bg-color: #ffffff;
    --footer-bg: #f4f4f4;
    --divider-color: #e5e5e5;
    /* Primary font stack tailored for a clean, elegant look similar to Optima */
    --font-primary: "Optima", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.8;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* Updated Link Styles */
a {
    color: inherit; /* Adopts the regular text color of whatever section it's in */
    text-decoration: underline dotted;
    text-underline-offset: 3px; /* Adds a little breathing room under the text */
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline solid; /* Changes to a solid line on hover */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-divider {
    border: 0;
    height: 1px;
    background: var(--divider-color);
    margin: 60px 0;
}

/* ==========================================================================
   Header / Top Bar
   ========================================================================== */
.top-bar {
    text-align: center;
    padding: 20px 10px;
    font-family: var(--font-secondary);
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    text-align: center;
    margin: 60px 0 80px 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: normal;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-color);
}

/* ==========================================================================
   Bio Section
   ========================================================================== */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.bio-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 2px;
    line-height: 1.2;
}

.bio-content h3.subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: normal;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.bio-content ul {
    margin: 20px 0 20px 40px;
    color: var(--text-light);
}

.bio-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ==========================================================================
   Split Sections (Testimonials, Services, Gift Certificates)
   ========================================================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 80px;
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: normal;
}

.section-content h3 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 25px;
}

.section-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Testimonials specific */
.testimonials-list .testimonial {
    margin-bottom: 50px;
}

.testimonials-list p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonials-list footer {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services specific */
.services-list {
    margin: 20px 0 30px 40px;
    color: var(--text-light);
}

.services-list li {
    margin-bottom: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--footer-bg);
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    color: var(--text-color);
}

/* ==========================================================================
   Media Queries for Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    .hero {
        margin: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .bio-section,
    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-divider {
        margin: 40px 0;
    }

    .section-heading h2 {
        margin-bottom: 10px;
    }

    .bio-image {
        max-width: 80%;
        margin: 0 auto;
    }
}