/* ==========================================================================
   BOTANİK KAFE KIRŞEHİR - HIGH PERFORMANCE LUXURY DESIGN SYSTEM
   Ultra-Smooth 60 FPS GPU-Accelerated Tokens & Typography
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap&subset=latin,latin-ext');

:root {
  /* High-Performance Botanical Palette */
  --bg-primary: #060b09;
  --bg-secondary: #0c1511;
  --bg-card: rgba(14, 25, 20, 0.92);
  --bg-card-hover: rgba(20, 35, 28, 0.96);
  --bg-glass: rgba(12, 22, 17, 0.88);
  --bg-glass-heavy: rgba(8, 15, 12, 0.96);

  /* Gold & Champagne Accents */
  --gold-primary: #dfb76c;
  --gold-light: #f5e2b3;
  --gold-dark: #b88d3e;
  --gold-gradient: linear-gradient(135deg, #fcebc2 0%, #dfb76c 50%, #a67c2e 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(245, 226, 179, 0.2) 0%, rgba(223, 183, 108, 0.35) 100%);
  --gold-glow: 0 0 15px rgba(223, 183, 108, 0.25);

  /* Emerald & Nature Accents */
  --emerald-accent: #15803d;
  --emerald-glow: rgba(21, 128, 61, 0.25);
  --emerald-light: #4ade80;
  --emerald-deep: #064e3b;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #e6c887;

  /* UI Borders */
  --border-glass: rgba(223, 183, 108, 0.18);
  --border-glass-bright: rgba(223, 183, 108, 0.45);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Shadows (Lightweight) */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-luxury: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(223, 183, 108, 0.1);

  /* Typography Families with Full Turkish Glyphs */
  --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Montserrat', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-medium: 0.25s ease-out;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
}

/* Global Resets with GPU Composition */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  position: relative;
  background: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #040806;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

/* Typography Helpers */
.font-cinzel {
  font-family: var(--font-heading);
}

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

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

.badge-gold {
  background: rgba(223, 183, 108, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Glassmorphism Panel (Optimized GPU Rendering) */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  position: relative;
  transform: translateZ(0);
}

.glass-panel-heavy {
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #060b09;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transform: translateZ(0);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 183, 108, 0.5);
  color: #000;
}

.btn-outline-gold {
  background: rgba(223, 183, 108, 0.06);
  color: var(--gold-light);
  border: 1px solid var(--border-glass-bright);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transform: translateZ(0);
}

.btn-outline-gold:hover {
  background: rgba(223, 183, 108, 0.18);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.btn-icon:hover {
  background: var(--gold-primary);
  color: #060b09;
  transform: scale(1.06);
}
