/*
Theme Name: Business Platform Theme
Theme URI: https://example.com
Author: Business Platform
Author URI: https://example.com
Description: Responsive WordPress theme for multi-client business directory, menus, orders, bookings, social links, QR sharing, and SEO-ready pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: business-platform-theme
*/

:root {
  --bp-bg: #f7f3ec;
  --bp-ink: #18201b;
  --bp-muted: #6e746d;
  --bp-card: #fffaf1;
  --bp-line: #e4d8c8;
  --bp-primary: #0f7c66;
  --bp-primary-dark: #075542;
  --bp-accent: #e2a84b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bp-bg);
  color: var(--bp-ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.bp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bp-line);
}
.bp-wrap { width: min(1180px, calc(100% - 32px)); margin: auto; }
.bp-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.bp-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; }
.bp-brand img { width: 48px; height: 48px; border-radius: 16px; object-fit: cover; }
.bp-menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--bp-muted); font-size: 14px; }
.bp-button, button.bp-button, input.bp-button {
  border: 0;
  border-radius: 999px;
  background: var(--bp-primary);
  color: white;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s ease;
}
.bp-button:hover { background: var(--bp-primary-dark); transform: translateY(-1px); }
.bp-button.secondary { background: #fff; color: var(--bp-primary-dark); border: 1px solid var(--bp-line); }
.bp-main { min-height: 70vh; }
.bp-hero { padding: 72px 0 46px; }
.bp-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.bp-kicker { color: var(--bp-primary); font-weight: 800; letter-spacing: .04em; }
.bp-title { font-size: clamp(36px, 6vw, 72px); line-height: 1.05; margin: 12px 0 18px; letter-spacing: -0.05em; }
.bp-subtitle { font-size: 18px; color: var(--bp-muted); max-width: 680px; }
.bp-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-line);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(45, 36, 22, .08);
}
.bp-section { padding: 42px 0; }
.bp-grid { display: grid; gap: 18px; }
.bp-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bp-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bp-client-card { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.bp-client-logo { width: 76px; height: 76px; border-radius: 24px; object-fit: cover; background: white; border: 1px solid var(--bp-line); }
.bp-chip { display: inline-flex; border: 1px solid var(--bp-line); border-radius: 999px; padding: 6px 10px; color: var(--bp-muted); font-size: 13px; background: rgba(255,255,255,.65); }
.bp-form { display: grid; gap: 12px; }
.bp-input, .bp-form input, .bp-form textarea, .bp-form select {
  width: 100%;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
  color: var(--bp-ink);
  padding: 12px 14px;
  font: inherit;
}
.bp-menu-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 14px; border: 1px solid var(--bp-line); border-radius: 18px; background: #fff; }
.bp-price { font-weight: 900; color: var(--bp-primary-dark); }
.bp-footer { border-top: 1px solid var(--bp-line); padding: 28px 0; color: var(--bp-muted); }
.bp-dashboard { direction: rtl; }
.bp-dashboard-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.bp-notice { padding: 12px 14px; border-radius: 16px; background: #e9f7f2; color: #075542; border: 1px solid #b9e6d6; margin: 12px 0; }
@media (max-width: 900px) {
  .bp-hero-grid, .bp-grid.cols-3, .bp-grid.cols-2 { grid-template-columns: 1fr; }
  .bp-nav { align-items: flex-start; flex-direction: column; }
  .bp-title { letter-spacing: -0.03em; }
}
