/*
Theme Name: SpiffBot AI
Theme URI: https://spiffbot.ai
Description: Spiffbot theme based off of Twenty Twenty-Five
Author: SpiffBot AI
Author URI: https://spiffbot.ai
Template: twentytwentyfive
Version: 1.0.0
*/

/* Inherit parent theme styles */
@import url("../twentytwentyfive/style.css");

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Elements */
html {
    width: 100%;
    background-image: url('images/bg-texture.png');
    background-attachment: fixed;
    background-position: center center;
    background-color: #f9f9f9;
    z-index: -2;
    position: relative;
    font-family: Arial, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: unset;
}
.home p {
    color: #042554; 
    line-height: 1.8; 
}
p {
    margin-bottom: 1.5em;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
}
strong {
    font-weight: bold;
}
hr,
hr.wp-block-separator {
    border-color: #f7d748;
    margin: 2em 0; 
}
/* Navigation */
.wp-block-navigation__responsive-container-content {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.wp-block-navigation__container {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.wp-block-navigation-item {
    text-align: center;
}

footer nav.wp-block-navigation .wp-block-navigation-item__content,
footer nav.wp-block-navigation .wp-block-navigation-item__content:link,
footer nav.wp-block-navigation .wp-block-navigation-item__content:hover,
footer .wp-block-navigation-item__content:visited {
    color: #042554 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

body.password-protected footer nav .wp-block-navigation-item.requires-password,
body.page footer nav .wp-block-navigation-item.requires-password {
    display: none;
}

body.password-entered footer nav .wp-block-navigation-item.requires-password {
    display: block;
}

/* Typography */
.coming-soon,
h2.wp-block-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 40px 0;
    letter-spacing: -0.5px;
}

h3.wp-block-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #042554;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Layout */
.page-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.content-container {
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

header img {
    margin-bottom: 40px;
}

/* Background Elements */
.background-layer-2 {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('images/spiffbot-character.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: .2;
}

/* Components */
.yellow-note,
.contact-info,
.disclaimer-title {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f7d748;
    border-bottom: 4px solid #042554;
}

.contact-info a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}


.entry-content > *:not(.yellow-note) {
    padding-left: 20px;
    padding-right: 20px;
}

blockquote.spiffbot-message {
    width: 90%;
    max-width: 300px;
    margin: 18px 25px 2px;
}
blockquote.spiffbot-message p {
    color: #fff; 
}
.entry-content li {
    font-size: 16px; 
    margin: 0 2em;
}
/* Privacy Policy */
.privacy-policy {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f7d748;
}

.privacy-policy h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #042554;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-policy p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #042554;
}

/* Footer */
.footer-content {
    max-width: 980px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    padding: 30px;
    border-top: 1px solid #f7d748;
}

.footer-content li {
    text-align: center;
}

.footer-content li a,
.footer-content li a:link,
.footer-content li a:hover,
.footer-content li a:visited {
    color: #042554 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
footer nav.wp-block-navigation li.current-menu-item {
    display: none;
}


/* Media Queries */
@media screen and (max-width: 1000px) {
    .background-layer-2 {
        opacity: 0;
    }
    
    img {
        max-width: 90vw;
        height: auto;
    }
}