﻿/* === Renk Paleti Tan�mlar� === */
:root {
    --bg-dark: #1a1a1a;
    --accent-gold: #B59461;
    --text-light: #f8f5ee;
    --input-bg: rgba(255, 255, 255, 0.05);
    --border-muted: rgba(248, 245, 238, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.8;
}

h1, h2, h3, .playfair {
    font-family: 'Playfair Display', serif;
}


/* === Sayfa Ba�l��� === */
.page-header {
    padding: 120px 0 50px;
    text-align: center;
}

.since-text {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
    display: block;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* === ��erik Konteyneri === */
.legal-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-muted);
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 40px;
}

    .legal-section h2 {
        color: var(--accent-gold);
        font-size: 1.6rem;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(181, 148, 97, 0.2);
        padding-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .legal-section h2 i {
            font-size: 1.4rem;
        }

    .legal-section p, .legal-section li {
        color: rgba(248, 245, 238, 0.8);
        font-size: 1.05rem;
    }

.legal-list {
    padding-left: 30px;
    margin-bottom: 20px;
}

    .legal-list li {
        margin-bottom: 12px;
        position: relative;
        list-style-type: none;
    }

        .legal-list li::before {
            content: "-"; /* Bootstrap bi-dot unicode */
            font-family: "bootstrap-icons" !important;
            position: absolute;
            left: -25px;
            top: 0;
            color: var(--accent-gold);
            font-size: 1.2rem;
            line-height: 1.5;
            display: inline-block;
        }



@media (max-width: 768px) {


    .legal-container {
        padding: 25px;
        margin: 0 15px 60px;
    }
}
