/*
Theme Name: Blocksy Child
Description: Child theme for Blocksy with Twenty Thirteen design elements preserved
Template: blocksy
Version: 1.0
Text Domain: blocksy-child
*/

/* Import parent theme styles */
@import url("../blocksy/style.css");

/* Preserve Twenty Thirteen design elements and color scheme */
:root {
    --theme-primary-color: #ea9629;
    --theme-secondary-color: #bc360a;
    --theme-accent-color: #fbdaa2;
    --theme-text-color: #141412;
    --theme-border-color: #e5e5e5;
    --theme-bg-color: #ffffff;
}

/* Twenty Thirteen inspired typography and layout */
body {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    color: var(--theme-text-color);
    background-color: var(--theme-bg-color);
}

/* Header customizations */
.entry-header .entry-title {
    color: var(--theme-primary-color);
}

/* Link colors matching Twenty Thirteen */
a {
    color: var(--theme-primary-color);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--theme-secondary-color);
    text-decoration: underline;
}

/* Button styles */
.wp-block-button .wp-block-button__link,
button,
input[type="submit"],
input[type="button"] {
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

.wp-block-button .wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
}

/* Twenty Thirteen inspired sidebar and widget styling */
.widget {
    background-color: #f7f5e7;
    border: 1px solid var(--theme-border-color);
    border-radius: 3px;
    padding: 24px 24px 12px;
    margin-bottom: 24px;
}

.widget-title {
    color: var(--theme-text-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 24px;
    text-transform: uppercase;
}

/* Navigation styling */
.ct-header .ct-logo img {
    max-height: 60px;
}

/* Footer styling */
.ct-footer {
    background-color: #f7f5e7;
    border-top: 1px solid var(--theme-border-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-top-header-bar {
        font-size: 0.9rem;
    }
}
