/*
Theme Name: GeneratePress Child DT
Theme URI: https://digitalturtle.com
Author: Digital Turtle
Author URI: https://digitalturtle.com
Description: Digital Turtle child theme for GeneratePress. Holds DT-specific CSS and template overrides.
Template: generatepress
Version: 1.0.1
Text Domain: gp-child-dt
*/

/* DT brand tokens (inherited from prior FSE config; parent palette overrides in functions.php) */
:root {
    --dt-accent: #88d000;
    --dt-accent-secondary: #46aa00;
    --dt-fg: #1F2023;
    --dt-bg: #FFFFFF;
    --dt-bg-dark: #14171C;
    --dt-bg-alt: #F6F3EE;
    --dt-fg-alt: #FFFFFA;
}

/* Keep site chrome clean on the homepage hero section */
.home .page-hero-dark {
    background-color: var(--dt-bg-dark);
    color: var(--dt-fg-alt);
    padding: 64px 24px;
    text-align: center;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home .page-hero-dark p { color: var(--dt-fg-alt); max-width: 640px; }
.home .page-hero-dark .red-attr { font-style: italic; opacity: .85; }
.home .page-hero-dark .dt-logo img { width: 188px; height: auto; margin-top: 24px; }

/* Site header: stack branding and nav vertically, center horizontally */
.site-header .inside-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.site-branding-container {
    justify-content: center;
}
.site-logo {
    text-align: center;
    margin: 0 auto;
}
.site-logo img.header-image,
.site-branding .site-logo img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    display: inline-block;
}

/* Homepage-only stealth access link to /seodave/ */
.dt-stealth-seodave {
    position: fixed;
    bottom: 8px;
    right: 8px;
    color: #ffffff;
    background: transparent;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    padding: 6px 8px;
    z-index: 9999;
}
.dt-stealth-seodave:hover,
.dt-stealth-seodave:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}
