/* 
 * MNM Threading Salon - "Vision Pro" Ultra-Premium Redesign
 * Dark mode, glassmorphism, fluid animations, deep corners
 */

 :root {
    --accent: #e51d65; /* Original Pink */
    --accent-glow: rgba(229, 29, 101, 0.4);
    
    /* Dark Theme Core */
    --bg-base: #0a0a0c; /* Deep space black */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(25, 25, 28, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 30px 60px rgba(0,0,0,0.4);
    --radius-large: 24px;
    --radius-pill: 100px;
    
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1200px;
}

/* Base Reset & Accessibility */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-stack);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* Utilities */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gray { color: var(--text-secondary); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }
.mt-10 { margin-top: 4rem; }
.pt-8 { padding-top: 4rem; }
.pb-6 { padding-bottom: 3rem; }
.pt-12 { padding-top: 6rem; }
.pb-12 { padding-bottom: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 3rem; }
.flex-center { display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* Screen Reader Skip Link */
.skip-link {
    position: absolute; top: -100px; left: 0; background: var(--accent); color: white; padding: 12px; z-index: 10000; font-weight: 600; border-radius: 0 0 12px 0;
}
.skip-link:focus { top: 0; }

/* Cinematic Background Details */
.cinematic-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.bg-video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05); /* Slight scale to hide edges */
    filter: blur(2px) brightness(0.7); /* Cinematic blur */
    transition: filter 0.5s ease;
}
.cinematic-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.95) 80%, rgba(10,10,12,1) 100%);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Javascript toggles this class when user scrolls down */
.sticky-header.scrolled {
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 10px 0; /* Shrink header slightly on scroll */
}

/* Dynamic Open/Closed Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555; /* Default Unknown */
    position: relative;
}

.status-indicator.open .status-dot {
    background: #00e676; /* Bright Green */
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
    animation: pulse-green 2s infinite;
}

.status-indicator.closed .status-dot {
    background: #ff4757; /* Soft Red */
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@media (max-width: 768px) {
    .status-indicator {
        display: none; /* Hide on mobile to save nav space */
    }
}

/* Success Panel Overlay */
.success-panel-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.success-panel-overlay.active .success-panel {
    transform: translateY(0);
    opacity: 1;
}

.success-panel h3 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 15px;
}

.success-panel p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Glass UI Components */
.glass-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 0;
}
.glass-nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card, .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.glass-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Typography elements */
.section-title { font-size: 48px; margin-bottom: 16px; }
.section-desc { font-size: 20px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Buttons & Links */
.glow-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    background: #ff2a7a;
}
.glass-btn {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.glass-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.icon-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-weight: 600; transition: gap 0.3s ease;
}
.icon-link:hover { gap: 12px; }

/* Navigation */
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { max-height: 40px; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-menu a { 
    font-size: 15px; 
    font-weight: 500; 
    color: rgba(255, 255, 255, 0.85); 
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: transparent;
}
.nav-menu a:hover, .nav-menu a.active { 
    color: white; 
}
.nav-menu a.nav-cta {
    background: var(--accent); /* Make it pop more with the brand pink */
    color: white !important; 
    padding: 10px 24px; 
    border-radius: var(--radius-pill); 
    font-weight: 600 !important; 
    transition: transform 0.3s ease, background 0.3s ease !important;
    border: none;
}
.nav-menu a.nav-cta:hover { 
    transform: scale(1.05); 
    background: #ff3377; /* Slightly brighter pink on hover */
}

/* Magic Sliding Pill */
.nav-menu { position: relative; }
.nav-pill-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    pointer-events: none;
    z-index: 0;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
}

/* Mobile Menu Button */
.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 24px; height: 2px; background: white; position: relative; transition: background 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: white; left: 0; transition: transform 0.3s; }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero-section {
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding-top: 80px; /* Offset for nav */
}
.hero-title { font-size: 72px; margin-bottom: 24px; }
.hero-subtitle { font-size: 22px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Service Grid */
.service-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.card-img-wrapper {
    height: 240px; overflow: hidden;
}
.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover .card-img-wrapper img { transform: scale(1.05); }
.card-content { padding: 32px; }
.card-content h3 { font-size: 24px; margin-bottom: 12px; }
.card-content p { color: var(--text-secondary); font-size: 15px; }

.hover-lift { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; }
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

.hero-card { background: linear-gradient(135deg, rgba(25,25,28,0.4) 0%, rgba(229,29,101,0.1) 100%); }

/* Pricing */
.glass-panel { padding: 60px; }
.pricing-flex { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-tier {
    padding: 40px; border-radius: var(--radius-large);
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    text-align: center; position: relative;
}
.price-tier.highlight {
    background: rgba(229,29,101,0.05); border-color: rgba(229,29,101,0.3);
}
.tier-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: white; padding: 4px 16px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.price-header { font-size: 20px; color: var(--text-secondary); margin-bottom: 16px; }
.price-amount { font-size: 56px; font-weight: 700; margin-bottom: 16px; color: white; }
.price-desc { font-size: 14px; color: var(--text-secondary); }

/* Profiles */
.profile-row { display: flex; align-items: center; gap: 60px; }
.profile-row.reverse { flex-direction: row-reverse; }
.profile-img-glow {
    flex: 1; position: relative;
}
.profile-img-glow::after {
    content: ''; position: absolute; inset: -20px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1; border-radius: 50%;
}
.avatar-large {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-large);
    border: 1px solid var(--glass-border);
}
.profile-row .glass-card { flex: 1.2; padding: 48px; }
.profile-row h2 { font-size: 40px; margin-bottom: 24px; }
.profile-row p { font-size: 18px; color: var(--text-secondary); margin-bottom: 16px; }

/* Scroll Reveal Text Effect */
.scroll-reveal-text .reveal-word {
    opacity: 0.2;
    transition: opacity 0.1s ease-in-out, color 0.1s ease-in-out;
}
.scroll-reveal-text .reveal-word.active {
    opacity: 1;
    color: var(--text-primary, #ffffff);
}

/* Reviews (Horizontal Scroll Simulation) */
.review-track-container { 
    width: 100%; 
    overflow: hidden; 
    padding: 20px 24px 60px 24px; /* Bottom padding prevents shadow clipping */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.review-track-container::-webkit-scrollbar { display: none; }
.review-track { 
    display: flex; 
    gap: 24px; 
    width: max-content; 
    padding-right: 24px;
    animation: scroll-reviews 60s linear infinite;
}
.review-track:hover {
    animation-play-state: paused; /* Pause on hover for readability */
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); } /* 12px is half gap */
}
.review-card { width: 400px; padding: 40px; display: flex; flex-direction: column; }
.stars { font-size: 20px; margin-bottom: 24px; letter-spacing: 2px; }
.review-card blockquote { font-size: 18px; line-height: 1.5; color: white; flex-grow: 1; margin-bottom: 24px; }
.reviewer { font-weight: 600; color: var(--text-secondary); }

/* Modern FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; padding: 40px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 8px; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    padding: 24px 0; font-size: 20px; font-weight: 500; cursor: pointer; list-style: none; position: relative; color: white;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--accent); transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); }
.faq-content { padding: 0 0 24px 0; color: var(--text-secondary); font-size: 16px; line-height: 1.6; animation: slideDown 0.3s ease-out; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { padding: 40px; }
.footer-col h3 { font-size: 22px; margin-bottom: 24px; color: white; }
.footer-link { font-size: 18px; color: var(--text-secondary); display: block; margin-bottom: 12px; transition: color 0.3s; }
.footer-link:hover { color: white; }
address { font-style: normal; color: var(--text-secondary); line-height: 1.6; }
.social-list { list-style: none; }
.social-list li { margin-bottom: 16px; }

/* Scroll Animations Engine */
.fade-up-anim {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up-anim.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .service-grid, .pricing-flex, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 56px; }
    .profile-row { gap: 40px; }
}

@media (max-width: 768px) {
    .service-grid, .pricing-flex, .footer-grid { grid-template-columns: 1fr; }
    .profile-row, .profile-row.reverse { flex-direction: column; text-align: center; }
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons { flex-direction: column; }
    .glass-panel { padding: 32px; }
    .faq-accordion { padding: 24px; }
    
    /* Mobile Nav */
    .mobile-menu-toggle { display: block; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(10,10,12,0.95); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 20px;
        transform: translateY(-20px); opacity: 0; pointer-events: none;
        transition: all 0.3s ease;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* === Contact Grid (Map & Form) === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-container {
    padding: 0; /* Remove padding to let map hit the glass edges */
    min-height: 400px;
    border-radius: var(--radius-large);
    overflow: hidden;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
}

.map-actions {
    display: flex;
    gap: 16px;
    margin-top: -8px; /* Pulled up slightly to align with the form better */
}

.flex-1 {
    flex: 1;
}

.form-container {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.glass-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px var(--accent-glow);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.glass-input {
    resize: vertical;
    min-height: 120px;
}

.w-100 {
    width: 100%;
}

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
select.glass-input option {
    background-color: var(--bg-base);
    color: white;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 300px;
    }
}

/* === ADA Floating Widget === */
.ada-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.ada-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
}

.ada-btn svg {
    color: white;
}

.ada-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ada-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ada-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.ada-header h3 {
    font-size: 18px;
    margin: 0;
}

#ada-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.ada-options {
    list-style: none;
    padding: 10px;
}

.ada-option-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.ada-option-btn:hover {
    background: rgba(255,255,255,0.05);
}

.ada-option-btn.active {
    background: var(--accent);
    color: white;
}

.ada-reset-wrapper {
    padding: 10px;
    border-top: 1px solid var(--glass-border);
    margin-top: 10px;
}

.ada-reset-btn {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ada-reset-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* === ADA Feature Overrides === */

/* High Contrast mode */
html.ada-high-contrast {
    --bg-base: #000000;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --accent: #ffff00; /* Yellow for extreme contrast */
    --accent-glow: transparent;
    --glass-bg: #000000;
    --glass-border: #ffffff;
}

html.ada-high-contrast .glass-nav.scrolled,
html.ada-high-contrast .glass-card,
html.ada-high-contrast .glass-panel {
    background: #000;
    backdrop-filter: none;
}

html.ada-high-contrast .cinematic-bg {
    display: none; /* remove background video for contrast */
}

/* Large Text Mode */
html.ada-large-text body {
    font-size: 120%;
}
html.ada-large-text h1 { font-size: 130%; }
html.ada-large-text h2 { font-size: 130%; }
html.ada-large-text p { font-size: 120%; }

/* Dyslexic Font */
html.ada-dyslexic-font body,
html.ada-dyslexic-font h1,
html.ada-dyslexic-font h2,
html.ada-dyslexic-font h3,
html.ada-dyslexic-font button,
html.ada-dyslexic-font a {
    font-family: "Comic Sans MS", "Arial", sans-serif !important;
    letter-spacing: 0.05em;
    word-spacing: 0.1em;
}

/* Pause Animations */
html.ada-pause-animations * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}
html.ada-pause-animations .cinematic-bg {
    display: none;
}

/* =========================================
   LIGHT THEME TRANSITION & PARALLAX SECTIONS 
   ========================================= */

/* The fade gradient to break out of cinematic dark mode */
.light-transition-start {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8) 70%, #ffffff 100%);
    z-index: 5;
    pointer-events: none;
    margin-top: -300px;
}

/* Base Light Theme Container */
.light-theme-wrapper {
    position: relative;
    background: #ffffff;
    color: #1d1d1f;
    z-index: 5;
}
.light-theme-wrapper h2 { color: #111; }
.light-theme-wrapper .text-dark { color: #1d1d1f; }
.bg-light-cream { background: #fdfbf7; }

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    display: flex;
    align-items: center;
}
.parallax-1 { background-image: url('../images/facial.png'); }
.parallax-2 { background-image: url('../images/henna.png'); }
.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Floating White Cards */
.light-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.bio-header { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 8px;}
.bio-content p { color: #555; font-size: 1.1rem; line-height: 1.7; margin-bottom: 16px; }

/* Pricing - Unlimited */
.unlimited-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.unlimited-tier {
    background: white;
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unlimited-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.unlimited-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.unlimited-price span { font-size: 1.5rem; margin-top: 10px; }
.unlimited-label {
    font-weight: 600;
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 10px;
}
.unlimited-sub {
    color: #666;
    font-size: 1rem;
}

/* Soft Footer */
.soft-footer {
    background: linear-gradient(to bottom, #fdfbf7, #f0e6e6);
    color: #333;
    border-top: 1px solid #eaeaea;
    position: relative;
    z-index: 5;
}
.soft-footer h3 { color: #111; margin-bottom: 20px;}
.soft-footer p, .soft-footer .text-gray, .soft-footer address { color: #555; }
.soft-footer a.footer-link { color: #444; transition: color 0.3s; text-decoration: none;}
.soft-footer a.footer-link:hover { color: var(--accent); }
.soft-footer .icon-link { color: #111; transition: gap 0.3s, color 0.3s; }
.soft-footer .icon-link:hover { color: var(--accent); gap: 12px;}
.soft-footer .glass-card { background: transparent; border: none; box-shadow: none; backdrop-filter: none; padding: 0; }

html.ada-pause-animations .fade-up-anim {
    opacity: 1;
    transform: translateY(0);
}
