/* ============================================
   GLOBAL BODY BACKGROUND
   ============================================ */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0b1120; /* dunkler Fallback */

    /* Globales Foodblog-Hintergrundbild */
    background-image: url('/assets/images/gv-food-banner-hp.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #e5e7eb;
}

/* Halbtransparenter Layer für den gesamten Inhalt */
.site-wrapper {
    min-height: 100vh;
    background: rgba(15, 23, 42, 0.83);  /* dunkles Overlay */
    backdrop-filter: blur(2px);          /* leichter Weichzeichner */
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--color-bg-alt);
        transition: left 0.3s;
        padding: var(--spacing-lg);
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    /* Dashboard */
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Entries Grid */
    .entries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}
