/* Bletaria R - Katana – style.css */
:root {
    --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --bg: #ffffff;
    --text: #141414;
    --muted: #6b7280;
    --brand: #f59e0b;
    /* amber */
    --brand2: #111827;
    /* near black */
    --radius: 18px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
}
/* Topbar */
.topbar {
    background: #fff;
}
.toplink {
    color: var(--brand2);
    text-decoration: none;
    opacity: .9;
}
.toplink:hover {
    text-decoration: underline;
}
/* Brand */
.brand__mark {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, .25), rgba(245, 158, 11, .05));
}
.brand__name {
    font-weight: 700;
    line-height: 1.1;
}
.brand__tag {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.brand__mark img {
    height: 50px;
    /* madhësia e logos */
    width: auto;
    object-fit: contain;
}
/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -200px -200px auto auto;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(245, 158, 11, .25), transparent 60%);
    filter: blur(2px);
}
.hero__badge {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, .15);
    border: 1px solid rgba(245, 158, 11, .25);
    font-weight: 600;
    font-size: 14px;
}
.hero__stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: 14px;
    background: #fff;
}
.stat__num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, .18);
    font-weight: 700;
}
.stat__txt {
    font-size: 14px;
    color: var(--muted);
}
/* Hero card */
.hero__card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .10);
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .10);
}
.hero__img {
    height: 260px;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .05)),
        url("../img/hero.jpg") center/cover no-repeat;
}
/* About image */
.about__img {
    min-height: 360px;
    background:
        linear-gradient(120deg, rgba(245, 158, 11, .18), rgba(0, 0, 0, .05)),
        url("../img/about.jpg") center/cover no-repeat;
}
/* Features */
.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 39, .10);
    background: #fff;
    height: 100%;
}
.feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, .18);
    font-size: 18px;
}
.feature__title {
    font-weight: 700;
}
.feature__text {
    color: var(--muted);
    font-size: 14px;
}
/* Products */
.product__thumb {
    height: 190px;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .03)),
        url("../img/product-honey.jpg") center/65% no-repeat;
}
.card.product {
    border-radius: 18px;
    overflow: hidden;
}
.card.product .card-body {
    padding: 18px;
}
/* Gallery */
.gallery__item {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .03)),
        var(--img) center/cover no-repeat;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .12);
    transition: transform .15s ease, box-shadow .15s ease;
}
.gallery__item {

    background-position: center;
    background-size: cover;
}
.gallery__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(17, 24, 39, .14);
}
/* Contact */
.contact__card {
    background: #fff;
}
.contact__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, .18);
    font-size: 18px;
}
textarea.form-control {
    resize: none;
    /* bllokon zmadhimin */
}
/* Footer */
.footer {
    background: #fff;
}
/* Buttons tweak */
.btn-primary {
    background-color: var(--brand);
    border-color: var(--brand);
    color: #111;
    font-weight: 700;
}
.btn-primary:hover {
    background-color: #e69007;
    border-color: #e69007;
    color: #111;
}
/* Social Media */
.social-icons a {
    color: #111;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #f59e0b;
    /* ngjyra e brandit tënd */
    transform: scale(1.1);
}
/* Default (PC) */
.topbar {
    display: flex;
    /* ose block, varet si e ke */
}
/* Small screens */
@media (max-width: 576px) {
    .hero__img {
        height: 200px;
    }
    .about__img {
        min-height: 260px;
    }
    .topbar {
        display: none;
    }
}