

        :root {
            --soft-sage: #C8D3C0;
            --warm-blush: #e3b0b3;
            --calm-cream: #F9F8F4;
            --dusty-cocoa: #5A4E4D;
            --muted-sky-blue: #AFC9D9;
            --font-body: 'Source Sans Pro', sans-serif;
            --font-heading: 'PT Serif', serif;
            --font-logo: 'Handlee', cursive;
            --font-affirm: 'Playfair Display', serif;
            --font-hand: 'Caveat', cursive;
        }
    
        /* Navbar container */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
            margin: .2rem;
            background: var(--soft-sage);
            border-radius: 10px;
            position: relative;
        }
    

        .navbar .logo a {
            font-family: var(--font-heading);
            font-weight: bold;
            font-size: 1.3rem;
            color: var(--dusty-cocoa);
            text-decoration: none;
        }
    
        .navbar .logo .calmful {
            font-family: 'Handlee', cursive;
            font-weight: normal;
            color: var(--dusty-cocoa);
        }
    
        .navbar .logo .roots {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--dusty-cocoa);
        }
    
        .menu-toggle {
            font-size: 1.8rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--dusty-cocoa);
        }
    
        .nav-links {
            list-style: none;
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            width: 180px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            z-index: 999;
            text-align: left;
        }
    
        .nav-links.show {
            display: flex;
        }
    
        .nav-links li {
            margin: 0.5rem 0;
        }
    
        .nav-links li a {
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: bold;
            font-size: 0.95rem;
            color: var(--dusty-cocoa);
        }
    
        .nav-links li a:hover {
            color: var(--muted-sky-blue);
        }
    
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--muted-sky-blue);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
        }
    
        #scrollTopBtn:hover {
            background-color: var(--dusty-cocoa);
        }
    
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
        }
    
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
    
        body {
            background-color: var(--calm-cream);
            color: var(--dusty-cocoa);
            font-family: var(--font-body);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
    

        .site-header {
            text-align: center;
            background-color: var(--calm-cream);
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px;
            padding: 0 .2rem;
        }
    
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 1rem;
            background: var(--calm-cream);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgb(0, 0, 50, .1);
            line-height: 1.7;
        }
    
        .profile-photo {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            margin-top: 2.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* About page specific styles */
        .about-hero {
            text-align: center;
        }
    
        .about-hero h1 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dusty-cocoa);
            margin-bottom: 1.5rem;
        }

    
        .about-hero .tagline {
            font-family: var(--font-affirm);
            font-style: italic;
            font-size: 1.3rem;
            color: var(--warm-blush);
            margin-bottom: 1.5rem;
        }
    
        .about-section {
            margin-bottom: 2.5rem;
        }
    
        .about-section h2 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--dusty-cocoa);
            margin-bottom: 1rem;
            border-left: 4px solid var(--soft-sage);
            padding-left: 1rem;
        }

                
    
        .about-section p {
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }
    
        .about-section strong {
            color: var(--dusty-cocoa);
            font-weight: 600;
        }
    
        .highlight-box {
            background: linear-gradient(135deg, var(--soft-sage) 0%, rgba(200, 211, 192, 0.7) 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            text-align: center;
        }
    
        .highlight-box p {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: var(--dusty-cocoa);
        }
    
        .difference-list {
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border: 1px solid var(--muted-sky-blue);
        background: var(--calm-cream);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgb(0, 0, 50, .1);            
        margin: 1.5rem 0;
        }
    
        .difference-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
    
        .difference-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
    
        .difference-list li::before {
            content: "🌿";
            position: absolute;
            left: 0;
            font-size: 1.1rem;
        }
    
        .boundaries-box {
            background: rgba(175, 201, 217, 0.2);
            border: 1px solid var(--muted-sky-blue);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
    
        .boundaries-box h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--dusty-cocoa);
            margin-bottom: 1rem;
        }
    
        .boundaries-box ul {
            margin: 0;
        }
    
        .boundaries-box li {
            margin-bottom: 0.7rem;
        }
    
        .cta-section {
            background: var(--warm-blush)
            /* linear-gradient(135deg, var(--warm-blush) 0%, rgba(227, 176, 179, 0.7) 100%)*/ ;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 3rem;
        }
    
        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: white;
            margin-bottom: .5rem;
            border: none;
            padding: 0;
        }

        .cta-section h2 .handlee {
            font-family: var(--font-logo);
        }
        
        .cta-section p .handlee {
            font-family: var(--font-logo);
        }

        .cta-section p .roots {
            font-family: 'Playfair Display', serif;
        }
        
        .cta-section p {
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
    
        /*
        .cta-button {
            background-color: var(--dusty-cocoa);
            color: white;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1rem;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            cursor: pointer;
        }
    
        .cta-button:hover {
            background-color: var(--muted-sky-blue);
        } */
    
        .note {
            font-size: .95rem !important;
            color: white;
            font-style: italic;
            margin-top: 1rem;
        }

        .social-links {
            text-align: center;
            margin: 3rem 0;
        }
        
        .social-links h2 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dusty-cocoa);
        }
        
        .social-links .icons a {
            margin: 0 1rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--dusty-cocoa);
            transition: color 0.3s ease;
        }
        
        .social-links .icons a:hover {
            color: var(--muted-sky-blue);
        }
    
        .site-footer {
            text-align: center;
            padding: 1rem;
            background-color: var(--calm-cream);
            font-size: 0.9rem;
            color: var(--dusty-cocoa);
            border-top: 1px solid var(--soft-sage);
            width: auto;
            margin-top: 4rem;
            margin-left: auto;
            margin-right: auto;
            max-width: 800px;
        }
    
        .site-footer p {
            text-align: center;
            font-size: 1rem;
            margin: 0 auto;
        }
    
        footer a {
            text-decoration: none;
            color: var(--dusty-cocoa);
            font-weight: 600;
            transition: color 0.3s ease;
        }
    
        footer a:hover {
            color: var(--muted-sky-blue);
        }
    
        /* Responsive design */
        @media (max-width: 768px) {
            .content {
                padding: 1.5rem 1rem;
            }
    
            .profile-section {
                flex-direction: column;
                text-align: center;
            }
    
            .profile-image {
                flex: none;
            }
    
            .cta-section {
                padding: 1.5rem;
            }
    
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
    
            .cta-button {
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }

