/* ============================================
   Güveçte Catering - CSS Değişkenler & Reset
   ============================================ */

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

:root {
    /* ─── Renkler (Logo'dan esinlenildi) ─── */
    --gold: #C8A960;
    --gold-light: #D4B96B;
    --gold-dark: #A88B3D;
    --gold-glow: rgba(200, 169, 96, 0.25);
    --gold-gradient: linear-gradient(135deg, #C8A960 0%, #D4B96B 50%, #A88B3D 100%);

    --dark-900: #0A0A0A;
    --dark-800: #111111;
    --dark-700: #1A1A1A;
    --dark-600: #222222;
    --dark-500: #2A2A2A;
    --dark-400: #333333;
    --dark-300: #444444;

    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --warm-white: #FDF8F0;
    --text-primary: #F5F0E8;
    --text-secondary: #B0A89C;
    --text-muted: #7A7268;

    --success: #4CAF50;
    --error: #E53935;
    --warning: #FFC107;

    /* ─── Tipografi ─── */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
    --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;

    /* ─── Aralıklar ─── */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --container-max: 1280px;
    --container-narrow: 900px;

    /* ─── Efektler ─── */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(200,169,96,0.2);

    --glass-bg: rgba(26, 26, 26, 0.6);
    --glass-border: rgba(200, 169, 96, 0.15);
    --glass-blur: blur(20px);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* ─── Z-Index ─── */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ─── CSS Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text-primary);
    background-color: var(--dark-900);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

::selection {
    background: var(--gold);
    color: var(--dark-900);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-800);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
