/*
 Theme Name:   StellarDNS Child Theme (Blocksy)
 Theme URI:    https://stellardns.io
 Description:  Child theme for Blocksy with timezone fix and Stellar branding
 Author:       Stellar DNS
 Author URI:   https://stellardns.io
 Template:     blocksy
 Version:      1.0.0
 License:      MIT
 Text Domain:  stellardns-child
*/

/*
 * This child theme extends the Blocksy theme
 * It fixes the timezone warning and adds Stellar branding
 */

/* Your custom styles go here */

/* StellarDNS Branding Colors */
:root {
    --stellar-cyan: #00FFFF;
    --stellar-purple: #7B2CBF;
    --stellar-dark: #0A0E27;
    --stellar-accent: #00D4FF;
}

/* Optional: Add any custom CSS for your site */
.stellar-branding {
    color: var(--stellar-cyan);
}

.btn-stellar {
    background: linear-gradient(135deg, var(--stellar-cyan) 0%, var(--stellar-purple) 100%);
    border: none;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-stellar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}
