/* ==========================================================================
   WELLUNEX - LUXURY BRAND DESIGN SYSTEM CORE CSS
   A Product by RDL Studio • wellunex.com
   Typography: Alex Brush, Amiri, Bodoni Moda, Cinzel, Cormorant Garamond, Great Vibes, Inter, Italiana, Lato, Montserrat, Playfair Display, Plus Jakarta Sans
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Amiri:ital,wght@0,400;0,700;1,400&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cinzel:wght@400;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Inter:wght@300;400;500;600;700&family=Italiana&family=Lato:wght@300;400;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Typography Variables */
  --font-royal: 'Cinzel', 'Times New Roman', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Alex Brush', cursive;
  --font-cursive: 'Great Vibes', cursive;
  --font-arabic: 'Amiri', 'Traditional Arabic', serif;
  --font-modern: 'Bodoni Moda', serif;
  --font-italiana: 'Italiana', serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* WELLUNEX Master Color Palette (Tokens) */
  --bg-obsidian: #0B0C10;     /* Ana Zemin (Obsidian Noir) */
  --bg-dark: #0B0C10;
  --bg-surface: #15171E;      /* Kart & Panel (Surface Carbon) */
  --bg-card-dark: #15171E;
  --bg-card-border: rgba(212, 175, 55, 0.18); /* Gold Filament Border */
  --bg-paper: #FDFBF7;

  /* Imperial & Champagne Gold Tokens */
  --gold-imperial: #D4AF37;   /* Birincil Vurgu (Imperial Gold) */
  --gold-champagne: #E5C06E;  /* İkincil Altın (Warm Champagne) */
  --gold-400: #D4AF37;
  --gold-300: #E5C06E;
  --gold-200: #F3E5C8;
  --gold-100: #FAF4E6;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #E5C06E 100%);
  --gold-shimmer: linear-gradient(90deg, #D4AF37 0%, #FFF3B0 50%, #D4AF37 100%);

  /* Mühür & Kadife */
  --seal-crimson: #4A0E17;    /* Royal Crimson Mühür */

  /* Text Colors */
  --text-pure: #F8F9FA;       /* Pure Light (Ana Metin & Başlıklar) */
  --text-light: #F8F9FA;
  --text-mist: #8E95A5;       /* Slate Mist (Açıklama & Muted) */
  --text-muted: #8E95A5;
  --text-dark: #1A1A1A;

  /* Shadows */
  --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.18);
  --shadow-wax: 0 12px 28px rgba(74, 14, 23, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.35), inset 0 -3px 6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-obsidian);
  color: var(--text-pure);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
.font-royal { font-family: var(--font-royal); }
.font-serif { font-family: var(--font-serif); }
.font-script { font-family: var(--font-script); }
.font-cursive { font-family: var(--font-cursive); }
.font-modern { font-family: var(--font-modern); }
.font-sans { font-family: var(--font-sans); }

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

.text-mist { color: var(--text-mist); }
.text-pure { color: var(--text-pure); }

/* WELLUNEX Monogram W & Brand Logo */
.wellunex-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #FFF;
}

.wellunex-monogram-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(21,23,30,0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.wellunex-brand:hover .wellunex-monogram-badge {
  border-color: var(--gold-champagne);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: scale(1.05);
}

.wellunex-brand-name {
  font-family: var(--font-royal);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-pure);
  text-transform: uppercase;
}

.wellunex-brand-sub {
  font-size: 0.65rem;
  color: var(--text-mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* Luxury Cards */
.luxury-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  box-shadow: var(--shadow-luxury);
  transition: all 0.3s ease;
}

.luxury-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.luxury-glass {
  background: rgba(21, 23, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* WELLUNEX Action Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-royal);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B0C10;
  background: var(--gold-gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.45);
  transition: all 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -5px rgba(212, 175, 55, 0.65);
  filter: brightness(1.08);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-royal);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-champagne);
  background: rgba(21, 23, 30, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-imperial);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Inputs & Form Controls */
.luxury-input {
  width: 100%;
  padding: 13px 18px;
  background: rgba(11, 12, 16, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  color: #FFF;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.luxury-input:focus {
  outline: none;
  border-color: var(--gold-imperial);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid Helper */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* Badges */
.badge-luxury {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-champagne);
}

/* Animation utilities */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.75); }
}

.animate-pulse-gold {
  animation: goldPulse 3s infinite ease-in-out;
}
