/*!
Theme Name:   Glynn Quelch 2025
Theme URI:    https://glynnquelch.co.uk
Author:       Glynn Quelch
Author URI:   https://glynnquelch.co.uk
Description:  A personalized WordPress theme for Glynn Quelch's 2025 website. Built on the Yuki theme framework with custom styling and functionality.
Template:     yuki
Version:      1.0.0
Tested up to: 6.7
Requires PHP: 8.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  glynnquelch2025
Tags: personal, portfolio, blog, custom-colors, custom-header, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/


/* ===================================================================
   Software Post Type Styles
   =================================================================== */


/* Center the software links buttons */

.software-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}


/* Hide buttons without href or with empty href */

.software-links .wp-block-button__link:not([href]),
.software-links .wp-block-button__link[href=""],
.software-links .wp-block-button__link[href="#"] {
    display: none;
}


/* Hide the entire button wrapper if the link inside is hidden */

.software-links .wp-block-button:has(.wp-block-button__link:not([href])),
.software-links .wp-block-button:has(.wp-block-button__link[href=""]),
.software-links .wp-block-button:has(.wp-block-button__link[href="#"]) {
    display: none;
}


/* Optional: Add some spacing for software content sections */

.software-installation,
.software-usage {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}


/* Dark mode support for content sections */

@media (prefers-color-scheme: dark) {
    .software-installation,
    .software-usage {
        background: rgba(255, 255, 255, 0.05);
    }
}


/* Use Dashicons for software link buttons */

.software-link-github .wp-block-button__link::before,
.software-link-packagist .wp-block-button__link::before,
.software-link-wordpress .wp-block-button__link::before,
.software-link-docs .wp-block-button__link::before,
.software-link-download .wp-block-button__link::before {
    font-family: dashicons;
    font-size: 1.2em;
    margin-right: 0.3em;
    vertical-align: middle;
    line-height: 1;
}


/* Button with Icon Styles */

.button-icon {
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
    width: 1.2em;
    height: 1.2em;
}

.button-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* Hide hamburger menu button on desktop */

@media (min-width: 1024px) {
    .yuki-trigger.yuki-toggleable {
        display: none !important;
    }
}