/* Minimal CSS fallback when Tailwind CDN is unavailable */

/* Colors */
:root {
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --slate-800: #1f2937;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
}

/* Base */
html.scroll-smooth { scroll-behavior: smooth; }
html { -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji"; color: var(--slate-800); background: #f8f9fa; }
.font-lora { font-family: 'Lora', serif; }

/* Layout helpers */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.block { display: block; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.w-full { width: 100%; }
.h-64 { height: 16rem; }
.object-cover { object-fit: cover; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.15); }
.bg-white { background: #fff; }
.text-slate-800 { color: var(--slate-800); }
.text-white { color: #ffffff; }
.text-gray-800 { color: #1f2937; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: var(--gray-600); }
.text-red-600 { color: var(--red-600); }
.bg-red-600 { background: var(--red-600); color: #fff; }
.hover\:bg-red-700:hover { background: var(--red-700); }
.hover\:text-red-600:hover { color: var(--red-600); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.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-7xl { font-size: 4.5rem; line-height: 1; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.p-8 { padding: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.rounded-full { border-radius: 9999px; }
.transition { transition: all .2s ease; }
.leading-tight { line-height: 1.1; }
.max-w-4xl { max-width: 56rem; }
.float-right { float: right; }

/* Position helpers */
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

/* Responsive helpers for md: breakpoint (768px) */
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
  .md\:items-center { align-items: center !important; }
  .md\:w-1\/2 { width: 50% !important; }
  .md\:p-12 { padding: 3rem !important; }
  .md\:grid-cols-2 { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; }
}

/* Header */
header { background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
header a { color: inherit; text-decoration: none; }

/* Hero */
.hero-bg { color: #fff; }
.hero-bg a { display: inline-block; background: var(--red-600); color: #fff; padding: 0.75rem 2rem; border-radius: 9999px; font-weight: 700; text-decoration: none; }
.hero-bg a:hover { background: var(--red-700); }

/* Sections */
section { padding-top: 4rem; padding-bottom: 4rem; }

/* Gallery */
#gallery .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
#gallery img { width: 100%; height: 16rem; object-fit: cover; border-radius: 0.5rem; box-shadow: 0 10px 15px rgba(0,0,0,0.1); }

/* Generic grid helpers */
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }

/* Hover backgrounds */
.hover\:bg-gray-100:hover { background: var(--gray-100); }

/* Cards / boxes */
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.bg-gray-800 { background: #1f2937; color: #fff; }
.text-gray-400 { color: #9ca3af; }


