/* =========================
   SLM GRILL - DESIGN MODERN
   ========================= */

* {
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* HERO */

.hero {
    background:
        linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.78)),
        url('../img/hero.jpg');

    background-size: cover;
    background-position: center;

    padding: 130px 20px;

    text-align: center;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    color: #ffc107;

    text-shadow:
        0 3px 0 #8a6500,
        0 8px 20px rgba(0,0,0,.8);

    margin-bottom: 15px;
}

.hero p {
    font-size: 21px;
    color: #f1f1f1;
    margin-top: 15px;
}

/* TITLURI */

h2,
h3 {
    font-weight: 800;
}

.text-warning {
    color: #ffc107 !important;
}

/* CARD PRODUSE */

.card {
    background: linear-gradient(
        145deg,
        #242424,
        #151515
    );

    border: 1px solid rgba(255,193,7,.12);

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);
}

.card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,193,7,.45);

    box-shadow:
        0 15px 40px rgba(0,0,0,.65),
        0 0 20px rgba(255,193,7,.08);
}

/* IMAGINI PRODUSE */

.card img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    transition:
        transform .45s ease,
        filter .45s ease;
}

.card:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* CONTINUT CARD */

.card-body {
    padding: 22px;
}

.card-title {
    color: #fff;

    font-size: 22px;
    font-weight: 800;

    margin-bottom: 10px;
}

.card-text {
    color: #cfcfcf;

    font-size: 15px;
    line-height: 1.6;

    min-height: 48px;
}

/* PRET */

.price,
.pret {
    color: #ffc107;

    font-size: 23px;
    font-weight: 900;

    margin-top: 15px;
}

/* BUTOANE */

.btn-warning {
    background: linear-gradient(
        135deg,
        #ffc107,
        #ff9800
    );

    border: none;

    color: #111 !important;

    font-weight: 800;

    border-radius: 12px;

    padding: 11px 20px;

    box-shadow:
        0 5px 15px rgba(255,193,7,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.btn-warning:hover {
    background: linear-gradient(
        135deg,
        #ffd54f,
        #ffb300
    );

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(255,193,7,.3);
}

/* BUTON ADAUGARE IN COS */

.btn-primary {
    border-radius: 12px;

    font-weight: 700;

    padding: 11px 20px;
}

/* BADGE */

.badge {
    border-radius: 50px;

    padding: 7px 12px;

    font-weight: 700;
}

/* PRODUSE INDISPONIBILE */

.card .disabled,
.card.disabled {
    opacity: .55;
}

/* SECTIUNI */

section {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* FOOTER */

footer {
    background: #050505;

    color: #fff;

    padding: 40px 20px;

    margin-top: 70px;

    border-top: 1px solid rgba(255,193,7,.15);
}

footer a {
    color: #ffc107;

    text-decoration: none;

    transition: .2s;
}

footer a:hover {
    color: #fff;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero {
        padding: 90px 18px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .card {
        border-radius: 17px;
    }

    .card img {
        height: 210px;
    }

    .card-body {
        padding: 18px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 14px;
    }

    .price,
    .pret {
        font-size: 21px;
    }

}

/* TELEFON MIC */

@media (max-width: 480px) {

    .hero {
        padding: 75px 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .card img {
        height: 200px;
    }

}
/* =========================
   SLM GRILL - PRODUSE
   ========================= */

.product-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,193,7,.18) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-no-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    font-size: 60px;
}

.product-title {
    color: #ffffff !important;
    font-size: 23px;
    font-weight: 800;
    margin: 10px 0;
}

.product-description {
    color: #dddddd !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-category {
    display: inline-block;
    width: fit-content;
    background: rgba(255,193,7,.12);
    color: #ffc107 !important;
    border: 1px solid rgba(255,193,7,.25);
    border-radius: 50px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 700;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}

.product-price {
    color: #ffc107 !important;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.add-cart-btn {
    border-radius: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.order-cta {
    background: linear-gradient(145deg, #202020, #111111);
    border: 1px solid rgba(255,193,7,.2);
    border-radius: 22px;
    padding: 40px 20px;
}

.order-cta p {
    color: #ddd;
}

.footer-link {
    color: #ffc107;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-line {
    border-color: rgba(255,193,7,.2);
    margin: 30px 0 20px;
}

@media (max-width: 576px) {

    .product-image,
    .product-no-image {
        height: 210px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-bottom {
        align-items: flex-end;
    }

}