﻿/* Modern Clean White Theme Variables */
:root {
    --bg-base: #FFFFFF;
    --bg-surface: #F8F9FA;
    --bg-surface-hover: #F1F3F5;
    --primary: #7C3AED; 
    --primary-light: #A78BFA;
    --secondary: var(--primary-light);
    --primary-glow: rgba(124, 58, 237, 0.25);
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --border-color: #E5E7EB;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --top-bar-height: 40px;
    --header-bg: #FFFFFF;
    --header-bg-glass: rgba(255, 255, 255, 0.92);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open, body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

.yasal-icerik {
    max-width: 800px;
    margin: 0 auto;
}

.yasal-icerik h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.yasal-icerik h2:first-child {
    margin-top: 0;
}

.yasal-icerik ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.yasal-icerik li {
    margin-bottom: 0.5rem;
}

.sayfa-hero p {
    text-align: left;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

