/* godfatherofai.com - Dark Cinematic Premium Styles */
/* Tailwind via CDN + custom cinematic enhancements */

:root {
  --bg-deep: #050507;
  --bg-card: #0a0c14;
  --bg-elevated: #11131f;
  --navy: #0b0f1e;
  --accent-indigo: #6366f1;
  --accent-violet: #a855f7;
  --accent-cyan: #67e8f9;
  --text-primary: #f1f1f4;
  --text-muted: #a1a1aa;
  --border-subtle: #1f2937;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Cinematic typography */
h1, h2, .display-font {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.025em;
}

/* Subtle film grain overlay */
.grain {
  position: relative;
}

.grain::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Premium card styles */
.premium-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.premium-card:hover {
  border-color: var(--accent-violet);
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Accent glows */
.accent-glow {
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.accent-glow:hover {
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.3), 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

/* 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 */
.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(--accent-indigo), var(--accent-violet));
  transition: width 0.3s ease;
}

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

/* Play button cinematic */
.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);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Music release cards */
.release-card img {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.release-card:hover img {
  transform: scale(1.08);
}

/* Scroll snap for nice sections */
.scroll-section {
  scroll-margin-top: 80px;
}

/* Cookie banner */
.cookie-banner {
  animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile nav drawer */
.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Subtle neon text accents */
.neon-text {
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Timeline */
.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: -2rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-violet), transparent);
}

.timeline-item:last-child::before {
  display: none;
}

/* Responsive video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Elegant dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
}

/* Loading shimmer for future dynamic content */
.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% { background-position: -200% 0; }
}
