/*
 * Theme Name: CashBot Theme
 * Theme URI: https://cashbot.online
 * Author: Mirco
 * Author URI: https://cashbot.online
 * Description: Custom theme for CashBot.online – The AI Financial Co‑Pilot
 * Version: 1.0
 * License: GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: cashbot
 */

/* ===== Global ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #1E1E1E;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0 0 20px;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Sticky Header ===== */
.site-header {
    background-color: #1E1E1E;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Branding Block ===== */
.branding-block {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.site-title-tagline {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    line-height: 1.2;
}

.site-title-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #007BFF;
    white-space: nowrap;
}

.site-tagline-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    white-space: nowrap;
}

/* ===== Navigation ===== */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #39FF14;
}

/* ===== Hamburger Button ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .site-logo {
        display: flex;
        align-items: center;
    }

    .site-title-tagline {
        margin-left: 10px;
        margin-right: 0;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        order: 2;
    }

    .main-navigation {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        width: 100%;
        padding-top: 6px;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
    }
}

/* ===== Hide tagline on small screens ===== */
@media (max-width: 600px) {
    .site-tagline-text {
        display: none;
    }
}

/* ===== Hero Section ===== */
.cashbot-hero {
    background: linear-gradient(135deg, #1E1E1E 0%, #0a0a0a 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    padding: 0 20px;
}

.cashbot-hero .hero-content {
    max-width: 800px;
}

.hero-logo {
    height: 100px;
    margin-bottom: 20px;
}

.cashbot-hero h1 {
    font-size: 3rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.cashbot-hero p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #39FF14;
    color: #1E1E1E;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #32e012;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

/* ===== Coming Soon Section ===== */
.coming-soon {
    padding: 60px 20px;
    text-align: center;
    background-color: #FFFFFF;
    color: #1E1E1E;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.form-placeholder {
    margin-top: 20px;
    padding: 20px;
    border: 2px dashed #007BFF;
    display: inline-block;
    color: #007BFF;
    font-style: italic;
}

/* ===== Responsive Hero tweaks ===== */
@media (max-width: 768px) {
    .cashbot-hero h1 {
        font-size: 2rem;
    }
    .cashbot-hero p {
        font-size: 1rem;
    }
}

.ai-tools-page {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.ai-tools-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1E1E1E;
}

.ai-tools-page p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tool-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tool-card h2 {
    color: #007BFF;
    margin-bottom: 10px;
}

.tool-card p {
    color: #555;
    margin-bottom: 20px;
}

.tool-btn {
    display: inline-block;
    background-color: #39FF14;
    color: #1E1E1E;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tool-btn:hover {
    background-color: #32e012;
}
