/*
Theme Name: Shortify
Theme URI: https://leelyhost.com
Author: Mubaashar Toseef
Author URI: https://leelyhost.com
Description: Lightweight starter theme designed to work with the Shortify plugin and custom Shortify Canvas pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shortify-theme
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f7;
    color: #111827;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: #111827;
    color: #f9fafb;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title a {
    color: #f9fafb;
    font-weight: 600;
    font-size: 20px;
}

.site-main {
    flex: 1;
    padding: 32px 20px;
    max-width: 1120px;
    margin: 0 auto;
}

.site-footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 16px 24px;
    font-size: 14px;
}

/* basic nav */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.main-nav a {
    color: #e5e7eb;
    font-size: 14px;
}

.main-nav a:hover {
    color: #ffffff;
}

/* Content */
.entry-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.7;
}

/* Shortify Canvas pages (plugin body_class adds this) */
body.shortify-canvas .site-header,
body.shortify-canvas .site-footer {
    display: none; /* even if header/footer somehow render, plugin canvas won't use them */
}
