/*
Theme Name: Lamari
Theme URI: https://lamari.com
Author: Lamari
Author URI: https://lamari.com
Description: Lamari
Version: 1.0.1
Text Domain: lamari
*/

/* --- 1. GLOBAL DEĞİŞKENLER & RESET --- */
:root {
    
    --c-gold: #E0A99C;
    --c-dark: #1F1F1F;
    --c-gray: #666666;
    --c-light: #FAFAFA;
    --c-white: #FFFFFF;
    --c-border: #E5E5E5;

    --f-serif: 'Playfair Display', serif;
    --f-sans: 'Nunito', sans-serif;
    --f-body: 'Quicksand', sans-serif;

    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --trans: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--f-body); 
    color: var(--c-dark); 
    background: var(--c-white); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    display: block; 
}

button { 
    cursor: pointer; 
    border: none; 
    background: none; 
    font-family: var(--f-sans); 
    outline: none; 
}

.container { 
    width: 92%; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.text-center { 
    text-align: center; 
}

/* Style.css Sonu */