/* ---------------------------
   GENEL AYARLAR
--------------------------- */
:root {
    --primary-color: #14b8a6;
    --secondary-color: #f97316;
    --header-bg: #1F2937;       /* Koyu arka plan */
    --header-text: #FFFFFF;     /* Beyaz yazı */
    --nav-hover-bg: #f97316;
    --primary-color-rgb: 20, 184, 166;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F3F4F6;
    color: #1F2937;
    margin: 0;
    padding: 0;
}

/* ---------------------------
   HEADER & NAV
--------------------------- */
.site-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    transition: transform 0.3s;
    color: var(--header-text);
    text-decoration: none;
}
.logo:hover {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--header-text);
    cursor: pointer;
}

.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 8px;
}

.nav-link {
    color: var(--header-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-block;
}

.nav-link:hover {
    background-color: var(--nav-hover-bg);
    color: #FFFFFF;
}

/* ---------------------------
   KUTULU CONTENT
--------------------------- */
.static-page {
    max-width: 900px;
    background: #FFFFFF;
    padding: 24px 32px;
    margin: 24px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.static-page h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.static-page h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 12px;
}

.static-page p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.static-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ---------------------------
   RESPONSIVE & MOBILE
--------------------------- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        flex-direction: column;
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 16px;
    }

    .main-nav li {
        margin: 8px 0;
    }

    .main-nav.show {
        display: flex;
    }
}

/* ---------------------------
   FOOTER
--------------------------- */
.site-footer {
    background-color: #1F2937;
    color: #FFFFFF;
    text-align: center;
    padding: 24px 16px;
    margin-top: auto;
}

.site-footer a {
    color: var(--secondary-color);
    text-decoration: underline;
}
