/* Julian Sandt WordPress Theme - Production Ready CSS */
/* Complete Tailwind-compatible utilities compiled */

/* ============================================
   CSS VARIABLES - Design System (HSL Colors)
   ============================================ */
:root {
  /* Main Colors */
  --background: 0 0% 100%;
  --foreground: 207 60% 8%;
  --card: 0 0% 100%;
  --card-foreground: 207 60% 8%;
  --popover: 0 0% 100%;
  --popover-foreground: 207 60% 8%;
  --primary: 207 60% 8%;
  --primary-foreground: 0 0% 100%;
  --secondary: 214 24% 96%;
  --secondary-foreground: 207 60% 8%;
  --muted: 214 24% 96%;
  --muted-foreground: 0 0% 18%;
  --accent: 42 37% 48%;
  --accent-foreground: 207 60% 8%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 210 40% 91%;
  --input: 210 40% 91%;
  --ring: 207 60% 8%;
  --radius: 0.75rem;
  
  /* Custom Tokens */
  --navy: 218 60% 15%;
  --slate: 215 20% 28%;
  --gold: 38 30% 46%;
  --dark-gray: 0 0% 18%;
  --text-primary: 217 33% 10%;
  --text-secondary: 215 14% 34%;
  --background-light: 210 40% 98%;
  --border-color: 214 32% 81%;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; /* Prevent text size adjustment on mobile */
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Prevent horizontal overflow on mobile */
* {
  max-width: 100%;
}

/* Better mobile video embeds */
iframe {
  max-width: 100%;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

/* Grid */
.grid { display: grid; }
.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)); }

/* Gap */
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Space */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* ============================================
   SPACING UTILITIES
   ============================================ */
/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-6 { padding-left: 1.5rem; }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.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; }
.mb-20 { margin-bottom: 5rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-16 { width: 4rem; }
.w-12 { width: 3rem; }
.w-6 { width: 1.5rem; }
.w-4 { width: 1rem; }
.w-px { width: 1px; }
.h-16 { height: 4rem; }
.h-14 { height: 3.5rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-12 { height: 3rem; }
.h-6 { height: 1.5rem; }
.h-4 { height: 1rem; }
.h-px { height: 1px; }
.h-full { height: 100%; }

/* Max Width */
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
/* Font Size */
.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-\[15px\] { font-size: 15px; }
.text-\[42px\] { font-size: 42px; }


/* Font Weight */
.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 Family */
.font-sans { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }

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

/* 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; }

/* Text Transform */
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

/* ============================================
   COLOR UTILITIES
   ============================================ */
/* Text Colors */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-navy { color: hsl(var(--navy)); }
.text-gold { color: hsl(var(--gold)); }
.text-text-secondary { color: hsl(var(--text-secondary)); }
.text-dark-gray { color: hsl(var(--dark-gray)); }
.text-accent-blue { color: hsl(218 71% 32%); }
.text-white { color: hsl(0 0% 100%) !important; }
.text-white\/70 { color: hsl(0 0% 100% / 0.7); }
.text-white\/75 { color: hsl(0 0% 100% / 0.75); }
.text-white\/80 { color: hsl(0 0% 100% / 0.8); }
.text-white\/85 { color: hsl(0 0% 100% / 0.85); }
.text-white\/90 { color: hsl(0 0% 100% / 0.9); }

/* Background Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-background-light { background-color: hsl(var(--background-light)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-navy { background-color: hsl(var(--navy)); }
.bg-gold { background-color: hsl(var(--gold)); }
.bg-border-color { background-color: hsl(var(--border-color)); }
.bg-white { background-color: hsl(0 0% 100%); }
.bg-white\/90 { background-color: hsl(0 0% 100% / 0.9); }
.bg-white\/85 { background-color: hsl(0 0% 100% / 0.85); }

/* Background Opacity */
.bg-accent\/5 { background-color: hsl(var(--accent) / 0.05); }
.bg-secondary\/5 { background-color: hsl(var(--secondary) / 0.05); }
.bg-gold\/10 { background-color: hsl(var(--gold) / 0.10); }
.bg-gold\/90 { background-color: hsl(var(--gold) / 0.90); }
.bg-navy\/75 { background-color: hsl(var(--navy) / 0.75); }
.bg-transparent { background-color: transparent; }

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-primary\/90 { --tw-gradient-from: hsl(var(--primary) / 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-primary\/80 { --tw-gradient-via: hsl(var(--primary) / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.to-secondary\/90 { --tw-gradient-to: hsl(var(--secondary) / 0.9); }

/* Border Colors */
.border-primary { border-color: hsl(var(--primary)); }
.border-gold { border-color: hsl(var(--gold)); }
.border-border-color { border-color: hsl(var(--border-color)); }
.border-white { border-color: hsl(0 0% 100%); }
.border-white\/20 { border-color: hsl(0 0% 100% / 0.2); }

/* ============================================
   BORDER UTILITIES
   ============================================ */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================
   SHADOW UTILITIES
   ============================================ */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* ============================================
   TRANSITION & ANIMATION UTILITIES
   ============================================ */
.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; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; 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-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ============================================
   MOBILE TOUCH UTILITIES
   ============================================ */
/* Better touch targets for mobile */
button, a, input, select, textarea {
  touch-action: manipulation; /* Prevent double-tap zoom */
}

/* Smooth momentum scrolling on iOS */
.overflow-scroll,
.overflow-y-scroll,
.overflow-x-scroll {
  -webkit-overflow-scrolling: touch;
}

/* ============================================
   OBJECT & IMAGE UTILITIES
   ============================================ */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* ============================================
   VISIBILITY UTILITIES
   ============================================ */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Position helpers */
.left-0 { left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-1\/2 { left: 50%; }

/* Transform helpers */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Aspect Ratio */
.aspect-video { aspect-ratio: 16 / 9; }

/* Line Clamp */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   CUSTOM COMPONENTS
   ============================================ */
/* Section Styles */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.container-padding {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Responsive overrides for section and container padding */
@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .container-padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.px-16 { padding-left: 4rem; padding-right: 4rem; }

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: hsl(var(--navy));
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 2.25rem;
  }
}

/* Card Component */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Background Utilities for Sections */
.hero-bg {
  background-image: url('../images/julian-sandt-hero.jpg');
  background-size: cover;
  background-position: center;
}

.why-paraguay-bg {
  background-image: url('../images/asuncion-skyline.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.why-paraguay-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background) / 0.95), hsl(var(--background) / 0.9));
  z-index: 0;
}

.quote-bg {
  background-image: url('../images/groundbreaking-ceremony.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.quote-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(var(--secondary) / 0.95), hsl(var(--secondary) / 0.9));
  z-index: 0;
}

/* Animation Placeholder */
.animate-on-scroll {
  /* Will be handled by JavaScript */
}

/* ============================================
   HOVER STATES
   ============================================ */
/* Background Hover */
.hover\:bg-white:hover { background-color: hsl(0 0% 100%); }
.hover\:bg-white\/90:hover { background-color: hsl(0 0% 100% / 0.9); }
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:bg-primary\/90:hover { background-color: hsl(var(--primary) / 0.9); }
.hover\:bg-gold:hover { background-color: hsl(var(--gold)); }
.hover\:bg-gold\/90:hover { background-color: hsl(var(--gold) / 0.9); }
.hover\:bg-transparent:hover { background-color: transparent; }

/* Text Hover */
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-white:hover { color: hsl(0 0% 100%) !important; }
.hover\:text-gold:hover { color: hsl(var(--gold)); }
.hover\:text-navy:hover { color: hsl(var(--navy)); }
.hover\:underline:hover { text-decoration: underline; }

/* Shadow Hover */
.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ============================================
   MOBILE-FIRST RESPONSIVE UTILITIES
   ============================================ */

/* Mobile Base Styles (< 640px) */
/* Ensure touch targets are at least 44x44px for better mobile UX */
a, button, .button {
  min-height: 44px;
  min-width: 44px;
}

/* Better mobile spacing */
@media (max-width: 639px) {
  .section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .container-padding {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* Mobile text sizes */
  h1 {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
  }
  
  h2, .section-heading {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  
  h3 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
  }
  
  /* Mobile button sizing */
  .inline-flex {
    width: 100%;
    justify-content: center;
  }
  
  /* Mobile video containers */
  .aspect-video {
    margin-bottom: 1rem;
  }
  
  /* Mobile gap adjustments */
  .gap-12 {
    gap: 2rem;
  }
  
  .gap-8 {
    gap: 1.5rem;
  }
  
  /* Mobile grid to single column */
  .grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Hide desktop-only elements on mobile */
  .md\:block,
  .md\:flex,
  .md\:grid {
    display: block !important;
  }
  
  /* Mobile text alignment */
  .md\:text-right,
  .md\:text-left {
    text-align: center !important;
  }
}

/* ============================================
   RESPONSIVE UTILITIES - Small Screens (640px+)
   ============================================ */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
}

/* ============================================
   RESPONSIVE UTILITIES - Medium Screens (768px+)
   ============================================ */
@media (min-width: 768px) {
  .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\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-\[42px\] { font-size: 42px; }
  
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:text-center { text-align: center; }
  
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  
  .md\:left-1\/2 { left: 50%; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .container-padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  /* Reset mobile button width */
  .inline-flex {
    width: auto;
  }
}

/* ============================================
   RESPONSIVE UTILITIES - Large Screens (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  
  .lg\:block { display: block; }
  
  .lg\:text-left { text-align: left; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  
  .lg\:justify-start { justify-content: flex-start; }
  
  .lg\:gap-20 { gap: 5rem; }
}
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .no-print { display: none; }
}