@import "tailwindcss";

@theme {
  --color-brand-blue: #e0f2fe;
  --color-brand-gold: #fbbf24;
  --color-brand-gold-dark: #d97706;
  --color-brand-blue-dark: #0369a1;
}

:root {
  --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #fffbeb 100%);
  --text-main: #1e293b;
  --accent-gold: #fbbf24;
  --accent-blue: #0ea5e9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-dark);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Light Blue Gold Theme Utilities */
.bg-blue-gold {
  background: linear-gradient(to right, #bae6fd, #fef3c7);
}

.text-gold-gradient {
  background: linear-gradient(to right, #d97706, #0369a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Movie Card Hover */
.movie-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.movie-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Floating Button */
.float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  transition: transform 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.1);
}

/* Navigation */
nav a {
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
