/* ── global.css — mm23's Slop Shop ── */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: "Nunito", "Lucida Grande", Tahoma, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #fce4ec 100%);
    background-attachment: fixed;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1, h2 { margin: 0; }

/* ── Site Header ── */
.site-header {
    font-family: "Fredoka One", cursive;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    text-shadow:
        2px 2px 4px rgba(0,0,0,0.25),
        -1px -1px 0 #b3e5fc,
         1px  1px 0 #f8bbd0;
    margin-bottom: 20px;
    text-align: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* ── Nav ── */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeUp 0.4s 0.1s ease both;
}

.nav-link {
    text-decoration: none;
    color: #1565c0;
    font-weight: 700;
    font-size: 1rem;
    padding: 9px 22px;
    border-radius: 999px;
    border: 1px solid #90caf9;
    background: linear-gradient(to bottom, #bbdefb 0%, #90caf9 49%, #64b5f6 51%, #e3f2fd 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.85);
    text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(to bottom, #f8bbd0 0%, #f48fb1 49%, #f06292 51%, #fce4ec 100%);
    border-color: #f48fb1;
    color: #880e4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.85);
}

.nav-link:active { transform: translateY(0); }

/* ── Footer ── */
.site-footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    padding: 20px;
    border-top: 1px dashed #bcaaa4;
    width: 100%;
    max-width: 900px;
    animation: fadeUp 0.4s 0.3s ease both;
}

.site-footer p { margin: 4px 0; }

/* ── Shared Card Styles ── */
.card-header {
    background: linear-gradient(to bottom, #fce4ec 0%, #f8bbd0 100%);
    padding: 14px 20px;
    border-bottom: 1px solid #f48fb1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.card-header h2 {
    font-family: "Fredoka One", cursive;
    font-size: 1.7rem;
    font-weight: 400;
    color: #c2185b;
    text-shadow: 1px 1px 0 #fff;
    letter-spacing: 0.2px;
}

/* ── Tag Pills ── */
.tag {
    background: linear-gradient(to bottom, #bbdefb, #90caf9);
    color: #1565c0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid #90caf9;
}

/* ── Animations ── */
@keyframes popIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
