/* css/base.css */

/* General styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
h3{
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* --- Colors (Using CSS Variables) --- */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff7f00;
    --text-color: #333;
    --text-color-light: #777;
    --background-color: #fff;
    --background-color-light-blue: #f0f6ff;
}

/* --- Hide Turkish text by default --- */
[data-lang="tr"] {
    display: none;
}