﻿:root {
    --accent: #c5a059;
    --dark: #1f2328;
    --soft-bg: #fcfbf9;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

/* ===== HERO ===== */
.hero {
    position: relative;
}

.hero__slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.hero__track {
    display: flex;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero__slide {
    position: relative;
    min-width: 100%;
    height: 520px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero__panel {
    max-width: 560px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    padding: 24px;
}

.hero__kicker {
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.hero__panel h1 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 48px;
    line-height: 1.1;
    font-family: serif;
}

.hero__desc {
    color: rgba(255,255,255,.9);
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 16px;
}

.hero__buttons {
    display: flex;
    gap: 12px;
}

.btnHero {
    padding: 12px 24px;
    font-weight: 700;
    border: 1px solid #fff;
    color: #fff;
    transition: all .3s;
    cursor: pointer;
}

.btnHero--white {
    background: #fff;
    color: #111;
}

    .btnHero--white:hover {
        background: transparent;
        color: #fff;
    }

.btnHero--ghost:hover {
    background: rgba(255,255,255,0.1);
}

/* Oklar */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.4);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    transition: .3s;
}

    .hero__arrow:hover {
        background: var(--accent);
        border-color: var(--accent);
    }

.hero__arrow--prev {
    left: 20px;
}

.hero__arrow--next {
    right: 20px;
}

/* Thumbs */
.hero__thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero__thumb {
    width: 80px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: .3s;
    padding: 0;
}

    .hero__thumb.is-active {
        opacity: 1;
        border-color: #fff;
    }

/* Featured Row & Cards */
.catGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.catCard {
    border: 1px solid #eee;
    transition: .3s;
    background: #fff;
}

.catCard__img {
    aspect-ratio: 1/1;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
}

.catCard__title {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    border-top: 1px solid #eee;
}

.catCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero__slide {
        height: 400px;
    }

    .hero__panel h1 {
        font-size: 32px;
    }

    .hero__thumbs {
        display: none;
    }
    /* Mobilde thumb gizle, sadece dot kalsın */
    .catGrid {
        grid-template-columns: 1fr;
    }
}
/* 1. Tüm linkler için genel sıfırlama */
a, a:link, a:visited {
    text-decoration: none !important;
    color: inherit; /* Rengi babasından (footer'dan) almasını söyler */
}

/* 2. Footer içindeki linkleri bembeyaz ve çizgisiz yapmaya zorla */
.site-footer a,
.site-footer a:visited,
.software-signature a {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: none !important; /* Signature'daki o çizgiyi de öldürür */
}

    /* 3. Sadece üzerine gelince renk değişsin (opsiyonel) */
    .site-footer a:hover {
        color: var(--accent) !important; /* Senin tanımladığın altın rengi */
    }