/* Vinch Global - Custom CSS */

/* Container */
.container { max-width: 80rem; margin:0 auto; padding:0 1.25rem; }

/* Gray Colors */
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-200 { background-color: #e5e7eb; }
.border-gray-200 { border-color: #e5e7eb; }
.text-gray-800 { color: #1f2937; }

/* Red Colors */
.text-red-500 { color: #ef4444; }
.hover\:text-red-700:hover { color: #b91c1c; }

/* Base body font */
body { font-size: 1.0625rem; font-weight: 700; }

/* Font Weights */
.font-semibold { font-weight: 700; }

/* Borders */
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }

/* Spacing */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.md\:grid-cols-3 { } 
@media (min-width: 768px) {
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:p-12 { padding: 3rem; }
    .md\:flex { display: flex; }
}
.lg\:grid-cols-5 { }
@media (min-width: 1024px) {
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
}
.md\:p-10 { }
@media (min-width: 768px) {
    .md\:p-10 { padding: 2.5rem; }
}

/* Text Balance */
.text-balance { text-wrap: balance; }

/* Colors */
.text-foreground { color: #2c3e50; }
.text-muted { color: #95a5a6; }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/85 { color: rgba(255,255,255,0.85); }
.text-secondary-foreground\/85 { color: rgba(39, 174, 96, 0.85); }

.bg-foreground { background-color: #2c3e50; }
.bg-muted\/40 { background-color: rgba(149, 165, 166, 0.4); }
.border-border { border-color: #e5e7eb; }
.bg-leaf\/15 { background-color: rgba(39, 174, 96, 0.15); }
.bg-primary\/15 { background-color: rgba(230, 126, 34, 0.15); }
.bg-amber-100 { background-color: #fef3c7; }
.text-amber-800 { color: #92400e; }
.bg-leaf\/30 { background-color: rgba(39, 174, 96, 0.3); }
.bg-secondary\/95 { background-color: rgba(39, 174, 96, 0.95); }
.bg-black\/85 { background-color: rgba(0,0,0,0.85); }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }

.text-primary { color: #e67e22; }
.text-secondary { color: #27ae60; }
.bg-secondary { background-color: #27ae60; }
.bg-primary { background-color: #e67e22; }

/* Gradients */
.bg-gradient-warm { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); }
.bg-gradient-leaf { background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%); }
.bg-gradient-cream { background: linear-gradient(180deg, #fef9f0 0%, #fdf2e9 100%); }

/* Shadows */
.shadow-warm { box-shadow: 0 20px 50px -20px rgba(230, 126, 34, 0.45); }
.shadow-leaf { box-shadow: 0 20px 50px -20px rgba(39, 174, 96, 0.4); }
.shadow-soft { box-shadow: 0 10px 40px -15px rgba(0,0,0,0.18); }

/* Pattern */
.pattern-dots {
    background-image: radial-gradient(rgba(46, 204, 113, 0.22) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* Aspect Ratio */
.aspect-4-3 { aspect-ratio: 4/3; }

/* Backdrop */
.backdrop-blur { backdrop-filter: blur(4px); }

/* Opacity Helpers */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Display */
.hidden { display: none; }
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:block { display: block; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:items-center { align-items: center; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    .lg\:block { display: block; }
    .lg\:right-8 { right: 2rem; }
    .lg\:top-28 { top: 7rem; }
}
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .sm\:text-left { text-align: left; }
}
.text-sm { font-size: 1rem; }
.text-xs { font-size: 1rem; }
.text-lg { font-size: 1.25rem; }
.text-base { font-size: 1.125rem; }
.text-xl { font-size: 1.5rem; }
.text-2xl { font-size: 1.75rem; }
.text-3xl { font-size: 2.25rem; }
.text-4xl { font-size: 2.75rem; }
.text-5xl { font-size: 3.75rem; }
.text-9xl { font-size: 9rem; }
.bg-cream { background-color: #fdf2e9; }
.text-6xl { font-size: 4.5rem; }
.text-7xl { font-size: 5rem; }

/* Mobile font boost */
@media (max-width: 767px) {
    body { font-size: 1.25rem; }
    .text-xs { font-size: 1.125rem; }
    .text-sm { font-size: 1.1875rem; }
    .text-base { font-size: 1.3125rem; }
    .text-lg { font-size: 1.5rem; }
    .text-xl { font-size: 1.75rem; }
    .text-2xl { font-size: 2rem; }
    .text-3xl { font-size: 2.75rem; }
    .text-4xl { font-size: 3.25rem; }
}

.font-medium { font-weight: 600; }
.font-semibold { font-weight: 700; }
.font-display { font-family: 'Fraunces', Georgia, serif; }

.uppercase { text-transform: uppercase; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-wider { letter-spacing: 0.05em; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.space-y-4 > * + * { margin-top: 1rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }

.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.bottom-0 { bottom: 0; }
.right-5 { right: 1.25rem; }
.top-24 { top: 6rem; }
.z-10 { z-index: 10; }

.overflow-hidden { overflow: hidden; }

.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-56 { height: 14rem; }
.h-\[28rem\] { height: 28rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-11 { width: 2.75rem; }
.w-14 { width: 3.5rem; }
.w-full { width: 100%; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.object-cover { object-fit: cover; }

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }

.hover\:opacity-90:hover { opacity: 0.9; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.whitespace-nowrap { white-space: nowrap; }
.text-\[11px\] { font-size: 15px; }
.text-5xl { font-size: 3.75rem; }

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-14px) rotate(2deg); }
}
.animate-float-slow { animation: float-slow 7s ease-in-out infinite; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee { overflow: hidden; }
.marquee-inner { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 40s linear infinite; }

/* Slideshow */
.slideshow { position: relative; }
.slide { position: absolute; inset: 0; transition: opacity 1s; }

/* Hero */
.hero-section { position: relative; height: 88vh; min-height: 640px; width: 100%; overflow: hidden; background: #1a1a1a; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55), rgba(0,0,0,0.2)); }
.hero-overlay-bottom { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent); }
.hero-content { position: relative; max-width: 80rem; margin: 0 auto; height: 100%; display: flex; align-items: center; padding: 2.5rem 1.25rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); text-align: left; } }

/* Cards */
.card { border-radius: 1.5rem; border: 1px solid #e5e7eb; background: #fff; padding: 1.75rem; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px -15px rgba(0,0,0,0.18); }

/* Product Cards */
.product-card { border-radius: 1.5rem; border: 1px solid #e5e7eb; background: #fff; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px -15px rgba(0,0,0,0.18); }
.product-card-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f5f5f5; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.product-card-tag { display: inline-block; padding: 0.2rem 0.75rem; border-radius: 9999px; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-title { margin-top: 0.6rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.4rem; color: #2c3e50; line-height: 1.3; }
.product-card-desc { margin-top: 0.5rem; font-size: 1rem; line-height: 1.5; color: #95a5a6; }
.product-card-meta { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; }
.product-card-label { font-size: 1rem; color: #95a5a6; }
.product-card-label strong { color: #2c3e50; font-weight: 600; }

/* Transitions & Group Hover */
.transition-transform { transition: transform 0.2s; }
.group-hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.transition-transform { transition: transform 0.2s ease; }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); color: #fff;
    padding: 1rem 1.75rem; font-size: 1rem; font-weight: 600;
    box-shadow: 0 20px 50px -20px rgba(230, 126, 34, 0.45); transition: transform 0.2s;
    text-decoration: none; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px); color: #fff; padding: 1rem 1.75rem;
    font-size: 1rem; font-weight: 600; transition: background 0.2s; text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* Badge */
.badge {
    display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1);
    padding: 0.375rem 1rem; font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em; color: #fff; backdrop-filter: blur(4px);
}

/* Stats */
.stats-bar { border-bottom: 1px solid #e5e7eb; background: #fff; padding: 2.5rem 0; }

/* Showcase */
.showcase-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
.showcase-grid article { position: relative; overflow: hidden; border-radius: 1.5rem; }
.showcase-grid article img { height: 28rem; width: 100%; object-fit: cover; transition: transform 0.7s; }
.showcase-grid article:hover img { transform: scale(1.05); }

/* Forms */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
    .form-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sections */
.section { padding: 6rem 0; }
.page-hero { text-align: center; padding: 5rem 1.25rem; }

/* Footer */
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem;
    padding-top: 1.5rem; text-align: center; font-size: 1rem; color: rgba(255,255,255,0.5);
}

/* Admin */
.admin-body { background: #f5f5f5; }
.admin-container { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.admin-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 1.5rem; }
.admin-nav { background: #1a1a1a; padding: 1rem 0; margin-bottom: 2rem; }
.admin-nav a { color: white; margin-right: 1.5rem; font-size: 1rem; text-decoration: none; }
.admin-nav a:hover { color: #e67e22; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #eee; }
.admin-table th { background: #f9f9f9; font-weight: 600; font-size: 1rem; text-transform: uppercase; }
.btn-admin { padding: 0.5rem 1rem; border-radius: 0.5rem; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; text-decoration: none; display: inline-block; color: white; }
.btn-save { background: #e67e22; }
.btn-edit { background: #3b82f6; }
.btn-delete { background: #ef4444; }
.btn-cancel { background: #6b7280; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: 0.5rem; font-size: 1rem; }
.form-group textarea { min-height: 100px; }
.login-box { max-width: 400px; margin: 5rem auto; background: white; padding: 2rem; border-radius: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.error { color: #ef4444; font-size: 1rem; margin-top: 0.5rem; }
.success { color: #10b981; font-size: 1rem; margin-top: 0.5rem; }
.json-editor { width: 100%; min-height: 500px; font-family: monospace; font-size: 15px; padding: 1rem; border: 1px solid #ddd; border-radius: 0.5rem; background: #f8f8f8; }
