/*
Theme Name: Godfather of AI
Author: Godfather of AI
Description: Dark cinematic WordPress theme for godfatherofai.com — Music, AI visuals, and creations.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: godfather-of-ai
*/

/* =========================================================
   GODFATHER OF AI — CINEMATIC DARK THEME
   Matching the premium static design (deep navy/black + violet/indigo accents)
   ========================================================= */

/* Core cinematic palette */
:root {
  --gfa-bg: #050507;
  --gfa-card: #0a0c14;
  --gfa-elevated: #11131f;
  --gfa-accent: #a855f7;
  --gfa-indigo: #6366f1;
  --gfa-text: #f1f1f4;
  --gfa-muted: #a1a1aa;
  --gfa-border: #1f2937;
}

body {
  background-color: var(--gfa-bg);
  color: var(--gfa-text);
}

/* Premium card style used across the site */
.premium-card {
  background-color: var(--gfa-card);
  border: 1px solid var(--gfa-border);
  transition: all 0.4s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.premium-card:hover {
  border-color: var(--gfa-accent);
  transform: translateY(-4px);
}

/* Accent utility classes (new cinematic palette) */
.bg-brand,
.bg-accent {
  background-color: var(--gfa-accent);
}

.text-brand,
.text-accent {
  color: var(--gfa-accent);
}

.border-brand,
.border-accent {
  border-color: var(--gfa-accent);
}

/* Film grain + subtle cinematic touches */
.grain {
  position: relative;
}

.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Play button style */
.play-btn {
  transition: all 0.3s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 12px rgba(168, 85, 247, 0.1);
}

/* Video modal */
.video-modal {
  animation: modalEnter 0.2s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Navigation links */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gfa-indigo), var(--gfa-accent));
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Legacy orange classes kept for backward compatibility during transition */
.bg-brand-old { background-color: #ff6a00; }
.text-brand-old { color: #ff6a00; }
