/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* RENK DEĞİŞKENLERİ */
:root {
    --bordo-body: #2b0a0f;        /* GÖVDE – ÇOK KOYU BORDO */
    --bordo-header: #5a1a24;      /* HEADER – DAHA AÇIK BORDO */
    --bordo-header-soft: #6b2430; /* HEADER GRADIENT ÜST */
    --white: #ffffff;
    --white-soft: #f2f2f2;
    --black: #000000;
}

/* GENEL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--bordo-body);
    color: var(--white);
    position: relative;
    overflow-x: hidden;
}

/* Arka planda soluk logo */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("images/logo_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px;
    opacity: 0.02;
    z-index: -1;
}

/* Paragraflar */
p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white-soft);
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    padding: 26px 32px;
    position: relative;
    background: linear-gradient(
        to bottom,
        var(--bordo-header-soft) 0%,
        var(--bordo-header) 75%,
        rgba(90, 26, 36, 0) 100%
    );
}

/* Logo */
.logo {
    width: 82px;
    height: auto;
}

/* Başlık */
.title {
    display: flex;
    flex-direction: column;
    margin-left: 22px;
}

.title-top {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-bottom {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}

/* HEADER MENÜ */
.header-nav {
    position: absolute;
    bottom: 10px;
    right: 32px;
    display: flex;
    gap: 14px;
}

.header-nav a {
    padding: 9px 16px;
    border-radius: 10px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.header-nav a:hover {
    background-color: var(--white-soft);
    transform: translateY(-2px);
}

/* ================= GÖVDE ================= */
.content {
    max-width: 900px;
    margin: auto;
    padding: 40px 30px;
}

/* ANA BAŞLIKLAR */
h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 4px solid var(--white);
}

/* BAĞIŞ ALT BAŞLIKLARI */
.sub-title {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 10px;
    margin-left: 28px;
    color: var(--white);
}

/* ALT METİN */
.sub-title + p {
    margin-left: 40px;
}

/* KOPYALAMA BUTONLARI */
.copy-buttons {
    margin-top: 18px;
    margin-left: 40px;
    display: flex;
    gap: 14px;
}

.copy-btn {
    padding: 11px 20px;
    border-radius: 10px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.copy-btn:hover {
    background-color: var(--white-soft);
    transform: translateY(-2px);
}

/* ================= İLETİŞİM ================= */
.contact-card {
    margin-top: 32px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    max-width: 220px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 12px;
    border: 1px solid var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.contact-item:hover {
    background-color: var(--white-soft);
    transform: translateY(-2px);
}

.contact-item img {
    width: 22px;
    height: 22px;
}

/* ================= MOBİL ================= */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding-bottom: 44px;
    }

    .title {
        margin-left: 0;
        margin-top: 12px;
    }

    .header-nav {
        position: static;
        margin-top: 18px;
    }

    .logo {
        width: 70px;
    }
}
