﻿/* Akorculuk.com'dan alınan renkler ve fontlar */
:root {
    --primary-dark-color: #2E2E2E; /* Ana koyu renk (genel başlıklar, bazı yazılar) */
    --secondary-dark-color: #495057; /* Başka bir koyu renk (menü arkaplanları vb.) */
    --highlight-orange-border: coral; /* HR ve border turuncusu */
    --highlight-orange-text: #E25822; /* Yazı turuncusu */
    --body-text-color: #333333; /* Genel metin rengi */
    --light-gray-bg: #f8f8f8; /* Hafif gri arka plan */
}

body {
    line-height: 1.6;
    color: var(--body-text-color);
    background-color: #fff; /* Lightbox içi beyaz arka plan */
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-weight: 700;
    color: var(--primary-dark-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.2em;
    border-bottom: 4px solid var(--highlight-orange-border);
    padding-bottom: 12px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
}

h2 {
    font-weight: 700;
    color: var(--primary-dark-color);
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: 1.6em;
    border-left: 5px solid var(--highlight-orange-border);
    padding-left: 15px;
}

h3 {
    font-weight: 600;
    color: var(--primary-dark-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2em;
}

p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.95em;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

    ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 8px;
        font-size: 0.95em;
    }

        ul li::before {
            content: '›';
            color: var(--highlight-orange-border);
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.1em;
            line-height: 1;
        }

.highlight-text {
    font-weight: 700;
    color: var(--highlight-orange-text);
    margin-right: 5px; /* İkon/Harf ile metin arasında boşluk */
    display: inline-block; /* İkonun doğru hizalanması için */
    min-width: 25px; /* İkonların/Harflerin sabit genişliği için */
    text-align: center; /* Harfleri ortalamak için */
}

.feature-box {
    background-color: var(--light-gray-bg);
    border-left: 4px solid var(--highlight-orange-border);
    padding: 18px 22px;
    margin-top: 22px;
    border-radius: 6px;
    margin-bottom: 22px;
}

    .feature-box h3 {
        margin-top: 0;
        color: var(--highlight-orange-text);
    }

/* Minimalist ve sola hizalı link stilleri */
.link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

    .link-group a {
        display: inline-block;
        padding: 6px 15px;
        background-color: transparent;
        color: var(--highlight-orange-text);
        text-decoration: none;
        border: 1px solid var(--highlight-orange-text);
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.85em;
        transition: all 0.2s ease-in-out;
    }

        .link-group a:hover {
            background-color: var(--highlight-orange-text);
            color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

/* Metin içindeki linkler */
p a, ul li a {
    color: var(--highlight-orange-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--highlight-orange-text);
    transition: color 0.2s ease, border-color 0.2s ease;
}

    p a:hover, ul li a:hover {
        color: var(--primary-dark-color);
        border-bottom-color: var(--primary-dark-color);
    }

/* İkonların metinle hizalanması için */
.fa {
    /* margin-right: 5px; Bu ayar highlight-text içinde yapıldı */
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
        margin-bottom: 18px;
    }

    h2 {
        font-size: 1.4em;
        margin-top: 30px;
    }

    h3 {
        font-size: 1.1em;
    }

    body {
        padding: 10px;
    }

    p, ul li {
        font-size: 0.9em;
    }

    .link-group {
        flex-direction: column;
        align-items: flex-start;
    }

        .link-group a {
            width: auto;
            max-width: 100%;
            margin: 5px 0;
            padding: 8px 18px;
        }
}
