/* 
   index.css - Topraktan Atolye Luxury Light Theme Design Tokens 
*/

:root {
    /* Color Palette */
    --clr-bg: #FAF6F0;          /* Kırık beyaz / Açık Bej */
    --clr-text: #5C4033;        /* Koyu Kahve / Toprak */
    --clr-accent: #D4A373;      /* Yumuşak Turuncu / Kiremit */
    --clr-surface: #FFFFFF;     /* White for cards */
    --clr-divider: rgba(92, 64, 51, 0.1); /* Koyu kahvenin saydam hali */
    --clr-bg-alt: #F2EBE1;      /* Slightly darker beige for sections */

    /* Typography */
    --font-serif: 'Playfair Display', 'Cinzel', serif;
    --font-sans: 'Inter', 'Outfit', sans-serif;

    /* Spacing & Layout */
    --radius-soft: 8px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 30px rgba(92, 64, 51, 0.05);
    --shadow-hover: 0 15px 40px rgba(92, 64, 51, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

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

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400; /* High contrast serif */
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Helpers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

.btn-primary:hover {
    background-color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-text);
    color: var(--clr-text);
}

.btn-outline:hover {
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

/* Section Common */
.section-padding {
    padding: 6rem 0;
}

/* Responsive Index Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

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

    html {
        font-size: 14px;
    }
}
