/* About page specific styles only (global styles now in main style.css) */
#About {display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;background:var(--surface);border-radius:26px;margin:40px auto;padding:44px;max-width:1000px;box-shadow:0 6px 28px -10px rgba(var(--shadow-color)/.18);gap:44px;border:1px solid var(--border);} 
[data-theme="dark"] #About {background:var(--surface);box-shadow:0 10px 40px -14px rgba(0,0,0,.6);} 
#About div:first-child {flex:1 1 350px;font-size:1.18rem;color:var(--text-secondary);line-height:1.55;} 
#About h2 {font-size:2.4rem;margin-bottom:18px;color:var(--text-primary);font-weight:700;letter-spacing:.5px;} 
#About img {max-width:320px;width:100%;height:auto;border-radius:20px;box-shadow:0 4px 16px rgba(var(--shadow-color)/.12);display:block;margin:0 auto;} 

.about-section {display:flex;align-items:center;justify-content:center;padding:2rem 1rem;background:var(--surface);gap:2rem;flex-wrap:wrap;border:1px solid var(--border);border-radius:24px;margin:50px auto 30px;max-width:1100px;box-shadow:0 4px 20px -8px rgba(var(--shadow-color)/.15);} 
[data-theme="dark"] .about-section {background:var(--surface-alt);box-shadow:0 8px 30px -10px rgba(0,0,0,.65);} 
.about-img {width:350px;border-radius:1rem;box-shadow:0 4px 16px rgba(var(--shadow-color)/.15);} 
.about-text {max-width:500px;} 
.about-text h2 {margin-top:0;color:var(--accent);} 

.chef-section {background:var(--surface-alt);padding:2rem 1rem;text-align:center;border-top:1px solid var(--border);border-bottom:1px solid var(--border);} 
[data-theme="dark"] .chef-section {background:var(--surface);} 
.chef-profile {display:flex;align-items:center;justify-content:center;gap:2rem;margin-top:1rem;flex-wrap:wrap;} 
.chef-img {width:180px;border-radius:50%;border:4px solid var(--accent);box-shadow:0 4px 16px rgba(var(--shadow-color)/.25);} 
.chef-profile h3 {margin:0 0 .5rem;color:var(--accent);} 

.food-gallery {padding:2rem 1rem;background:var(--surface);text-align:center;border:1px solid var(--border);margin:50px auto 20px;border-radius:24px;max-width:1100px;box-shadow:0 4px 18px -8px rgba(var(--shadow-color)/.15);} 
[data-theme="dark"] .food-gallery {background:var(--surface-alt);box-shadow:0 8px 30px -12px rgba(0,0,0,.65);} 
.food-gallery h2 {color:var(--accent);} 
.gallery {display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-top:1rem;} 
.gallery img {width:180px;height:140px;object-fit:cover;border-radius:1rem;box-shadow:0 2px 10px -2px rgba(var(--shadow-color)/.25);transition:transform .35s;} 
.gallery img:hover {transform:scale(1.06);} 

/* Footer now uses global styling */
/* Dark theme handled by token swap */