/* BlazzyMotion Core Design Tokens (extracted for static use) */

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

:root {
    --bz-border-radius: 20px;
    --bz-padding: 24px;
    --bz-animation-duration: 0.6s;
    --bz-animation-stagger: 50ms;
    --bz-animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* NEW FEMININE PALETTE */
    --bz-bg-pastel: linear-gradient(135deg, #fde8f0 0%, #e8f7fb 50%, #d6f4f4 100%);
    --bz-text-primary: #1a1a2e;
    --bz-text-secondary: #6b6b80;
    --bz-text-muted: #999999;
    --bz-accent-primary: #e8789f;
    --bz-theme-glass-bg: rgba(255, 255, 255, 0.7);
    --bz-theme-glass-border: rgba(255, 255, 255, 0.5);
    --bz-theme-glass-blur: 15px;
    --bz-theme-glass-shadow: 0 8px 32px rgba(232, 120, 159, 0.15);
    --bz-theme-glass-highlight: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    
    --cute-pink-mid: #f4a8c6;
    --cute-cyan-deep: #3bb8b8;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

@keyframes bz-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--bz-bg-pastel);
    background-attachment: fixed;
    color: var(--bz-text-primary);
    min-height: 100vh;
}

/* Site Header */
.site-header {
    text-align: center;
    padding: 20px 24px 12px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    text-decoration: none;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    line-height: 1;
    font-family: var(--font-heading);
}

.site-logo span {
    display: inline-block;
}

.site-logo .n-mini {
    display: none;
}

.glitter-text {
    background-image: linear-gradient(to right, var(--bz-accent-primary), var(--cute-cyan-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Layout Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
}

.gallery-controls label {
    color: var(--bz-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.gallery-controls select,
.gallery-controls input {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: var(--bz-text-primary);
    padding: 6px 14px;
    border-radius: 22px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.gallery-controls select:hover,
.gallery-controls input:hover {
    border-color: #c084fc;
    box-shadow: 0 2px 8px rgba(192,132,252,0.1);
}

.search-box {
    padding: 8px 16px !important;
    width: 220px;
    border-radius: 22px !important;
}

.search-box::placeholder {
    color: var(--bz-text-muted);
}

/* Stats bar */
.gallery-stats {
    text-align: center;
    padding: 0 24px 8px;
    color: var(--bz-text-muted);
    font-size: 0.8rem;
}

/* Site Navigation */
.site-nav {
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 100;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    color: var(--bz-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.site-nav a:hover {
    background: #f5f5f5;
    border-color: var(--cute-pink-mid);
    color: var(--cute-pink-mid);
    box-shadow: 0 4px 12px rgba(255,107,196,0.18);
}

@media (max-width: 1024px) {
    .site-logo .n-middle {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-logo .n-first,
    .site-logo .n-middle,
    .site-logo .n-last {
        display: none;
    }

    .site-logo .n-mini {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 900;
    }

    .site-nav {
        position: static;
        margin-left: 12px;
    }

    .site-header {
        justify-content: space-between;
        padding: 16px;
    }
}
