@import url('fonts.css');

:root {
  /* Brand colors */
  --c-primary: #C00A27;
  --c-primary-hover: #98081E;
  --c-primary-soft: rgba(192, 10, 39, 0.06);
  --c-primary-glow: rgba(192, 10, 39, 0.18);
  
  /* Secondary / Accent */
  --c-accent: #D4AF37; /* Champagne Gold */
  --c-accent-hover: #B5952F;
  --c-accent-soft: rgba(212, 175, 55, 0.1);

  /* Surfaces */
  --c-bg: #F8F9FA;
  --c-surface: #FFFFFF;
  --c-surface-muted: #F3F4F6;
  --c-surface-soft: rgba(255, 255, 255, 0.82);
  --c-surface-glass: rgba(255, 255, 255, 0.75);

  /* Text and borders */
  --c-text: #111827; /* Deep Charcoal */
  --c-text-light: #4B5563; /* Refined Slate */
  --c-text-muted: #9CA3AF;
  --c-border: #E5E7EB;
  --c-border-soft: rgba(17, 24, 39, 0.06);
  --c-border-strong: rgba(17, 24, 39, 0.12);

  /* Semantic colors */
  --c-success: #059669;
  --c-warning: #D97706;
  --c-danger: #DC2626;
  --c-whatsapp: #16A34A;

  /* Typography */
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-display: clamp(2.2rem, 4.6vw, 3.8rem);

  /* Layout */
  --max-w: 1280px;
  --nav-height: 100px;
  --container-pad: 24px;
  --container-pad-mobile: 18px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(17, 24, 39, 0.12);
  --shadow-premium: 0 32px 64px -16px rgba(17, 24, 39, 0.16), 0 0 0 1px rgba(17, 24, 39, 0.02);
  --shadow-glow: 0 0 32px rgba(192, 10, 39, 0.15);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px rgba(17, 24, 39, 0.06);

  /* Motion / z-index */
  --t-fast: 0.2s ease;
  --t-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
}

@media (max-width: 900px) {
  :root {
    --nav-height: 84px;
    --container-pad: 18px;
    --space-8: 1.5rem;
    --space-10: 2rem;
    --space-12: 2.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 14px;
    --text-display: clamp(1.95rem, 7vw, 2.8rem);
  }
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Global override: Justify all paragraphs across the entire website */
p {
    text-align: justify !important;
}
