/* Bolton LLC Custom Styles */

/* Hero subtitle styling */
.hero-subtitle {
    color: var(--color-text-inverse-mute);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Theme toggle button */
.theme-toggle {
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-main);
    padding: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--color-text-highlight);
}

/* Show moon in light mode, sun in dark mode */
.icon-sun {
    display: none;
}

.icon-moon {
    display: block;
}

.dark-mode .icon-sun {
    display: block;
}

.dark-mode .icon-moon {
    display: none;
}

/* Smooth transitions between modes */
html {
    transition: background-color 0.3s ease;
}

body,
.site-header,
.post-inside,
.post-featured {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Keep toggle icon swap instant */
.theme-toggle svg {
    transition: none;
}
