/**
 * Çağlayan Yemek - CSS Tasarım Sistemi Değişkenleri ve Reset Stilleri
 */

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

:root {
    /* Renk Paleti (Premium Gastronomi & Catering Teması) */
    --primary: #c5a880;          /* Muted Şampanya Altını */
    --primary-hover: #b4956c;    /* Koyu Altın */
    --primary-light: #f5f0e6;    /* Çok Açık Altın/Krem */
    --secondary: #1b2e24;        /* Lüks Orman Yeşili */
    --secondary-hover: #122018;  /* Koyu Orman Yeşili */
    --dark-bg: #0f1712;          /* Derin Premium Koyu Yeşil/Siyah */
    --light-bg: #FAF9F6;         /* Doğal Sıcak Alabaster Krem */
    --card-bg: #ffffff;          /* Kart Arka Planı (Beyaz) */
    --text-dark: #1f2a24;        /* Ana Gövde Metni Koyu */
    --text-muted: #5e6d65;       /* Yardımcı Metin */
    --text-light: #ffffff;       /* Açık Metin */
    --border-color: #eae6df;     /* Yumuşak Kenarlık Rengi */
    
    /* Tipografi */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Düzen ve Spacing */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(27, 46, 36, 0.05), 0 2px 4px -1px rgba(27, 46, 36, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(27, 46, 36, 0.08), 0 4px 6px -2px rgba(27, 46, 36, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(27, 46, 36, 0.1), 0 10px 10px -5px rgba(27, 46, 36, 0.04);
}

/* CSS Sıfırlama (Reset) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

/* Global Düzen Sınıfları */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Ortak Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 10px rgba(27, 46, 36, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(27, 46, 36, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Bölüm Başlığı Tasarımları */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    font-family: var(--font-body);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-title.light h2 {
    color: white;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.7);
}

/* Kart Tasarımları */
.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.3);
}

/* Dalgalı ve Akıcı Efektler (Micro-animations) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s forwards ease-out;
}
