/*
Theme Name: Astra Child - HBike
Theme URI: https://hbike.cl
Description: Child theme for Astra, customized for HBike (Helfmann Bike Store)
Author: Pedrito (ChatGPT)
Version: 1.0
Template: astra
Text Domain: astra-child-hbike
*/

/* Default (light) styles */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #222222;
    background-color: #ffffff;
}

/* Accent color (derived from logo) */
:root {
    --hbike-accent: #00A0D6;
    --hbike-dark: #1f2933;
}

/* Buttons */
a.button, button, .btn {
    background: var(--hbike-accent);
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        color: #e6eef5;
        background-color: #0b0f12;
    }
    header, .site-footer, .site-header {
        background: #071017;
    }
    a.button, button, .btn {
        background: var(--hbike-accent);
        color: #02202b;
    }
}

/* Simple responsive tweaks */
@media (max-width: 768px) {
    .site-header .logo {
        max-height: 48px;
    }
}
