/* Tailwind CSS Fallback - Works without CDN for Strato hosting */

/* Color Variables */
:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --sand: #f5f1eb;
    --sand-dark: #e8e3db;
    --olive: #6b7d47;
    --olive-dark: #556030;
    --olive-light: #8a9d5f;
    --gold: #d4af37;
    --gold-light: #e5c766;
    --gold-dark: #b8941f;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Background Colors */
.bg-sand { background-color: var(--sand) !important; }
.bg-sand-dark { background-color: var(--sand-dark) !important; }
.bg-charcoal { background-color: var(--charcoal) !important; }
.bg-charcoal-light { background-color: var(--charcoal-light) !important; }
.bg-olive { background-color: var(--olive) !important; }
.bg-olive-dark { background-color: var(--olive-dark) !important; }
.bg-olive-light { background-color: var(--olive-light) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-gold-light { background-color: var(--gold-light) !important; }
.bg-white { background-color: #ffffff !important; }
.bg-transparent { background-color: transparent !important; }

/* Text Colors */
.text-charcoal { color: var(--charcoal) !important; }
.text-charcoal-light { color: var(--charcoal-light) !important; }
.text-sand { color: var(--sand) !important; }
.text-sand-dark { color: var(--sand-dark) !important; }
.text-olive { color: var(--olive) !important; }
.text-olive-dark { color: var(--olive-dark) !important; }
.text-olive-light { color: var(--olive-light) !important; }
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.text-white { color: #ffffff !important; }

/* Border Colors */
.border-gold { border-color: var(--gold) !important; }
.border-charcoal-light { border-color: var(--charcoal-light) !important; }
.border-olive { border-color: var(--olive) !important; }

/* Gradients */
.bg-gradient-to-br {
    background-color: var(--charcoal) !important;
    background-image: linear-gradient(to bottom right, var(--charcoal), var(--charcoal-light), var(--charcoal)) !important;
}
.bg-gradient-to-b {
    background-color: var(--sand) !important;
    background-image: linear-gradient(to bottom, var(--sand), var(--sand-dark)) !important;
}
.bg-gradient-to-br.from-sand.to-sand-dark {
    background-color: var(--sand) !important;
    background-image: linear-gradient(to bottom right, var(--sand), var(--sand-dark)) !important;
}
.bg-gradient-to-br.from-charcoal.via-charcoal-light.to-charcoal {
    background-color: var(--charcoal) !important;
    background-image: linear-gradient(to bottom right, var(--charcoal), var(--charcoal-light), var(--charcoal)) !important;
}
.bg-gradient-to-br.from-olive.to-olive-dark {
    background-color: var(--olive) !important;
    background-image: linear-gradient(to bottom right, var(--olive), var(--olive-dark)) !important;
}
.bg-gradient-to-br.from-charcoal-light.to-charcoal {
    background-color: var(--charcoal-light) !important;
    background-image: linear-gradient(to bottom right, var(--charcoal-light), var(--charcoal)) !important;
}

/* Opacity variants */
.bg-charcoal\/95 { background-color: rgba(26, 26, 26, 0.95) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95) !important; }
.text-sand\/90 { color: rgba(245, 241, 235, 0.9) !important; }
.bg-gold\/20 { background-color: rgba(212, 175, 55, 0.2) !important; }
.bg-olive\/20 { background-color: rgba(107, 125, 71, 0.2) !important; }
.bg-olive\/30 { background-color: rgba(107, 125, 71, 0.3) !important; }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2) !important; }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1) !important; }
.text-gold\/70 { color: rgba(212, 175, 55, 0.7) !important; }

/* Layout */
.fixed { position: fixed !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.bottom-8 { bottom: 2rem; }
.left-1\/2 { left: 50%; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.flex { display: flex !important; }
.hidden { display: none !important; }
.grid { display: grid !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }

/* Flexbox */
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

/* 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)); }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-14 { padding: 3.5rem; }
.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; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.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; }
.pt-3 { padding-top: 0.75rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-12 { padding-bottom: 3rem; }
.pt-36 { padding-top: 9rem; }
.pb-16 { padding-bottom: 4rem; }
.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-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-18 { margin-left: 4.5rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-56 { height: 14rem; }
.h-80 { height: 20rem; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* 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; }
.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; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-display { font-family: 'Playfair Display', serif; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.underline { text-decoration: underline; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.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); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }

/* Effects */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.opacity-5 { opacity: 0.05; }
.overflow-hidden { overflow: hidden; }

/* Transforms */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

/* Transitions */
.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-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover States */
.hover\:bg-gold-light:hover { background-color: var(--gold-light) !important; }
.hover\:bg-gold:hover { background-color: var(--gold) !important; }
.hover\:bg-olive-dark:hover { background-color: var(--olive-dark) !important; }
.hover\:bg-charcoal-light:hover { background-color: var(--charcoal-light) !important; }
.hover\:bg-sand:hover { background-color: var(--sand) !important; }
.hover\:text-gold:hover { color: var(--gold) !important; }
.hover\:text-gold-light:hover { color: var(--gold-light) !important; }
.hover\:text-olive-dark:hover { color: var(--olive-dark) !important; }
.hover\:text-charcoal:hover { color: var(--charcoal) !important; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.group:hover .group-hover\:bg-black\/10 { background-color: rgba(0, 0, 0, 0.1) !important; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-olive-dark { color: var(--olive-dark) !important; }

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.animate-bounce {
    animation: bounce 1s infinite;
}

/* Focus */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* Responsive - Mobile First */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .sm\:pb-16 { padding-bottom: 4rem; }
    .sm\:pt-36 { padding-top: 9rem; }
    .sm\:mb-12 { margin-bottom: 3rem; }
    .sm\:flex-row { flex-direction: row !important; }
    .sm\:w-auto { width: auto; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:block { display: block !important; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none !important; }
    .md\:flex { display: flex !important; }
    .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-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-16 { gap: 4rem; }
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    .md\:p-7 { padding: 1.75rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:h-96 { height: 24rem; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:text-left { text-align: left !important; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:space-x-8 > * + * { margin-left: 2rem; }
}

