/* 
 * Calming Mind Design System
 * Focus: High-conversion, trust, and premium aesthetics.
 */

:root {
    --primary-teal: #2D6A4F;
    --accent-blue: #A9D1DF;
    --soft-white: #F8F9FA;
    --text-dark: #1B4332;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.loc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
}

/* Glassmorphism Cards */
.loc-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.loc-card:hover {
    transform: translateY(-5px);
}

/* Typography */
.loc-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal), #40916c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loc-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* High-Visibility Zocdoc Button */
.zocdoc-cta {
    display: inline-block;
    background: #0076D6; /* Zocdoc Brand Blue */
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 118, 214, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zocdoc-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 118, 214, 0.4);
    background: #005FA3;
}

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.city-link {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 500;
    text-align: center;
    border: 1px solid #E9ECEF;
    transition: all 0.2s ease;
}

.city-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

/* Hero Section */
.loc-hero {
    padding: 8rem 1rem;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('https://images.unsplash.com/photo-1518199266791-5375a83190b7?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 4rem;
}

.loc-hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-weight: 800;
}

/* Condition Cards */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.condition-card {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.condition-card:hover {
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(45, 106, 79, 0.08);
    transform: translateY(-10px);
}

.condition-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

/* Post Content */
.single-post-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2D3436;
    max-width: 800px;
}

.single-post-content h2 { 
    margin-top: 3rem; 
    margin-bottom: 1.5rem; 
    color: var(--primary-teal); 
    font-weight: 700;
}

.sidebar-widget {
    background: white;
    border: 1px solid #f0f0f0;
    padding: 2rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

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

.animate-in {
    animation: fadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@media (max-width: 768px) {
    .loc-hero h1 { font-size: 2.5rem; }
    .loc-hero { padding: 4rem 1rem; }
    .condition-grid { grid-template-columns: 1fr; }
}
/* Navigation & UI Shell */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
    text-decoration: none;
}

.logo-text span {
    color: var(--primary-teal);
    font-weight: 300;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-teal);
}

/* Footer Redesign */
.site-footer {
    background: #0d1b15;
    color: white;
    padding: 6rem 0 3rem;
    margin-top: 8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* Responsive Shell */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}
