/**
 * ZMINOR™ Client-Specific Styles
 *
 * Clean, elegant white theme with refined gold accents.
 * 
 * ⚠️ IMPORTANT: This file is for LEGACY OVERRIDES ONLY.
 * 
 * SOURCE OF TRUTH FOR STYLING:
 * 1. TAILWIND CSS - Use Tailwind utility classes in components (primary method)
 * 2. DESIGN TOKENS - src/clients/zminor/styles/tokens.css - Central design variables
 * 3. TAILWIND CONFIG - tailwind.config.js - Extension of Tailwind with custom luxury tokens
 * 
 * This file should only contain:
 * - Font imports
 * - Base body/typography styles
 * - Scrollbar styling (not supported by Tailwind)
 * - Animation keyframes
 * - Announcement bar overrides (shared component)
 * 
 * DO NOT add new component-specific styles here. Use Tailwind classes instead.
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ========================================
   BASE STYLES
   ======================================== */

body[data-client="zminor"] {
  font-family: 'Inter', 'system-ui', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-client="zminor"] h1,
body[data-client="zminor"] h2,
body[data-client="zminor"] h3,
body[data-client="zminor"] h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */

body[data-client="zminor"] input,
body[data-client="zminor"] select,
body[data-client="zminor"] textarea {
  font-family: 'Inter', 'system-ui', sans-serif;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #ffffff;
  color: #1a1a1a;
  transition: border-color 300ms ease;
}

body[data-client="zminor"] input:focus,
body[data-client="zminor"] select:focus,
body[data-client="zminor"] textarea:focus {
  border-color: #db9916;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* ========================================
   ANNOUNCEMENT BAR (Shared Component Override)
   ======================================== */

body[data-client="zminor"] .announcement-bar {
  background: #f8f5f0 !important;
  border-bottom: 1px solid #e5e5e5;
}

body[data-client="zminor"] .announcement-bar * {
  color: #666666 !important;
}

body[data-client="zminor"] .announcement-bar a {
  color: #db9916 !important;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

body[data-client="zminor"]::-webkit-scrollbar {
  width: 8px;
}

body[data-client="zminor"]::-webkit-scrollbar-track {
  background: #f5f5f5;
}

body[data-client="zminor"]::-webkit-scrollbar-thumb {
  background: #db9916;
  border-radius: 4px;
}

body[data-client="zminor"]::-webkit-scrollbar-thumb:hover {
  background: #b08f1f;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-client="zminor"] .animate-fade-in-up {
  animation: fadeInUp 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Font serif class for components */
body[data-client="zminor"] .font-serif {
  font-family: 'Playfair Display', 'Georgia', serif;
}