/* ===== ROOT (RENK SİSTEMİ) ===== */
:root{
    --gold: #c79944;
    --gold-soft: #c7994430;
    --bg-dark: #0b0b0b;
    --text-light: #eaeaea;
    --text-gray: #888;
}

/* ===== TOP BAR ===== */
.topbar{
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.6);
    padding: 14px 20px;
    z-index: 999;
    border-bottom: 1px solid var(--gold-soft);
}

/* LOGO */
.topbar-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 15px;

    color: var(--text-light);
    background-color: transparent;

    border: 1px solid var(--gold);
    border-radius: 6px;

    text-decoration: none;
    font-weight: 500;

    transition: all 0.25s ease;
}

.back-btn:hover {
    background-color: var(--gold);
    color: #000;
}

/* ===== CONTACT ===== */
.mini-contact{
    margin-top: 60px;
    background: rgb(57, 57, 57);
    border: 1px solid var(--gold-soft);
    padding: 25px;
    border-radius: 14px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.mini-contact a{
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    border: 1px solid var(--gold);

    padding: 10px 16px;
    border-radius: 25px;

    text-decoration: none;
    font-size: 14px;

    transition: all 0.25s ease;
}

.mini-contact a:hover{
    background: rgba(199,153,68,0.1);
}

/* ===== FOOTER ===== */
footer{
    text-align: center;
    padding: 25px 15px;
    margin-top: 50px;

    font-size: 13px;
    color: var(--text-gray);

    border-top: 1px solid var(--gold-soft);
    background: var(--bg-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){

    .topbar{
        padding: 10px 12px;
    }

    .topbar-logo{
        height: 40px;
    }

    .back-btn{
        font-size: 12px;
        padding: 6px 10px;
        margin-left: 5px;
    }

    .mini-contact{
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
    }

    .mini-contact a{
        width: 100%;
        max-width: 280px;
        font-size: 13px;
    }
}