/* ==========================================================================
   Radiance Events - Global Style & Design System
   Company: Radiance India Industries Pvt. Ltd.
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ================= Primary Brand Colors (From Official Logo) ================= */
  --color-primary: #E1007A;           /* Vivid Royal Magenta */
  --color-primary-light: #FF2D87;     /* Vibrant Pink Highlight */
  --color-primary-dark: #9C0051;      /* Deep Velvet Berry */
  --color-primary-glow: rgba(225, 0, 122, 0.3);

  /* ================= Secondary & Accent Colors ================= */
  --color-gold: #F59E0B;              /* Royal Amber Gold */
  --color-gold-light: #FDE68A;        /* Soft Champagne Gold */
  --color-gold-dark: #B45309;         /* Antique Deep Gold */
  --color-gold-glow: rgba(245, 158, 11, 0.3);

  --color-emerald: #059669;           /* Festive Emerald Green */
  --color-emerald-light: #34D399;     /* Fresh Mint */
  
  --color-silver: #E2E8F0;            /* Polished Platinum Chrome */
  --color-silver-muted: #94A3B8;      /* Elegant Slate Silver */

  /* ================= Backgrounds & Surfaces ================= */
  --bg-dark-obsidian: #0D0E15;        /* Ultra Deep Midnight (Hero/Footer) */
  --bg-dark-card: #161824;            /* Dark Glass Card Layer */
  --bg-dark-surface: #12141F;         /* Midnight Surface */
  --bg-light-surface: #FFFFFF;        /* Pure White */
  --bg-light-soft: #FAF8F5;           /* Soft Warm Pearl / Ivory */
  
  /* ================= Text Colors ================= */
  --text-dark-primary: #0F172A;       /* Crisp Deep Slate */
  --text-dark-secondary: #475569;     /* Muted Grey */
  --text-light-primary: #F8FAFC;      /* Crisp Pure White */
  --text-light-secondary: #CBD5E1;    /* Soft Muted Silver */
  --text-muted: #94A3B8;              /* Placeholders & metadata */

  /* ================= Gradients ================= */
  --gradient-primary: linear-gradient(135deg, #FF2D87 0%, #E1007A 50%, #9C0051 100%);
  --gradient-gold: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #B45309 100%);
  --gradient-emerald: linear-gradient(135deg, #34D399 0%, #059669 100%);
  --gradient-dark-glass: linear-gradient(135deg, rgba(22, 24, 36, 0.85) 0%, rgba(13, 14, 21, 0.95) 100%);
  --gradient-light-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.9) 100%);
  --gradient-gold-border: linear-gradient(90deg, #F59E0B, #FF2D87, #059669);

  /* ================= Shadows & Glows ================= */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
  --shadow-primary-glow: 0 10px 30px rgba(225, 0, 122, 0.35);
  --shadow-gold-glow: 0 10px 30px rgba(245, 158, 11, 0.3);

  /* ================= Typography Tokens ================= */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-brand: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* ================= Spacing & Radius ================= */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= Reset & Base ================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark-primary);
  background-color: var(--bg-light-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

ul, ol {
  list-style: none;
}

/* ================= Container ================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* ================= Typography Utilities ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark-primary);
}

.font-script {
  font-family: var(--font-script);
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-gold {
  color: var(--color-gold) !important;
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(225, 0, 122, 0.45);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #0D0E15 !important;
  box-shadow: var(--shadow-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: #FFFFFF !important;
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}
