/*
Theme Name: Alba Starter
Theme URI: https://example.com/alba-starter
Author: You
Author URI: https://example.com
Description: A minimal classic WordPress theme scaffold to convert your existing index.html into a theme, with customizable header & footer via the Customizer.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: alba-starter
*/
:root {
  --brand-color: #0ea5e9;
}
* { box-sizing: border-box; }
body { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji","Segoe UI Emoji"; line-height:1.6; color:#111; }
a { color: var(--brand-color); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header { border-bottom: 1px solid #eee; }
.site-header .container { max-width: 1100px; margin: 0 auto; padding: 16px; display:flex; align-items:center; gap:16px; }
.site-title { font-size: 1.25rem; font-weight: 700; margin: 0; }
.site-tagline { color:#555; font-size: .95rem; margin: 0; }
.nav { margin-left:auto; display:flex; gap:16px; flex-wrap:wrap; }
.nav a { padding:8px 10px; border-radius:10px; }
.nav a:hover { background:#f5f5f5; }

.header-note { background: #f0f9ff; border: 1px solid #e0f2fe; color:#0c4a6e; padding:8px 12px; border-radius: 10px; margin-left: auto; }

.container-main { max-width: 1100px; margin: 0 auto; padding: 24px 16px; }
footer.site-footer { border-top:1px solid #eee; }
footer.site-footer .container { max-width: 1100px; margin: 0 auto; padding: 24px 16px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-menu { display:flex; gap:12px; flex-wrap:wrap; }
.footer-text { color:#555; }