/* =======================================================
   Jabby – CSS – Basic layout
   ======================================================= */

:root {
    --primary: #1e90ff;     /* DodgerBlue – modern & friendly */
    --secondary: #f5f5f5;   /* Light grey background */
    --accent: #ff7f50;      /* Coral – for CTA buttons */
    --text-dark: #333;
    --text-light: #fff;
    --font-base: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: var(--font-base);
    background: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
}

header, main, footer {
    width: 90%;
    max-width: 960px;
    margin: auto;
    padding: 1.5rem 0;
}

header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.brand {
    color: var(--primary);
    font-weight: 600;
}

.feature, .placeholder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h1, h2 {
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

footer {
    margin-top: auto;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}
