/* Health Haven Static Website Styles - Matching Next.js Theme */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Root Variables - Exact match to Next.js theme */
:root {
    /* Color System - Light Mode (matching Next.js HSL values) */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(200, 20%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(200, 20%, 10%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(200, 20%, 10%);
    --primary: hsl(191, 64%, 45%); /* #239cc1 - Main turquoise */
    --primary-hover: hsl(191, 64%, 38%); /* Darker turquoise for hover */
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(186, 58%, 71%); /* #8ad4dd - Medium turquoise */
    --secondary-foreground: hsl(200, 20%, 10%);
    --muted: hsl(180, 40%, 90%); /* #c2e8e8 - Light turquoise */
    --muted-foreground: hsl(200, 20%, 45%);
    --accent: hsl(189, 53%, 80%); /* #b1dce9 - Light blue-teal */
    --accent-foreground: hsl(200, 20%, 10%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(180, 30%, 85%);
    --input: hsl(180, 30%, 85%);
    --ring: hsl(191, 64%, 45%);
    --radius: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode - Matching Next.js dark theme */
[data-theme="dark"] {
    --background: hsl(200, 20%, 8%);
    --foreground: hsl(180, 10%, 95%);
    --card: hsl(200, 20%, 12%);
    --card-foreground: hsl(180, 10%, 95%);
    --popover: hsl(200, 20%, 12%);
    --popover-foreground: hsl(180, 10%, 95%);
    --primary: hsl(191, 64%, 45%); /* Keep the turquoise bright in dark mode */
    --primary-hover: hsl(191, 64%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(186, 58%, 35%); /* Darker version for dark mode */
    --secondary-foreground: hsl(180, 10%, 95%);
    --muted: hsl(200, 20%, 18%);
    --muted-foreground: hsl(180, 10%, 70%);
    --accent: hsl(189, 53%, 25%);
    --accent-foreground: hsl(180, 10%, 95%);
    --destructive: hsl(0, 62.8%, 50.6%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(200, 20%, 20%);
    --input: hsl(200, 20%, 20%);
    --ring: hsl(191, 64%, 55%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    font-feature-settings: "rlig" 1, "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.max-w-3xl {
    max-width: 900px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--foreground);
    transition: 0.3s;
}

.theme-toggle {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.theme-icon {
    font-size: 1.25rem;
}

/* Hero Section */
/* Hero Section - Matching Next.js */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3rem 0;
}

.hero-gradient {
    background: linear-gradient(to bottom right, 
        hsl(var(--primary) / 0.05), 
        hsl(var(--secondary) / 0.05), 
        hsl(var(--accent) / 0.05)
    );
}

/* Animated background blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 288px;
    height: 288px;
    background-color: hsl(var(--primary) / 0.1);
    animation: float1 8s ease-in-out infinite;
}

.hero-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 384px;
    height: 384px;
    background-color: hsl(var(--secondary) / 0.1);
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 768px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #239cc1, #8ad4dd);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    opacity: 0.8;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: hsl(var(--foreground) / 0.8);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background-color: white;
    color: var(--primary);
}

.btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-muted {
    background-color: var(--muted);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
    line-height: 1.2;
}

.section-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card);
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--card);
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-text {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* Practitioner Cards */
.practitioners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.practitioner-card {
    background-color: var(--card);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
    border: 1px solid var(--border);
}

.practitioner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.practitioner-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--muted);
}

.practitioner-info {
    padding: 1.5rem;
}

.practitioner-name {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.practitioner-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.practitioner-bio {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Filters and Search */
.filters-container {
    background-color: var(--card);
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.search-box {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    margin-bottom: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(191, 64%, 45%, 0.1);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(191, 64%, 45%, 0.1);
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: hsla(191, 64%, 45%, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsla(191, 64%, 45%, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--card);
        border-top: 1px solid var(--border);
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .services-grid,
    .features-grid,
    .contact-grid,
    .practitioners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--muted-foreground);
}

.loading::after {
    content: '...';
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--muted-foreground);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state-text {
    font-size: 1.125rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Additional styles to match Next.js exactly */

/* Background utilities */
.bg-muted-subtle {
    background-color: hsl(var(--muted) / 0.2);
}

.bg-gradient {
    background: linear-gradient(to bottom right, 
        hsl(var(--primary) / 0.05), 
        hsl(var(--secondary) / 0.05), 
        hsl(var(--accent) / 0.05)
    );
}

/* Icon wrapper styles */
.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: hsl(var(--primary));
}

.service-card:hover .icon-wrapper,
.feature-card:hover .icon-wrapper {
    background-color: hsl(var(--primary) / 0.2);
}

.icon-wrapper-small {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper-small svg {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
}

/* Button SVG icons */
.btn svg {
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Section header styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--foreground) / 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Card styles */
.service-card,
.feature-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover,
.feature-card:hover {
    box-shadow: 0 10px 25px -5px hsl(var(--foreground) / 0.1);
    transform: translateY(-4px);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--card-foreground));
}

.card-text {
    color: hsl(var(--foreground) / 0.7);
    line-height: 1.6;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--card-foreground));
}

.feature-text {
    color: hsl(var(--foreground) / 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services grid */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Features grid */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
}

/* Practitioners grid */
.practitioners-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .practitioners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .practitioners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact card styles */
.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 25px -5px hsl(var(--foreground) / 0.1);
    transform: translateY(-4px);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--card-foreground));
}

.contact-text {
    color: hsl(var(--foreground) / 0.7);
    line-height: 1.6;
}

.contact-text a {
    color: hsl(var(--foreground) / 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: hsl(var(--primary));
}

/* Margin utilities */
.mt-2 {
    margin-top: 0.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Theme toggle with SVG icons */
.theme-toggle {
    position: relative;
}

.sun-icon,
.moon-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun-icon {
    opacity: 1;
}

.moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
}

/* Practitioner card enhancements */
.practitioner-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.practitioner-card:hover {
    box-shadow: 0 20px 40px -10px hsl(var(--foreground) / 0.15);
    transform: translateY(-8px);
}

.practitioner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: hsl(var(--muted));
    overflow: hidden;
}

.practitioner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.practitioner-card:hover .practitioner-image img {
    transform: scale(1.05);
}

.practitioner-info {
    padding: 1.5rem;
}

.practitioner-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--card-foreground));
}

.practitioner-specialty {
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.practitioner-bio {
    color: hsl(var(--foreground) / 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Outline button styles */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background-color: hsl(var(--muted));
    transform: translateY(-2px);
}

.btn-outline svg {
    width: 16px;
    height: 16px;
}
