/* =============================================
   CROWN GEM — GLOBAL
   Variables · Reset · Utilities
   Included on every page via header.php
   ============================================= */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #B8892A;
  --gold-light:  #D4A843;
  --gold-dark:   #8A6419;
  --navy:        #2D2D43;
  --navy-mid:    #1A2E42;
  --dark:        #09123C;
  --dark-2:      #1C1C1C;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --text-dark:   #000000;
  --text-mid:    #1b1a1a;
  --text-light:  #888888;
  --border:      #E8E0D0;
  /* --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Outfit', sans-serif; */
   --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.14);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Typography Utilities ---------- */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Animation ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-in {
  animation: fadeInUp 0.7s ease forwards;
}

/* ---------- Global Responsive ---------- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}
