/*!
Theme Name: dietician
Description: Description
Version: 1.0.0
*/
:root {
	--olive:       #5a6e3a;
	--olive-dark:  #3d4f24;
	--olive-light: #8a9e5c;
	--cream:       #f5f1ea;
	--cream-dark:  #ede7dc;
	--beige:       #d9d0bf;
	--text-dark:   #2b2b2b;
	--text-mid:    #5a5a5a;
	--white:       #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text-dark);
	background: var(--white);
	overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

/* ─── NAVBAR ─── */
.navbar {
	background: var(--white);
	border-bottom: 1px solid var(--cream-dark);
	padding: 14px 0;
}
.navbar-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--olive-dark) !important;
	letter-spacing: .02em;
	line-height: 1.2;
}
.navbar-brand span { display: block; font-size: .7rem; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--text-mid); }
.nav-link { font-size: .85rem; color: var(--text-dark) !important; font-weight: 400; padding: 6px 12px !important; }
.nav-link:hover { color: var(--olive) !important; }
.btn-cta {
	background: var(--olive);
	color: var(--white) !important;
	border-radius: 50px;
	font-size: .82rem;
	font-weight: 500;
	padding: 9px 22px;
	border: none;
	transition: background .25s;
}
.btn-cta:hover { background: var(--olive-dark); }
.btn-cta-outline {
	border: 1.5px solid var(--olive);
	color: var(--olive) !important;
	border-radius: 50px;
	font-size: .82rem;
	font-weight: 500;
	padding: 9px 22px;
	background: transparent;
	transition: all .25s;
}
.btn-cta-outline:hover { background: var(--olive); color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
	background: var(--cream);
	padding: 80px 0 0;
	overflow: hidden;
}
.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--text-dark);
}
.hero h1 em {
	color: var(--olive);
	font-style: italic;
}
.hero p.lead { font-size: .95rem; color: var(--text-mid); line-height: 1.7; max-width: 420px; }
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .8rem;
	color: var(--text-mid);
	margin-right: 20px;
}
.hero-badge i { color: var(--olive); font-size: 1rem; }
.hero-img-wrap {
	position: relative;
	text-align: right;
}
.hero-img-wrap img {
	max-height: 480px;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
}
/* placeholder for hero photo */
.hero-photo-placeholder {
	width: 100%;
	max-width: 420px;
	height: 460px;
	background: linear-gradient(135deg, #c8d9a0 0%, #e8f0d4 60%, #f0ead8 100%);
	border-radius: 12px 12px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	overflow: hidden;
	position: relative;
}
.hero-photo-placeholder::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a0b56a' fill-opacity='0.15'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-photo-icon { font-size: 6rem; color: rgba(90,110,58,.3); position: relative; z-index: 1; }

/* ─── SECTION GENERIC ─── */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 16px;
}
.section-sub { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ─── TOGETHER SECTION ─── */
.together-section { background: var(--cream); }
.together-img {
	border-radius: 16px;
	object-fit: cover;
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, #b5c98a 0%, #d8e8b0 100%);
	display: flex; align-items: center; justify-content: center;
}
.together-icon-box {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	gap: 8px; padding: 20px 12px;
}
.together-icon-box .icon-circle {
	width: 52px; height: 52px; border-radius: 50%;
	background: var(--cream-dark);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem; color: var(--olive);
}
.together-icon-box p { font-size: .82rem; color: var(--text-mid); margin: 0; }

/* ─── REQUESTS (CONDITIONS) ─── */
.requests-section { background: var(--white); }
.request-card {
	background: var(--cream);
	border-radius: 14px;
	padding: 24px 18px;
	text-align: center;
	height: 100%;
	transition: box-shadow .2s, transform .2s;
}
.request-card:hover { box-shadow: 0 8px 28px rgba(90,110,58,.12); transform: translateY(-3px); }
.request-card .rc-icon {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--white);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 14px;
	font-size: 1.2rem; color: var(--olive);
}
.request-card h6 { font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.request-card p  { font-size: .78rem; color: var(--text-mid); margin: 0; }

/* ─── PHILOSOPHY SECTION ─── */
.philosophy-section { background: var(--cream-dark); }
.philosophy-section h2 em { color: var(--olive); font-style: italic; }
.philosophy-food-img {
	border-radius: 16px;
	width: 100%; height: 340px;
	object-fit: cover;
	background: linear-gradient(135deg, #d0dda8 0%, #e8f2c8 100%);
	display: flex; align-items: center; justify-content: center;
}

/* ─── DOCTOR SECTION ─── */
.doctor-section { background: var(--olive); color: var(--white); }
.doctor-section h2 { color: var(--white); }
.doctor-section p  { color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.75; }
.doctor-photo-wrap {
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
	max-width: 280px;
}
.doctor-photo-placeholder {
	width: 280px; height: 340px;
	background: rgba(255,255,255,.12);
	border-radius: 16px;
	display: flex; align-items: center; justify-content: center;
}
.stat-box {
	display: flex; align-items: center; gap: 10px;
	background: rgba(255,255,255,.12);
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 10px;
}
.stat-box i  { font-size: 1.3rem; color: rgba(255,255,255,.7); }
.stat-box strong { display: block; font-size: 1rem; color: var(--white); }
.stat-box span   { font-size: .78rem; color: rgba(255,255,255,.7); }

/* ─── PROCESS SECTION ─── */
.process-section { background: var(--white); }
.process-step {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	position: relative;
}
.step-num {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--olive);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem; font-weight: 600;
	margin-bottom: 12px;
	flex-shrink: 0;
}
.process-step h6 { font-size: .82rem; font-weight: 600; margin-bottom: 4px; }
.process-step p  { font-size: .76rem; color: var(--text-mid); margin: 0; }
.step-connector {
	flex: 1; height: 2px; background: var(--beige);
	margin-top: -34px; margin-bottom: 60px; position: relative;
}

/* ─── APPROACH / QUOTES ─── */
.approach-section { background: var(--cream); }
.quote-card {
	background: var(--white);
	border-radius: 14px;
	padding: 28px 22px;
	height: 100%;
	border-top: 3px solid var(--olive-light);
	box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.quote-card .qi { font-size: 1.8rem; color: var(--olive-light); line-height: 1; margin-bottom: 8px; }
.quote-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.5; color: var(--text-dark); }
.approach-food {
	border-radius: 16px;
	width: 100%; height: 100%; min-height: 280px;
	background: linear-gradient(135deg, #ccd99e 0%, #e2edbe 100%);
	display: flex; align-items: center; justify-content: center;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--white); }
.testi-card {
	background: var(--cream);
	border-radius: 14px;
	padding: 24px;
	height: 100%;
}
.testi-avatar {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--olive-light);
	display: flex; align-items: center; justify-content: center;
	color: var(--white); font-weight: 600; font-size: 1rem;
	flex-shrink: 0;
}
.testi-card h6 { font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.testi-card p  { font-size: .82rem; color: var(--text-mid); line-height: 1.65; margin-top: 12px; margin-bottom: 10px; }
.stars { color: #f0a500; font-size: .85rem; letter-spacing: .05em; }

/* ─── CTA BANNER ─── */
.cta-banner {
	background: linear-gradient(120deg, var(--olive-dark) 0%, var(--olive) 100%);
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-banner p  { color: rgba(255,255,255,.82); font-size: .95rem; max-width: 500px; margin: 0 auto 30px; }
.btn-cta-white {
	background: var(--white);
	color: var(--olive-dark) !important;
	border-radius: 50px;
	font-size: .88rem;
	font-weight: 600;
	padding: 12px 32px;
	border: none;
	transition: opacity .2s;
}
.btn-cta-white:hover { opacity: .9; }

/* ─── FOOTER ─── */
footer {
	background: var(--cream);
	border-top: 1px solid var(--beige);
	padding: 32px 0;
	font-size: .8rem;
	color: var(--text-mid);
}
footer .brand { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1rem; color: var(--olive-dark); }
footer a { color: var(--text-mid); text-decoration: none; }
footer a:hover { color: var(--olive); }

/* ─── FOOD IMAGE PLACEHOLDERS ─── */
.food-placeholder {
	background: linear-gradient(135deg, #c5d98e 0%, #e0eebc 60%, #f0ead8 100%);
	display: flex; align-items: center; justify-content: center;
}
.food-placeholder i { font-size: 4rem; color: rgba(90,110,58,.25); }

/* ─── DIVIDER LINE ─── */
hr.olive { border-color: var(--olive-light); opacity: .3; }

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 768px) {
	.hero { padding: 60px 0 0; }
	.hero-photo-placeholder { max-width: 100%; height: 320px; }
	.section { padding: 56px 0; }
}