/* Import CSS from build */
/* Base styles matching your Tailwind CSS setup */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom CSS Variables - Your brand colors */
:root {
    --olive-900: hsl(80, 30%, 20%);
    --olive-800: hsl(85, 25%, 25%);
    --olive-700: hsl(90, 25%, 35%);
    --olive-600: hsl(85, 25%, 45%);
    --olive-100: hsl(85, 40%, 92%);
    --cream-500: hsl(45, 50%, 85%);
    --cream-600: hsl(45, 45%, 75%);
    --cream-50: hsl(48, 60%, 96%);
    --cream-200: hsl(45, 55%, 88%);
}

/* Utility Classes */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Flexbox utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

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

/* Responsive grid */
@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\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:hidden { display: none; }
}

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-index */
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-6 { width: 1.5rem; }
.h-auto { height: auto; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-6 { width: 1.5rem; height: 1.5rem; }
.h-5 { width: 1.25rem; height: 1.25rem; }
.h-3 { width: 0.75rem; height: 0.75rem; }
.h-8 { width: 2rem; height: 2rem; }

/* Max width */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-md { max-width: 28rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-10 { margin-left: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.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-16 { margin-bottom: 4rem; }

/* Padding */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-16 { padding-top: 4rem; }
.pl-6 { padding-left: 1.5rem; }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

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

@media (min-width: 1024px) {
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Colors */
.text-white { color: #ffffff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }

.text-olive-900 { color: var(--olive-900); }
.text-olive-800 { color: var(--olive-800); }
.text-olive-600 { color: var(--olive-600); }
.text-cream-500 { color: var(--cream-500); }

.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-600 { background-color: #4b5563; }
.bg-olive-900 { background-color: var(--olive-900); }
.bg-olive-800 { background-color: var(--olive-800); }
.bg-olive-100 { background-color: var(--olive-100); }
.bg-cream-50 { background-color: var(--cream-50); }
.bg-cream-500 { background-color: var(--cream-500); }
.bg-cream-600 { background-color: var(--cream-600); }
.bg-yellow-50 { background-color: #fefce8; }

.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-olive-900\/90 { --tw-gradient-from: hsla(80, 30%, 20%, 0.9); --tw-gradient-to: rgba(56, 66, 36, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-olive-800\/70 { --tw-gradient-to: hsla(85, 25%, 25%, 0.7); }
.from-olive-900 { --tw-gradient-from: var(--olive-900); --tw-gradient-to: rgba(56, 66, 36, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-olive-800 { --tw-gradient-to: var(--olive-800); }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }

.border-white { border-color: #ffffff; }
.border-gray-200 { border-color: #e5e7eb; }
.border-yellow-200 { border-color: #fde047; }
.border-olive-800 { border-color: var(--olive-800); }
.border-cream-500 { border-color: var(--cream-500); }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Hover effects */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-olive-900:hover { color: var(--olive-900); }
.hover\:text-gray-700:hover { color: #374151; }
.hover\:bg-olive-800:hover { background-color: var(--olive-800); }
.hover\:bg-cream-500:hover { background-color: var(--cream-500); }
.hover\:bg-cream-600:hover { background-color: var(--cream-600); }
.hover\:bg-gray-600:hover { background-color: #4b5563; }
.hover\:border-cream-500:hover { border-color: var(--cream-500); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Component-specific styles */

/* Navigation */
nav {
    backdrop-filter: blur(10px);
}

/* Hero background image overlay */
.hero-bg-overlay {
    background: linear-gradient(rgba(56, 66, 36, 0.9), rgba(69, 77, 43, 0.7));
}

/* Contact form and interactive elements */
button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form elements */
input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--olive-900);
    box-shadow: 0 0 0 2px rgba(56, 66, 36, 0.1);
}

/* Lists */
ul {
    list-style: none;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Custom utilities for specific components */
.min-h-screen {
    min-height: 100vh;
}

.max-h-screen {
    max-height: 100vh;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* Responsive design helpers */
@media (max-width: 767px) {
    .text-4xl { font-size: 2rem; line-height: 2.25rem; }
    .text-3xl { font-size: 1.75rem; line-height: 2rem; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .py-16 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-20 { padding-top: 4rem; padding-bottom: 4rem; }
    .py-24 { padding-top: 5rem; padding-bottom: 5rem; }
    .gap-4 { gap: 0.75rem; }
    .space-x-8 > * + * { margin-left: 1rem; }
}


/* Icons alignment */
i[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure proper icon sizing within flex containers */
.flex i[data-lucide] {
    flex-shrink: 0;
}

/* Contact form specific styling */
#contact-form-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

/* Modal styling */
#contact-modal {
    backdrop-filter: blur(4px);
}

/* Multi-step form progress */
.form-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: var(--olive-900);
    transition: width 0.3s ease;
}

/* Form step styling */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Footer improvements */
footer a:hover {
    color: #ffffff;
}