/*
Theme Name: Olodo Digital
Theme URI: https://olodonation.com/
Author: Olodo Digital
Description: Brutalist single-page agency theme with AI strategist chat.
Version: 1.0.0
Text Domain: olodo-digital
*/

:root {
    --app-bg: #000000;
    --stage-bg: #080808; 
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #ff3e00;
    --accent-bg: #111111;
    --input-bg: rgba(10, 10, 10, 0.95);
    --border-color: #ffffff;
    --border-width: 2px;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-heading: 'Syne', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background-color: var(--app-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.immersive-app {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.creator-credit {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 14px;
    border: var(--border-width) solid #fff;
    background: #000;
    transition: all 0.1s;
    display: inline-block;
}

.creator-credit:hover {
    background: #fff;
    color: #000;
}

.stage-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-state {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 100px 40px;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    margin: 0;
    line-height: 0.85;
    text-transform: uppercase;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    color: #fff;
    margin: 40px 0;
    font-weight: 600;
    max-width: 800px;
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
    text-transform: uppercase;
}

.brutalist-button {
    background: var(--accent-color);
    color: #fff;
    padding: 20px 50px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s;
    font-size: 1.2rem;
    display: inline-block;
}

.brutalist-button:hover {
    transform: translate(6px, -6px);
    box-shadow: -10px 10px 0 #fff;
}

.artifact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    border-top: var(--border-width) solid #fff;
}

.artifact-card {
    background: #000;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease;
    min-height: 400px;
}

.artifact-card:hover {
    border-color: #fff;
    background: var(--stage-bg);
}

.artifact-header {
    padding: 12px 20px;
    background: #000;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.artifact-style-tag {
    color: var(--accent-color);
}

.artifact-card-inner {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artifact-card-inner h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px 0;
}

.artifact-card-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.floating-input-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    transition: transform 0.3s ease;
}

.input-wrapper {
    width: 100%;
    background: #000;
    border-top: var(--border-width) solid #fff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
}

.input-wrapper input::placeholder {
    color: #222;
}

.send-button {
    width: 80px;
    height: 80px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
}

.send-button:hover {
    background: var(--accent-color);
    color: #fff;
}

.send-button:disabled {
    background: #111;
    color: #333;
    cursor: not-allowed;
}

.chat-overlay {
    position: fixed;
    bottom: 124px;
    right: 40px;
    width: 400px;
    max-height: 50vh;
    background: #000;
    border: var(--border-width) solid #fff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 20px;
    gap: 16px;
}

.chat-bubble {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #333;
    max-width: 90%;
}

.chat-bubble.user {
    align-self: flex-end;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.chat-bubble.ai {
    align-self: flex-start;
    background: #fff;
    color: #000;
    border-color: #fff;
}

@media (max-width: 1024px) {
    .artifact-grid {
        grid-template-columns: 1fr;
    }

    .artifact-card {
        min-height: 300px;
    }

    .hero-state {
        padding: 60px 20px;
    }

    .chat-overlay {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 100px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 768px) {
    .brutalist-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

