/*
Theme Name: DerrionAI
Theme URI: https://derrionai.com
Author: DerrionAI Team
Author URI: https://derrionai.com
Description: Complete AI-powered social network. Native Gutenberg blocks for chat, photo, and video generation. BuddyPress/bbPress integration. GPL-licensed - download once, own forever.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: derrionai
Tags: ai, chat, image-generation, video-generation, gutenberg, blocks, social, buddypress, bbpress, full-site-editing, dark-mode, glassmorphism, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  line-height: 1.6;
}

.site-header {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation a {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.main-navigation a:hover {
  color: #06b6d4;
}

.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* DerrionAI Block Styles */
.derrionai-chat-container,
.derrionai-photo-container,
.derrionai-video-container {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
}

.derrionai-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  color: #f1f5f9;
  font-size: 1rem;
}

.derrionai-button {
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.derrionai-button:hover {
  opacity: 0.9;
}

.site-footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 2rem;
  text-align: center;
  color: #94a3b8;
  margin-top: 4rem;
}