/*
Theme Name: Vedamayurveda
Theme URI: https://example.com/vedamayurveda
Author: Quadrant
Author URI: https://example.com
Description: A minimal Ayurvedic-inspired WordPress theme using Tailwind CSS and clean typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vedamayurveda
Tags: blog, two-columns, responsive-layout, custom-colors, custom-logo
*/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--veda-font-body, "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	line-height: 1.6;
	background-color: var(--veda-color-bg, #FBF8EF);
	color: var(--veda-color-text, #2A2A2A);
	-webkit-font-smoothing: antialiased;
}

main {
	padding-top: 6rem;
	padding-bottom: 4rem;
}

h1,
h2,
h3,
h4 {
	font-family: var(--veda-font-heading, "Playfair Display", serif);
	color: var(--veda-color-heading, #2F6B1F);
	font-weight: 600;
}

h1 {
	font-size: 3rem;
	line-height: 1.1;
}

h2 {
	font-size: 2.25rem;
	line-height: 1.15;
}

h3 {
	font-size: 1.75rem;
	line-height: 1.2;
}

h4 {
	font-size: 1.5rem;
	line-height: 1.25;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

.veda-container {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.veda-section-alt {
	background-color: var(--veda-color-bg-alt, #EEF7E7);
}

.veda-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.9rem;
	border-radius: 999px;
	background-image: linear-gradient(135deg, #61AC32, #9ad143);
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 30px rgba(97, 172, 50, 0.28);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.veda-btn-primary:hover {
	background-image: linear-gradient(135deg, #2F6B1F, #61AC32);
	box-shadow: 0 16px 40px rgba(47, 107, 31, 0.35);
	transform: translateY(-1px);
}

.veda-accent-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background-color: rgba(246, 218, 36, 0.18);
	color: var(--veda-color-heading, #2F6B1F);
	font-size: 0.75rem;
	font-weight: 500;
}

.veda-mobile-item {
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid rgba(47, 107, 31, 0.08);
}

.veda-mobile-item:last-child {
	border-bottom: 0;
}

.veda-hamburger {
	position: relative;
	width: 1.85rem;
	height: 1.3rem;
}

.veda-hamburger-line {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #61AC32, #9ad143);
	transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease, bottom 0.18s ease;
}

.veda-hamburger-line:nth-child(1) {
	top: 0;
}

.veda-hamburger-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.veda-hamburger-line:nth-child(3) {
	bottom: 0;
}

.veda-hamburger-active .veda-hamburger-line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(42deg);
}

.veda-hamburger-active .veda-hamburger-line:nth-child(2) {
	opacity: 0;
}

.veda-hamburger-active .veda-hamburger-line:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-42deg);
}
