@import "tailwindcss";

@theme {
  --color-pink-gold-light: #fdf2f0;
  --color-pink-gold: #e6b8af;
  --color-pink-gold-dark: #a67c74;
  --color-gold-accent: #d4af37;
  
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

:root {
  --bg-primary: #fffcfb;
  --text-main: #333;
  --accent: #e6b8af;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
}

.glass-nav {
  background: rgba(255, 252, 251, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 184, 175, 0.3);
}

.btn-pink-gold {
  background: linear-gradient(135deg, #fdf2f0 0%, #e6b8af 100%);
  color: #5a403a;
  transition: all 0.3s ease;
}

.btn-pink-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 184, 175, 0.4);
}

.movie-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(166, 124, 116, 0.2);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-pink-gold);
}

/* Floating Button */
.float-download {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 50;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #e6b8af;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a67c74;
}
