/*
Theme Name: GoBistroLink
Theme URI: https://gobistrolink.com
Author: Omkar Bamane
Author URI: https://gobistrolink.com
Description: A custom, professional SaaS theme built specifically for the GoBistroLink platform.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: gobistrolink
*/

/* --- Brand Variables --- */
:root {
    --brand-primary: #0f172a; /* Deep slate for primary text/headings */
    --brand-accent: #2563eb; /* Trustworthy SaaS Blue for buttons/links */
    --bg-main: #f8fafc; /* Soft off-white background */
    --surface-card: #ffffff;
    --text-body: #475569;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- Base Styles --- */
body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

/* --- Layout Classes --- */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: var(--surface-card);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.card {
    background: var(--surface-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}