/* --------------------------------------------------
   GLOBALT / BASSTILAR + BAKGRUNDSBILD
-------------------------------------------------- */
body {
    font-family: Arial, sans-serif;
    background: url('images/bakgrund.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    position: relative;
}

/* Mild overlay – varm och aptitlig */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(3px);
    z-index: -1;
}

/* --------------------------------------------------
   MENY-LAYOUT
-------------------------------------------------- */
#menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* --------------------------------------------------
   PIZZA-KORT
-------------------------------------------------- */
.pizza-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 220px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pizza-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

/* Pizza-bild */
.pizza-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Info-box */
.pizza-info {
    padding: 15px;
}

.pizza-info h3 {
    margin: 0 0 5px;
    font-size: 22px;
}

/* Toppings */
.toppings {
    color: #555;
    margin-bottom: 10px;
}

/* Allergener & kcal */
.allergens, .kcal {
    font-size: 14px;
    color: #444;
    margin: 2px 0;
}

/* Pris */
.price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #D62828; /* premium röd */
}

/* --------------------------------------------------
   KNAPPAR
-------------------------------------------------- */
button, .btn {
    padding: 10px 20px;
    background: #D62828; /* premium röd */
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    width: 100%;
    transition: 0.2s ease;
}

button:hover, .btn:hover {
    background: #2F8F2F; /* basilika-grön */
    transform: scale(1.03);
}

/* --------------------------------------------------
   FILTER-KNAPPAR
-------------------------------------------------- */
#filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 18px;
    background: #2F8F2F; /* basilika-grön */
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: 0.2s ease;
}

.filter-btn:hover {
    background: #E8C27A; /* gyllene ton */
    color: #111;
}

.filter-btn.active {
    background: #D62828; /* premium röd */
    color: white;
    border-color: #D62828;
}

/* --------------------------------------------------
   HEADER – Transparent premium design
-------------------------------------------------- */
.mp-header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    z-index: 999;
}

.mp-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-header-logo {
    height: 48px;
}

.mp-header-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-shadow: 0 0 3px rgba(255,255,255,0.6);
}

.mp-header-cart {
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid #D62828;
    transition: 0.25s;
}

.mp-header-cart:hover {
    background: #D62828;
    transform: scale(1.05);
}

/* --------------------------------------------------
   FOOTER – Rödvit duk
-------------------------------------------------- */
.mp-footer-duk {
    background: url('red_white_tablecloth.jpg');
    background-size: cover;
    padding: 25px 0;
    text-align: center;
    border-top: 3px solid #D62828;
}

.mp-footer-duk-inner {
    background: rgba(255,255,255,0.25);
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
}

.mp-footer-duk p {
    margin: 4px 0;
    color: #333;
}
