/*
Theme Name: TheSiliconBulletin
Theme URI: https://outsourceai.io
Author: OutsourceAI
Author URI: https://outsourceai.io
Description: Custom theme for AchieveAI
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aideveloper
*/

/*** Custom Styling Here ***/

/* === LOGIN PAGE STYLING === */
/* Matching the design system from optin.php and affiliatehub.css */

:root {
    --primary-bg: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(77, 124, 254, 0.2);
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --accent-blue: #2563eb;
    --button-gradient: linear-gradient(to right, #2563eb, #1d4ed8);
    --input-bg: rgba(249, 250, 251, 0.5);
}

/* Font Definitions */
@font-face {
    font-family: 'Minisystem';
    src: url('./minisystem.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Page Background */
body {
    background: var(--primary-bg) !important;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

/* Page Container */
.max-w-4xl {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 10;
}

/* Page Content Container styles moved to templates */

/* Page Title */
.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Minisystem', 'Inter', system-ui, -apple-system, sans-serif;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

/* Prose styling styles moved to templates */

/* Responsive design styles moved to templates */

/* Post Content Typography styles moved to single.php template */

figure.achv-quote-wrapper p {
    margin-bottom: 0px !important;
}

/* Post Content Images styles moved to single.php template */

/* Header adjustments styles moved to templates */

/* === DARK THEME STYLES === */
/* Dark Theme Base Overrides */
.dark-theme-body {
    background: #0f141b !important;
    color: #f3f4f6 !important;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='2' fill='%2360a5fa'/%3E%3C/svg%3E") 12 12, auto;
}

.dark-theme-body a:hover,
.dark-theme-body button:hover {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L14 8L20 10L14 12L12 18L10 12L4 10L10 8L12 2Z' fill='%2300ffa2'/%3E%3Ccircle cx='12' cy='10' r='3' fill='%2360a5fa'/%3E%3C/svg%3E") 12 10, pointer;
}

.dark-theme-main {
    background: #0f141b !important;
}

.dark-theme-nav {
    background: rgba(15, 20, 27, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-theme-nav a {
    color: #f3f4f6 !important;
}

.dark-theme-nav a:hover {
    color: #60a5fa !important;
}

/* === TITLE HIGHLIGHT STYLES === */
/* Used for {word} syntax in post titles */
.title-highlight {
    font-weight: 800;
    display: inline;
    background: linear-gradient(90deg, rgb(255, 228, 120) 60%, rgb(255, 251, 232) 100%);
    padding: 0;
    border-radius: 0.13em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.02;
    background-size: 100% 70%;
    background-position: 0 50%;
    background-repeat: no-repeat;
}

/* === UTILITY CLASSES === */
/* Hide on mobile, show on desktop */
img.hide-mobile,
figure.hide-mobile,
.hide-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

@media (min-width: 768px) {
    img.hide-mobile,
    figure.hide-mobile,
    .hide-mobile {
        display: revert !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
    }
}

/* Hide on desktop, show on mobile */
.hide-desktop,
.hide-desktop img,
figure.hide-desktop,
div.hide-desktop {
    display: revert !important;
}

@media (min-width: 768px) {
    .hide-desktop,
    .hide-desktop img,
    figure.hide-desktop,
    div.hide-desktop {
        display: none !important;
    }
}
