/**
 * Noor Academy — Complete Theme Stylesheet
 *
 * All Tailwind utility classes preserved exactly from React design.
 * This is a self-contained stylesheet requiring no build step.
 *
 * @package Noor_Academy
 * @version 1.0.0
 */

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */

:root {
	--color-background: #fdfbf7;
	--color-foreground: #022c22;
	--color-primary: #022c22;
	--color-primary-foreground: #ffffff;
	--color-secondary: #d4af37;
	--color-secondary-foreground: #022c22;
	--color-accent: #c29b40;
	--color-muted: #f1f5f9;
	--color-muted-foreground: #64748b;
	--color-border: #e2e8f0;
	--color-input: #e2e8f0;
	--color-ring: #d4af37;
	--font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--radius-lg: 1rem;
	--radius-md: 0.75rem;
	--radius-sm: 0.5rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
	box-sizing: border-box;
	border: 0 solid var(--color-border);
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-tab-size: 4;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: 600;
	letter-spacing: -0.025em;
	margin: 0;
	color: var(--color-primary);
}

p { margin: 0; }

ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: inherit;
	cursor: pointer;
}

input, textarea {
	font-family: inherit;
	font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }

/* Font sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Font weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Font styles */
.italic { font-style: italic; }
.not-italic { font-style: normal; }

/* Text transform */
.uppercase { text-transform: uppercase; }

/* Text align */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Tracking */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Line height exact */
.leading-\[1\.1\] { line-height: 1.1; }

/* Whitespace */
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }

/* ============================================================
   COLORS — BACKGROUND
   ============================================================ */

.bg-background { background-color: var(--color-background); }
.bg-background\/80 { background-color: rgba(253, 251, 247, 0.8); }
.bg-primary { background-color: var(--color-primary); }
.bg-primary\/5 { background-color: rgba(2, 44, 34, 0.05); }
.bg-primary\/10 { background-color: rgba(2, 44, 34, 0.1); }
.bg-primary\/20 { background-color: rgba(2, 44, 34, 0.2); }
.bg-primary\/80 { background-color: rgba(2, 44, 34, 0.8); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-secondary\/10 { background-color: rgba(212, 175, 55, 0.1); }
.bg-secondary\/20 { background-color: rgba(212, 175, 55, 0.2); }
.bg-secondary\/80 { background-color: rgba(212, 175, 55, 0.8); }
.bg-secondary\/90 { background-color: rgba(212, 175, 55, 0.9); }
.bg-accent { background-color: var(--color-accent); }
.bg-muted { background-color: var(--color-muted); }
.bg-muted\/30 { background-color: rgba(241, 245, 249, 0.3); }
.bg-muted\/50 { background-color: rgba(241, 245, 249, 0.5); }
.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-transparent { background-color: transparent; }

/* ============================================================
   COLORS — TEXT
   ============================================================ */

.text-foreground { color: var(--color-foreground); }
.text-primary { color: var(--color-primary); }
.text-primary-foreground { color: var(--color-primary-foreground); }
.text-secondary { color: var(--color-secondary); }
.text-secondary-foreground { color: var(--color-secondary-foreground); }
.text-accent { color: var(--color-accent); }
.text-muted-foreground { color: var(--color-muted-foreground); }
.text-white { color: #ffffff; }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-primary-foreground\/70 { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   BORDERS
   ============================================================ */

.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }

.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }

.border-border { border-color: var(--color-border); }
.border-primary { border-color: var(--color-primary); }
.border-primary\/5 { border-color: rgba(2, 44, 34, 0.05); }
.border-primary\/10 { border-color: rgba(2, 44, 34, 0.1); }
.border-primary\/20 { border-color: rgba(2, 44, 34, 0.2); }
.border-primary\/30 { border-color: rgba(2, 44, 34, 0.3); }
.border-secondary { border-color: var(--color-secondary); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-transparent { border-color: transparent; }

/* Border radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-3xl { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================================
   SPACING — PADDING
   ============================================================ */

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }

.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }

.pl-0 { padding-left: 0; }
.pl-4 { padding-left: 1rem; }

.pr-0 { padding-right: 0; }

/* ============================================================
   SPACING — MARGIN
   ============================================================ */

.m-0 { margin: 0; }
.m-auto { margin: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.ml-0 { margin-left: 0; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-2 { margin-right: 0.5rem; }
.mr-auto { margin-right: auto; }

.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

/* ============================================================
   LAYOUT — DISPLAY
   ============================================================ */

.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.table { display: table; }

/* ============================================================
   LAYOUT — WIDTH
   ============================================================ */

.w-0 { width: 0; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }

.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-\[calc\(100\%-2rem\)\] { max-width: calc(100% - 2rem); }

/* ============================================================
   LAYOUT — HEIGHT
   ============================================================ */

.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-8\/10 { height: 80%; }

.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }

.max-h-\[90vh\] { max-height: 90vh; }

/* ============================================================
   LAYOUT — GRID
   ============================================================ */

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* ============================================================
   LAYOUT — FLEX
   ============================================================ */

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }

/* ============================================================
   LAYOUT — POSITION
   ============================================================ */

.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Top */
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-2 { top: 0.5rem; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.top-20 { top: 5rem; }

/* Right */
.right-0 { right: 0; }
.right-1\/4 { right: 25%; }
.right-2 { right: 0.5rem; }
.right-4 { right: 1rem; }

/* Bottom */
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }

/* Left */
.left-0 { left: 0; }
.left-1\/4 { left: 25%; }
.left-4 { left: 1rem; }
.left-8 { left: 2rem; }
.left-10 { left: 2.5rem; }
.left-1\/2 { left: 50%; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.inset-x-0 { left: 0; right: 0; }

/* Negative positions */
.-top-0 { top: 0; }
.-top-32 { top: -8rem; }
.-right-32 { right: -8rem; }
.-bottom-10 { bottom: -2.5rem; }
.-left-10 { left: -2.5rem; }

/* ============================================================
   LAYOUT — Z-INDEX
   ============================================================ */

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

/* Negative z-index */
.-z-10 { z-index: -10; }

/* ============================================================
   LAYOUT — TRANSFORM
   ============================================================ */

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-full { transform: translateX(-100%); }
.translate-x-0 { transform: translateX(0); }
.translate-x-1 { transform: translateX(0.25rem); }

.rotate-0 { transform: rotate(0deg); }
.rotate-180 { transform: rotate(180deg); }

.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }

/* ============================================================
   LAYOUT — OVERFLOW
   ============================================================ */

.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* ============================================================
   LAYOUT — OBJECT FIT
   ============================================================ */

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }

/* ============================================================
   LAYOUT — ASPECT RATIO
   ============================================================ */

.aspect-auto { aspect-ratio: auto; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* ============================================================
   EFFECTS — OPACITY
   ============================================================ */

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-25 { opacity: 0.25; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ============================================================
   EFFECTS — BLUR & BACKDROP
   ============================================================ */

.blur-none { filter: none; }
.blur-\[120px\] { filter: blur(120px); }
.blur-3xl { filter: blur(64px); }

.backdrop-blur-none { backdrop-filter: none; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* ============================================================
   EFFECTS — GRAYSCALE
   ============================================================ */

.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }

/* ============================================================
   EFFECTS — POINTER EVENTS
   ============================================================ */

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ============================================================
   EFFECTS — CURSOR
   ============================================================ */

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* ============================================================
   EFFECTS — USER SELECT
   ============================================================ */

.select-none { user-select: none; }
.select-text { user-select: text; }

/* ============================================================
   EFFECTS — TEXT DECORATION
   ============================================================ */

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration: line-through; }
.decoration-secondary { text-decoration-color: var(--color-secondary); }
.decoration-2 { text-decoration-thickness: 2px; }
.underline-offset-4 { text-underline-offset: 4px; }

/* ============================================================
   EFFECTS — FILL & STROKE
   ============================================================ */

.fill-current { fill: currentColor; }
.fill-secondary { fill: var(--color-secondary); }
.fill-primary { fill: var(--color-primary); }
.fill-none { fill: none; }

.stroke-current { stroke: currentColor; }

/* ============================================================
   EFFECTS — BOX SHADOW
   ============================================================ */

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05); }

.shadow-primary\/20 { box-shadow: 0 25px 50px -12px rgba(2, 44, 34, 0.2); }
.shadow-black\/20 { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2); }

/* ============================================================
   EFFECTS — TRANSITIONS
   ============================================================ */

.transition-none { transition: none; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Duration */
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes animate-ping {
	75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes animate-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

@keyframes fade-in-up {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-down {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-slide-down {
	animation: slide-down 0.2s ease-out forwards;
}

@keyframes accordion-down {
	from { height: 0; }
	to { height: var(--accordion-panel-height, auto); }
}

@keyframes accordion-up {
	from { height: var(--accordion-panel-height, auto); }
	to { height: 0; }
}

.animate-ping { animation: animate-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: animate-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

/* ============================================================
   COMPONENT CLASSES
   ============================================================ */

/* Section padding */
.section-padding {
	padding-top: 5rem;
	padding-bottom: 5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Glass card */
.glass-card {
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* FOMO badge */
.fomo-badge {
	background-color: #ef4444;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	animation: animate-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Selection */
::selection {
	background-color: rgba(2, 44, 34, 0.1);
	color: var(--color-primary);
}

/* ============================================================
   GROUP HOVER STATES
   ============================================================ */

.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:-translate-y-2 { transform: translateY(-0.5rem); }
.group:hover .group-hover\:-translate-y-3 { transform: translateY(-0.75rem); }
.group:hover .group-hover\:-translate-y-10 { transform: translateY(-2.5rem); }
.group:hover .group-hover\:bg-primary { background-color: var(--color-primary); }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:text-primary { color: var(--color-primary); }
.group:hover .group-hover\:border-primary { border-color: var(--color-primary); }
.group:hover .group-hover\:bg-primary\/5 { background-color: rgba(2, 44, 34, 0.05); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.group:hover .group-hover\:shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0); }

/* Nested group variants */
.group\/card:hover .group-hover\/card\:bg-primary { background-color: var(--color-primary); }
.group\/card:hover .group-hover\/card\:text-white { color: #ffffff; }
.group\/btn:hover .group-hover\/btn\:translate-x-1 { transform: translateX(0.25rem); }

/* ============================================================
   HOVER STATES
   ============================================================ */

.hover\:text-primary:hover { color: var(--color-primary); }
.hover\:text-secondary:hover { color: var(--color-secondary); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-foreground:hover { color: var(--color-foreground); }
.hover\:bg-primary:hover { background-color: var(--color-primary); }
.hover\:bg-primary\/5:hover { background-color: rgba(2, 44, 34, 0.05); }
.hover\:bg-primary\/90:hover { background-color: rgba(2, 44, 34, 0.9); }
.hover\:bg-secondary\/90:hover { background-color: rgba(212, 175, 55, 0.9); }
.hover\:bg-muted:hover { background-color: var(--color-muted); }
.hover\:border-primary:hover { border-color: var(--color-primary); }
.hover\:border-primary\/30:hover { border-color: rgba(2, 44, 34, 0.3); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:no-underline:hover { text-decoration: none; }

/* Focus states */
.focus\:not-sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	padding: initial;
	margin: initial;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.focus\:border-primary:focus { border-color: var(--color-primary); }
.focus\:ring-2:focus { outline: none; box-shadow: 0 0 0 2px rgba(2, 44, 34, 0.2); }
.focus\:ring-primary\/20:focus { box-shadow: 0 0 0 2px rgba(2, 44, 34, 0.2); }
.focus\:z-\[60\]:focus { z-index: 60; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   SCREEN READER ONLY
   ============================================================ */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only:focus {
	position: absolute;
}

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */

/* Alignments */
.alignleft {
	float: left;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.alignright {
	float: right;
	margin-left: 1rem;
	margin-bottom: 1rem;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.alignwide {
	margin-left: -2rem;
	margin-right: -2rem;
	max-width: calc(100% + 4rem);
}

.alignfull {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}

/* Gallery */
.gallery {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.gallery-columns-1 { grid-template-columns: repeat(1, 1fr); }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }
.gallery-item { margin: 0; }
.gallery-item img { width: 100%; height: auto; border-radius: 0.75rem; }

/* Captions */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--color-muted-foreground); font-style: italic; margin-top: 0.5rem; }

/* Sticky post */
.sticky { position: relative; }

/* Bypostauthor */
.bypostauthor { border-left: 3px solid var(--color-secondary); }

/* ============================================================
   WORDPRESS NAV MENU & FOOTER — AGGRESSIVE LIST RESET
   ============================================================ */

/* Kill ALL list bullets in nav and footer — wp_nav_menu generates its own classes */
nav ul,
nav li,
#mobile-menu ul,
#mobile-menu li,
footer ul,
footer li {
	list-style: none !important;
	list-style-type: none !important;
	list-style-image: none !important;
}

nav ul,
#mobile-menu ul,
footer ul {
	margin: 0;
	padding: 0;
}

/* Desktop nav menu */
nav > div > ul {
	display: flex;
	align-items: center;
	gap: 2rem;
}

nav > div > ul > li {
	display: flex;
	align-items: center;
}

nav > div > ul > li > a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-foreground);
	transition: color 0.15s ease;
}

nav > div > ul > li > a:hover {
	color: var(--color-primary);
}

/* Mobile menu — vertical stack */
#mobile-menu ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

#mobile-menu ul > li {
	display: block;
	width: 100%;
	padding: 0.5rem 0;
}

#mobile-menu ul > li > a {
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--color-foreground);
	padding: 0.25rem 0;
}

/* Sub-menu (dropdown) */
.menu-item-has-children {
	position: relative;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 0.75rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: all 0.15s ease;
	z-index: 50;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li {
	padding: 0;
}

.sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: var(--color-foreground);
	transition: background-color 0.15s, color 0.15s;
}

.sub-menu a:hover {
	background-color: rgba(2, 44, 34, 0.05);
	color: var(--color-primary);
}

/* Mobile menu */
#mobile-menu .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: none;
	background: transparent;
	padding-left: 1rem;
}

#mobile-menu .sub-menu a {
	font-size: 0.9375rem;
	color: var(--color-muted-foreground);
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 4rem;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	transition: all 0.15s ease;
}

.pagination a:hover,
.nav-links a:hover {
	background-color: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
}

.pagination .current,
.nav-links .current {
	background-color: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-panel { overflow: hidden; }
.faq-panel.hidden { display: none; }

.faq-icon {
	transition: transform 0.2s ease;
}

/* ============================================================
   PROSE / CONTENT STYLES
   ============================================================ */

.prose {
	color: var(--color-foreground);
	max-width: 65ch;
}

.prose p {
	margin-bottom: 1.25em;
	line-height: 1.75;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
	margin-top: 2em;
	margin-bottom: 0.75em;
	font-family: var(--font-serif);
}

.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; }

.prose ul,
.prose ol {
	margin-bottom: 1.25em;
	padding-left: 1.5em;
}

.prose li {
	margin-bottom: 0.5em;
}

.prose a {
	color: var(--color-primary);
	text-decoration: underline;
	text-decoration-color: var(--color-secondary);
	text-underline-offset: 2px;
}

.prose a:hover {
	color: var(--color-secondary);
}

.prose blockquote {
	border-left: 4px solid var(--color-secondary);
	padding-left: 1.5rem;
	font-style: italic;
	margin: 1.5rem 0;
	color: var(--color-muted-foreground);
}

.prose img {
	border-radius: 0.75rem;
	margin: 1.5rem 0;
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.25em;
}

.prose th,
.prose td {
	border: 1px solid var(--color-border);
	padding: 0.75rem;
	text-align: left;
}

.prose th {
	background-color: var(--color-muted);
	font-weight: 600;
}

.prose code {
	background-color: var(--color-muted);
	padding: 0.125rem 0.375rem;
	border-radius: 0.25rem;
	font-size: 0.875em;
}

.prose pre {
	background-color: var(--color-muted);
	padding: 1rem;
	border-radius: 0.75rem;
	overflow-x: auto;
	margin-bottom: 1.25em;
}

.prose pre code {
	background: none;
	padding: 0;
}

/* Prose sizes */
.prose-sm { font-size: 0.875rem; }
.prose-lg { font-size: 1.125rem; }
.prose-xl { font-size: 1.25rem; }
.prose-2xl { font-size: 1.5rem; }

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
	nav, .live-activity, .faq-panel.hidden, #mobile-menu { display: none !important; }
	.section-padding { padding: 1rem 0 !important; }
	body { font-size: 12pt; line-height: 1.5; }
	a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* ============================================================
   RESPONSIVE — SMALL (640px+)
   ============================================================ */

@media (min-width: 640px) {
	.sm\:flex-row { flex-direction: row; }
	.sm\:flex-col { flex-direction: column; }
	.sm\:items-center { align-items: center; }
	.sm\:items-start { align-items: flex-start; }
	.sm\:justify-center { justify-content: center; }
	.sm\:gap-4 { gap: 1rem; }
	.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.sm\:px-12 { padding-left: 3rem; padding-right: 3rem; }
	.sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
	.sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
	.sm\:text-5xl { font-size: 3rem; line-height: 1; }
	.sm\:text-7xl { font-size: 4.5rem; line-height: 1; }
	.sm\:max-w-md { max-width: 28rem; }
}

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */

@media (min-width: 768px) {
	.md\:block { display: block; }
	.md\:hidden { display: none; }
	.md\:flex { display: flex; }
	.md\:grid { display: grid; }
	.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.md\:col-span-2 { grid-column: span 2 / span 2; }
	.md\:flex-row { flex-direction: row; }
	.md\:flex-row-reverse { flex-direction: row-reverse; }
	.md\:items-start { align-items: flex-start; }
	.md\:text-left { text-align: left; }
	.md\:text-center { text-align: center; }
	.md\:text-5xl { font-size: 3rem; line-height: 1; }
	.md\:text-6xl { font-size: 3.75rem; line-height: 1; }
	.md\:text-7xl { font-size: 4.5rem; line-height: 1; }
	.md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
	.md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
	.md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
	.md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
	.md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
	.md\:whitespace-nowrap { white-space: nowrap; }
	.md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
	.md\:px-24 { padding-left: 6rem; padding-right: 6rem; }
	.md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
	.md\:gap-12 { gap: 3rem; }
	.md\:gap-24 { gap: 6rem; }
	.md\:w-auto { width: auto; }
	.md\:w-48 { width: 12rem; }
	.md\:max-w-xs { max-width: 20rem; }
	.md\:max-w-sm { max-width: 24rem; }

	.section-padding {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */

@media (min-width: 1024px) {
	.lg\:block { display: block; }
	.lg\:hidden { display: none; }
	.lg\:flex { display: flex; }
	.lg\:grid { display: grid; }
	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lg\:col-span-1 { grid-column: span 1 / span 1; }
	.lg\:col-span-2 { grid-column: span 2 / span 2; }
	.lg\:col-span-3 { grid-column: span 3 / span 3; }
	.lg\:text-8xl { font-size: 6rem; line-height: 1; }
	.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.lg\:px-24 { padding-left: 6rem; padding-right: 6rem; }
}

/* ============================================================
   RESPONSIVE — WIDE (1280px+)
   ============================================================ */

@media (min-width: 1280px) {
	.xl\:px-24 { padding-left: 6rem; padding-right: 6rem; }
}
