/*
Theme Name:  Saadeddin Catering Theme
Theme URI:   https://saadeddin.com
Author:      Saadeddin Group
Author URI:  https://saadeddin.com
Description: Official premium luxury theme for Saadeddin Catering — fully integrated with the Saadeddin Catering Buffet Builder plugin. Brand colours inspired by Pantone 343 with gold luxury accents.
Version:     1.0.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      8.0
License:     GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sc-theme
Tags: luxury, catering, premium, green, gold, custom-logo, custom-menu, full-width-template, translation-ready
*/

/* ============================================================
   Global CSS design tokens
   ============================================================ */
:root {
  --sc-primary:        #0F5A43;
  --sc-primary-dark:   #0A3F2F;
  --sc-primary-light:  #1A6E54;
  --sc-primary-xlight: #2A8A6A;
  --sc-gold:           #C9A24A;
  --sc-gold-light:     #D4B578;
  --sc-gold-pale:      #FAF4E8;
  --sc-bg:             #F6F3EE;
  --sc-surface:        #FFFFFF;
  --sc-text:           #1E1E1E;
  --sc-text-mid:       #4A4A4A;
  --sc-text-muted:     #8A8078;
  --sc-border:         #E7E0D6;
  --sc-border-dark:    #CEC5B8;

  --sc-radius-sm:   6px;
  --sc-radius-md:   12px;
  --sc-radius-lg:   20px;
  --sc-radius-xl:   32px;

  --sc-shadow-sm:  0 2px 8px  rgba(15,90,67,.07);
  --sc-shadow-md:  0 6px 24px rgba(15,90,67,.10);
  --sc-shadow-lg:  0 16px 48px rgba(15,90,67,.13);
  --sc-shadow-xl:  0 24px 72px rgba(15,90,67,.16);

  --sc-transition: .28s ease;

  --sc-font-serif: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --sc-font-sans:  'Segoe UI', system-ui, -apple-system, Helvetica, sans-serif;

  --sc-max-width: 1200px;
  --sc-container-pad: clamp(20px, 5vw, 60px);
}

/* ── Base reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sc-font-sans);
  background: var(--sc-bg);
  color: var(--sc-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sc-primary); text-decoration: none; transition: color var(--sc-transition); }
a:hover { color: var(--sc-primary-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sc-font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--sc-primary-dark);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }
