/*
Theme Name: LVL256 Custom Theme
Author: Kyle Voorhees
Description: A flexible, customizable WordPress theme for Level 256 arcade bar. Features Customizer-driven business information, hero sections, and full Gutenberg block editor support. Perfect for small businesses that want easy content management without breaking the design.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lvl256
Tags: one-column, custom-logo, custom-menu, featured-images, theme-options, block-styles, translation-ready
*/

/* Import organized stylesheets */
@import url('./assets/css/variables.css');
@import url('./assets/css/typography.css');
@import url('./assets/css/layout.css');
@import url('./assets/css/components.css');
@import url('./assets/css/pages.css');

.hero-description-note {
    margin-top: 1rem;
    font-weight: 700;
}

.hero-details,
.hero-info-panel,
.hero-info-col,
.hero-hours {
    display: none;
}

.landing-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 40px 0 80px;
}

.landing-card {
    display: block;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 16px;
    transition: transform 240ms ease, border-color 240ms ease;
}

.landing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,212,212,0.2);
}

.landing-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.page-content,
.post-preview {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
}

.page-content h1,
.post-preview h2 {
    margin-top: 0;
    color: var(--text);
}

.entry-summary,
.entry-content {
    line-height: 1.8;
    color: var(--muted);
}

.site-footer {
    padding: 28px 0;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 720px) {
    .primary-menu {
        justify-content: center;
    }

    .site-branding {
        text-align: center;
    }
}
